schema_generator 0.1.1

schema_generator is a Rust crate initially created for parsing XML files containing forestry data and generating corresponding Rust structs. It parses XML documents and automatically generates Rust data structures that map XML elements to fields, including attributes, child elements, and text content. It integrates with the serde library for serialization and deserialization. While it was originally designed for forestry-related XML data, it can be used with any XML data structure, making it a versatile tool for developers working with XML. Additionally, schema_generator supports JSON to XML conversion.
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
<?xml version="1.0" encoding="UTF-8"?>
<!--Generated by ForestKit Application 17 Dec 24 05:48 UTC-->
<ForestPropertyData xmlns="http://standardit.tapio.fi/schemas/forestData" xmlns:re="http://standardit.tapio.fi/schemas/forestData/realEstate" xmlns:ci="http://standardit.tapio.fi/schemas/forestData/contactInformation" xmlns:st="http://standardit.tapio.fi/schemas/forestData/Stand" xmlns:ts="http://standardit.tapio.fi/schemas/forestData/treeStand" xmlns:sd="http://standardit.tapio.fi/schemas/forestData/stemDistribution" xmlns:sds="http://standardit.tapio.fi/schemas/forestData/stemDistributionStratum" xmlns:tst="http://standardit.tapio.fi/schemas/forestData/treeStratum" xmlns:dts="http://standardit.tapio.fi/schemas/forestData/deadTreeStrata" xmlns:tss="http://standardit.tapio.fi/schemas/forestData/treeStandSummary" xmlns:op="http://standardit.tapio.fi/schemas/forestData/operation" xmlns:sf="http://standardit.tapio.fi/schemas/forestData/specialFeature" xmlns:sfb="http://standardit.tapio.fi/schemas/forestData/specialFeatureBase" xmlns:gdt="http://standardit.tapio.fi/schemas/forestData/common/geometricDataTypes" xmlns:cdd="http://standardit.tapio.fi/schemas/forestData/commondistributiondata" xmlns:co="http://standardit.tapio.fi/schemas/forestData/common" xmlns:gml="http://www.opengis.net/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xlink="http://www.w3.org/1999/xlink">
  <re:RealEstates>
    <re:RealEstate id="25476">
      <re:MunicipalityNumber>698</re:MunicipalityNumber>
      <re:AreaNumber>893</re:AreaNumber>
      <re:GroupNumber>15</re:GroupNumber>
      <re:UnitNumber>2</re:UnitNumber>
      <re:RealEstateName>698-893-15-2</re:RealEstateName>
      <re:Parcels>
        <re:Parcel id="0">
          <re:ParcelNumber>0</re:ParcelNumber>
          <st:Stands>
            <st:Stand id="1801038" realEstateId="25476" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>20</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>2</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>60</st:SoilType>
                <st:DrainageState>7</st:DrainageState>
                <st:DevelopmentClass>02</st:DevelopmentClass>
                <st:StandQuality>10</st:StandQuality>
                <st:MainTreeSpecies>2</st:MainTreeSpecies>
                <st:StandBasicDataDate>2024-10-30</st:StandBasicDataDate>
                <st:Area>1.8478</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">427573.83939953 7368567.12239625 427573.83940996 7368567.12239262 427617.05337115 7368552.08410334 427662.08990988 7368536.41244585 427700.45406855 7368529.77810214 427744.16463043 7368522.21988028 427747.28399031 7368521.68052312 427748.25227952 7368521.51310051 427760.27455797 7368519.73353914 427811.53012194 7368512.14719473 427837.32464387 7368508.3297142 427891.06441621 7368511.12855907 427943.42905957 7368513.85678785 427943.57261036 7368513.86426829 427947.84628332 7368533.81029094 427959.93927256 7368588.4381098 427958.9439487 7368588.49250342 427895.18591588 7368596.36342141 427895.26509304 7368595.06805129 427898.81409133 7368537.0068225 427858.26668242 7368535.02602904 427809.64706908 7368562.71393166 427762.20025074 7368596.39352069 427763.09254148 7368602.85395276 427763.09254148 7368602.85395277 427772.72061561 7368668.75197209 427772.68233911 7368668.7478039 427763.2294599 7368667.71842993 427750.83872409 7368665.98825783 427750.85705938 7368666.08392621 427750.80220572 7368666.07983839 427741.60522177 7368617.13646096 427702.16737734 7368562.08787642 427583.44309094 7368568.92050092 427574.49958362 7368567.24600176 427574.49957403 7368567.24599996 427573.83939953 7368567.12239625</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-10-25">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358305087">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>45</tst:Age>
                      <tst:BasalArea>13</tst:BasalArea>
                      <tst:MeanDiameter>15.06</tst:MeanDiameter>
                      <tst:MeanHeight>13.17</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358305088">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>53</tst:Age>
                      <tst:BasalArea>4</tst:BasalArea>
                      <tst:MeanDiameter>11.46</tst:MeanDiameter>
                      <tst:MeanHeight>10.17</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358305089">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>25</tst:Age>
                      <tst:BasalArea>4</tst:BasalArea>
                      <tst:MeanDiameter>6.25</tst:MeanDiameter>
                      <tst:MeanHeight>9</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358672079">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>45</tst:Age>
                      <tst:BasalArea>13</tst:BasalArea>
                      <tst:StemCount>829</tst:StemCount>
                      <tst:MeanDiameter>15.1</tst:MeanDiameter>
                      <tst:MeanHeight>13.2</tst:MeanHeight>
                      <tst:Volume>86</tst:Volume>
                      <tst:SawLogPercent>1.6</tst:SawLogPercent>
                      <tst:SawLogVolume>1.3</tst:SawLogVolume>
                      <tst:PulpWoodVolume>81.1</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>5.6</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358672080">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>53</tst:Age>
                      <tst:BasalArea>4</tst:BasalArea>
                      <tst:StemCount>502</tst:StemCount>
                      <tst:MeanDiameter>11.5</tst:MeanDiameter>
                      <tst:MeanHeight>10.2</tst:MeanHeight>
                      <tst:Volume>21.4</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>19.1</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.2</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358672081">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>25</tst:Age>
                      <tst:BasalArea>4</tst:BasalArea>
                      <tst:StemCount>1872</tst:StemCount>
                      <tst:MeanDiameter>6.2</tst:MeanDiameter>
                      <tst:MeanHeight>9</tst:MeanHeight>
                      <tst:Volume>18.1</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>3.9</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.4</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>43</tss:MeanAge>
                    <tss:BasalArea>21</tss:BasalArea>
                    <tss:StemCount>3203</tss:StemCount>
                    <tss:MeanDiameter>12.7</tss:MeanDiameter>
                    <tss:MeanHeight>11.8</tss:MeanHeight>
                    <tss:Volume>125.5</tss:Volume>
                    <tss:SawLogVolume>1.3</tss:SawLogVolume>
                    <tss:PulpWoodVolume>104.1</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>8.1</tss:VolumeGrowth>
                    <tss:Value>2135.2</tss:Value>
                    <tss:ValueGrowthPercent>6.4</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>02</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>2</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33772125" mainType="1">
                  <op:OperationType>3</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2025</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>15</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>8.6</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>3.6</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>2.6</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>0.2</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1801037" realEstateId="25476" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>19</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>3</st:SubGroup>
                <st:FertilityClass>4</st:FertilityClass>
                <st:SoilType>60</st:SoilType>
                <st:DrainageState>9</st:DrainageState>
                <st:DevelopmentClass>02</st:DevelopmentClass>
                <st:StandQuality>11</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:Accessibility>4</st:Accessibility>
                <st:StandBasicDataDate>2024-10-30</st:StandBasicDataDate>
                <st:Area>5.6817</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">427696.70097806 7368836.64784467 427696.717994 7368836.62557034 427696.87435431 7368836.63209336 427732.37651611 7368789.94862989 427720.10209987 7368732.67440228 427758.30564777 7368704.94903883 427750.85705938 7368666.08392621 427750.83872409 7368665.98825783 427763.2294599 7368667.71842993 427772.68233911 7368668.7478039 427780.42637128 7368670.72253284 427791.95611982 7368673.16924906 427812.82366014 7368677.57957937 427814.44971622 7368647.94889931 427832.17253491 7368626.05503443 427895.10239179 7368596.52699542 427895.11955758 7368596.37306942 427895.18591588 7368596.36342141 427959.48646941 7368588.46285507 427959.93927256 7368588.4381098 427960.02621024 7368588.43335874 427962.15674694 7368597.9296376 427973.60226646 7368648.5402855 428004.05863733 7368645.04921938 428056.7503574 7368639.14441914 428061.54610732 7368643.48312085 428061.54610733 7368643.48312087 428129.27293168 7368708.36177567 428145.55280305 7368748.60781724 428154.24970517 7368770.1888012 428154.94860703 7368771.8360514 428156.58005388 7368776.11291423 428156.68071884 7368776.1182078 428156.70797072 7368776.18558046 428017.91559592 7368762.331675 427958.41544626 7368740.9887811 427872.92976445 7368804.54739242 427770.51136293 7368793.86143292 427755.46075188 7368835.1049036 427754.64042047 7368837.35291308 427754.6248069 7368837.39570004 427754.14713783 7368838.70469075 427696.70097806 7368836.64784467</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-10-30">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358305091">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>25</tst:Age>
                      <tst:BasalArea>16.4</tst:BasalArea>
                      <tst:MeanDiameter>9</tst:MeanDiameter>
                      <tst:MeanHeight>10</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358305092">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>15</tst:Age>
                      <tst:BasalArea>0.8</tst:BasalArea>
                      <tst:MeanDiameter>8.38</tst:MeanDiameter>
                      <tst:MeanHeight>6.88</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358305093">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>10</tst:Age>
                      <tst:BasalArea>0.2</tst:BasalArea>
                      <tst:MeanDiameter>6</tst:MeanDiameter>
                      <tst:MeanHeight>8</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358672064">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>25</tst:Age>
                      <tst:BasalArea>16.4</tst:BasalArea>
                      <tst:StemCount>3303</tst:StemCount>
                      <tst:MeanDiameter>9</tst:MeanDiameter>
                      <tst:MeanHeight>10</tst:MeanHeight>
                      <tst:Volume>87.4</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>67.3</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>5.6</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358672065">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>15</tst:Age>
                      <tst:BasalArea>0.8</tst:BasalArea>
                      <tst:StemCount>218</tst:StemCount>
                      <tst:MeanDiameter>8.4</tst:MeanDiameter>
                      <tst:MeanHeight>6.9</tst:MeanHeight>
                      <tst:Volume>3.2</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>1.7</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.3</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358672066">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>10</tst:Age>
                      <tst:BasalArea>0.2</tst:BasalArea>
                      <tst:StemCount>117</tst:StemCount>
                      <tst:MeanDiameter>6</tst:MeanDiameter>
                      <tst:MeanHeight>8</tst:MeanHeight>
                      <tst:Volume>0.6</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>0</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.1</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>24</tss:MeanAge>
                    <tss:BasalArea>17.4</tss:BasalArea>
                    <tss:StemCount>3638</tss:StemCount>
                    <tss:MeanDiameter>8.9</tss:MeanDiameter>
                    <tss:MeanHeight>9.8</tss:MeanHeight>
                    <tss:Volume>91.2</tss:Volume>
                    <tss:SawLogVolume>0</tss:SawLogVolume>
                    <tss:PulpWoodVolume>69</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>6</tss:VolumeGrowth>
                    <tss:Value>1341.5</tss:Value>
                    <tss:ValueGrowthPercent>9.6</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>02</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>1</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33772126" mainType="1">
                  <op:OperationType>2</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2032</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>30.4</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>0.3</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>30.1</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1801031" realEstateId="25476" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>18</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>3</st:DrainageState>
                <st:DevelopmentClass>03</st:DevelopmentClass>
                <st:StandQuality>23</st:StandQuality>
                <st:MainTreeSpecies>2</st:MainTreeSpecies>
                <st:Accessibility>2</st:Accessibility>
                <st:StandBasicDataDate>2024-10-30</st:StandBasicDataDate>
                <st:Area>4.0106</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">427044.55392111 7368842.49358233 427329.28487364 7368670.58555727 427329.63920946 7368670.81867702 427333.84062295 7368673.76317299 427336.89264351 7368676.03811752 427323.39381194 7368707.22589044 427340.35136171 7368727.94750095 427337.6479048 7368743.03678713 427274.82180832 7368778.15755077 427270.61431633 7368780.50968622 427270.62452722 7368781.07098256 427270.62452722 7368781.07098256 427270.97573274 7368800.37679029 427271.22778618 7368814.23210246 427523.77233593 7368888.84357453 427615.57763387 7368871.03951804 427615.54686465 7368872.1105946 427615.54686465 7368872.1105946 427615.54686465 7368872.1105946 427612.32181463 7368920.13403881 427611.72879771 7368926.44921345 427421.76707016 7368922.09186324 427421.35498157 7368921.93882953 427421.35498157 7368921.93882953 427260.11954127 7368862.06823227 427260.11954071 7368862.06823206 427182.08009947 7368833.09459839 427132.2105567 7368867.28390494 427058.60162658 7368846.9008865 427044.61763107 7368842.45769566 427044.62059449 7368842.51450013 427044.55392111 7368842.49358233 427044.55392111 7368842.49358233</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-11-07">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358305075">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>79</tst:Age>
                      <tst:BasalArea>12.5</tst:BasalArea>
                      <tst:MeanDiameter>19.37</tst:MeanDiameter>
                      <tst:MeanHeight>14.73</tst:MeanHeight>
                      <tst:SawLogPercent>52</tst:SawLogPercent>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358305076">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>25</tst:Age>
                      <tst:BasalArea>6.13</tst:BasalArea>
                      <tst:MeanDiameter>10.92</tst:MeanDiameter>
                      <tst:MeanHeight>9.98</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358305077">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>76</tst:Age>
                      <tst:BasalArea>5.5</tst:BasalArea>
                      <tst:MeanDiameter>17.48</tst:MeanDiameter>
                      <tst:MeanHeight>14.52</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="359741946">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>79</tst:Age>
                      <tst:BasalArea>12.5</tst:BasalArea>
                      <tst:StemCount>462</tst:StemCount>
                      <tst:MeanDiameter>19.4</tst:MeanDiameter>
                      <tst:MeanHeight>14.7</tst:MeanHeight>
                      <tst:Volume>88.6</tst:Volume>
                      <tst:SawLogPercent>52</tst:SawLogPercent>
                      <tst:SawLogVolume>45.1</tst:SawLogVolume>
                      <tst:PulpWoodVolume>41.7</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>3.1</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="359741947">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>25</tst:Age>
                      <tst:BasalArea>6.1</tst:BasalArea>
                      <tst:StemCount>840</tst:StemCount>
                      <tst:MeanDiameter>10.9</tst:MeanDiameter>
                      <tst:MeanHeight>10</tst:MeanHeight>
                      <tst:Volume>29.2</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>24.9</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.1</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="359741948">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>76</tst:Age>
                      <tst:BasalArea>5.5</tst:BasalArea>
                      <tst:StemCount>263</tst:StemCount>
                      <tst:MeanDiameter>17.5</tst:MeanDiameter>
                      <tst:MeanHeight>14.5</tst:MeanHeight>
                      <tst:Volume>39.5</tst:Volume>
                      <tst:SawLogPercent>22</tst:SawLogPercent>
                      <tst:SawLogVolume>8.5</tst:SawLogVolume>
                      <tst:PulpWoodVolume>30</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.5</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>65</tss:MeanAge>
                    <tss:BasalArea>24.1</tss:BasalArea>
                    <tss:StemCount>1565</tss:StemCount>
                    <tss:MeanDiameter>16.8</tss:MeanDiameter>
                    <tss:MeanHeight>13.5</tss:MeanHeight>
                    <tss:Volume>157.4</tss:Volume>
                    <tss:SawLogVolume>53.6</tss:SawLogVolume>
                    <tss:PulpWoodVolume>96.5</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>5.7</tss:VolumeGrowth>
                    <tss:Value>3977.6</tss:Value>
                    <tss:ValueGrowthPercent>5.8</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>03</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>2</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33772132" mainType="1">
                  <op:OperationType>3</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2025</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>39.8</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>2.71</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>18.79</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>2.79</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>6.21</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>9.31</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1801030" realEstateId="25476" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>17</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>2</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>60</st:SoilType>
                <st:DrainageState>9</st:DrainageState>
                <st:DevelopmentClass>03</st:DevelopmentClass>
                <st:StandQuality>11</st:StandQuality>
                <st:MainTreeSpecies>2</st:MainTreeSpecies>
                <st:Accessibility>2</st:Accessibility>
                <st:StandBasicDataDate>2024-10-30</st:StandBasicDataDate>
                <st:Area>4.9737</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">426682.58 7369061.08 426900.742 7368929.34 427044.55392111 7368842.49358233 427044.60643778 7368842.51005867 427044.71102534 7368844.24792861 427047.52754102 7368898.23694244 427085.85827658 7368909.66320342 427121.14076124 7368920.44001544 427133.83925593 7368961.57438974 427133.88092664 7368961.5975056 427133.90761241 7368961.68420494 427198.99240394 7368997.71780806 427226.04226092 7369012.72431899 427200.69097797 7369031.32676053 427200.68303258 7369031.30659066 427200.68300914 7369031.30367385 427200.6816087 7369031.30297606 427200.62996549 7369031.17187654 427200.63120093 7369031.27785967 427139.12749815 7369000.63378201 427064.42069662 7368987.81655995 426939.50042523 7369043.66627912 426938.98018608 7369043.21638282 426914.0418029 7369021.65026344 426902.61343806 7369011.7674705 426958.55642826 7368982.34259418 426958.55642826 7368982.34259418 426958.72936746 7368982.25163437 426952.75595309 7368965.31926206 426951.91445451 7368962.93394787 426848.17321383 7369017.65206531 426807.40088105 7369053.17791944 426788.94614651 7369069.25844373 426800.65550456 7369102.61512966 426812.79190209 7369137.18915988 426816.37329877 7369147.56363347 426816.42855531 7369147.54938008 426816.43840689 7369147.5774457 426763.06704189 7369158.9000987 426702.92302684 7369175.02152707 426702.92302684 7369175.02152704 426682.58 7369061.08</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-10-27">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358305054">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>54</tst:Age>
                      <tst:BasalArea>10.25</tst:BasalArea>
                      <tst:MeanDiameter>17.41</tst:MeanDiameter>
                      <tst:MeanHeight>10.15</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358305055">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>23</tst:Age>
                      <tst:BasalArea>2.75</tst:BasalArea>
                      <tst:MeanDiameter>10.09</tst:MeanDiameter>
                      <tst:MeanHeight>8.59</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358305056">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>19</tst:Age>
                      <tst:BasalArea>3.5</tst:BasalArea>
                      <tst:MeanDiameter>9.36</tst:MeanDiameter>
                      <tst:MeanHeight>10.25</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358672034">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>54</tst:Age>
                      <tst:BasalArea>10.2</tst:BasalArea>
                      <tst:StemCount>480</tst:StemCount>
                      <tst:MeanDiameter>17.4</tst:MeanDiameter>
                      <tst:MeanHeight>10.2</tst:MeanHeight>
                      <tst:Volume>49.4</tst:Volume>
                      <tst:SawLogPercent>10.4</tst:SawLogPercent>
                      <tst:SawLogVolume>5</tst:SawLogVolume>
                      <tst:PulpWoodVolume>42.6</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>2.7</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358672035">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>23</tst:Age>
                      <tst:BasalArea>2.8</tst:BasalArea>
                      <tst:StemCount>468</tst:StemCount>
                      <tst:MeanDiameter>10.1</tst:MeanDiameter>
                      <tst:MeanHeight>8.6</tst:MeanHeight>
                      <tst:Volume>12.7</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>10</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.9</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358672036">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>19</tst:Age>
                      <tst:BasalArea>3.5</tst:BasalArea>
                      <tst:StemCount>696</tst:StemCount>
                      <tst:MeanDiameter>9.4</tst:MeanDiameter>
                      <tst:MeanHeight>10.2</tst:MeanHeight>
                      <tst:Volume>16.9</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>13.2</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.4</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>47</tss:MeanAge>
                    <tss:BasalArea>16.5</tss:BasalArea>
                    <tss:StemCount>1644</tss:StemCount>
                    <tss:MeanDiameter>14.5</tss:MeanDiameter>
                    <tss:MeanHeight>9.9</tss:MeanHeight>
                    <tss:Volume>79</tss:Volume>
                    <tss:SawLogVolume>5</tss:SawLogVolume>
                    <tss:PulpWoodVolume>65.7</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>4.9</tss:VolumeGrowth>
                    <tss:Value>1535.7</tss:Value>
                    <tss:ValueGrowthPercent>11.5</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>03</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>2</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33772134" mainType="1">
                  <op:OperationType>3</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2032</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>10</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>4.37</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>0.79</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>2.22</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>2.62</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
              </op:Operations>
              <st:SpecialFeatures>
                <st:SpecialFeature>
                  <sf:FeatureCode>11001</sf:FeatureCode>
                </st:SpecialFeature>
              </st:SpecialFeatures>
            </st:Stand>
            <st:Stand id="1801029" realEstateId="25476" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>16</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>3</st:DrainageState>
                <st:DevelopmentClass>03</st:DevelopmentClass>
                <st:StandQuality>10</st:StandQuality>
                <st:MainTreeSpecies>2</st:MainTreeSpecies>
                <st:Accessibility>2</st:Accessibility>
                <st:StandBasicDataDate>2024-10-30</st:StandBasicDataDate>
                <st:Area>2.4506</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">427962.23893772 7368598.29306899 427976.21874029 7368593.59692433 428048.492 7368569.32 428084.64300135 7368595.12768582 428231.799 7368700.19 428284.019 7368737.42 428286.20956694 7368738.98642932 428267.29826115 7368781.93734656 428156.68071884 7368776.1182078 428156.58005388 7368776.11291423 428154.94860703 7368771.8360514 428154.24970517 7368770.1888012 428145.55280305 7368748.60781724 428145.55280295 7368748.60781698 428129.27293168 7368708.36177567 428061.54610733 7368643.48312087 428061.54610732 7368643.48312085 428056.7503574 7368639.14441914 428004.05863733 7368645.04921938 428004.0586367 7368645.04921945 427973.60226646 7368648.5402855 427962.23893772 7368598.29306899</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-11-07">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358305094">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>86</tst:Age>
                      <tst:BasalArea>5.25</tst:BasalArea>
                      <tst:MeanDiameter>21.24</tst:MeanDiameter>
                      <tst:MeanHeight>17.76</tst:MeanHeight>
                      <tst:SawLogPercent>66</tst:SawLogPercent>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358305095">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>42</tst:Age>
                      <tst:BasalArea>4.75</tst:BasalArea>
                      <tst:MeanDiameter>17.24</tst:MeanDiameter>
                      <tst:MeanHeight>16.84</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358305096">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>106</tst:Age>
                      <tst:BasalArea>4.5</tst:BasalArea>
                      <tst:MeanDiameter>23</tst:MeanDiameter>
                      <tst:MeanHeight>17.89</tst:MeanHeight>
                      <tst:SawLogPercent>80</tst:SawLogPercent>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="359742089">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>86</tst:Age>
                      <tst:BasalArea>5.2</tst:BasalArea>
                      <tst:StemCount>168</tst:StemCount>
                      <tst:MeanDiameter>21.2</tst:MeanDiameter>
                      <tst:MeanHeight>17.8</tst:MeanHeight>
                      <tst:Volume>45.9</tst:Volume>
                      <tst:SawLogPercent>66</tst:SawLogPercent>
                      <tst:SawLogVolume>29.6</tst:SawLogVolume>
                      <tst:PulpWoodVolume>15.2</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.7</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="359742090">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>42</tst:Age>
                      <tst:BasalArea>4.8</tst:BasalArea>
                      <tst:StemCount>236</tst:StemCount>
                      <tst:MeanDiameter>17.2</tst:MeanDiameter>
                      <tst:MeanHeight>16.8</tst:MeanHeight>
                      <tst:Volume>37</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>36</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="359742091">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>106</tst:Age>
                      <tst:BasalArea>4.5</tst:BasalArea>
                      <tst:StemCount>124</tst:StemCount>
                      <tst:MeanDiameter>23</tst:MeanDiameter>
                      <tst:MeanHeight>17.9</tst:MeanHeight>
                      <tst:Volume>38.8</tst:Volume>
                      <tst:SawLogPercent>80</tst:SawLogPercent>
                      <tst:SawLogVolume>30.6</tst:SawLogVolume>
                      <tst:PulpWoodVolume>7.7</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.4</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>78</tss:MeanAge>
                    <tss:BasalArea>14.5</tss:BasalArea>
                    <tss:StemCount>527</tss:StemCount>
                    <tss:MeanDiameter>20.5</tss:MeanDiameter>
                    <tss:MeanHeight>17.5</tss:MeanHeight>
                    <tss:Volume>121.7</tss:Volume>
                    <tss:SawLogVolume>60.2</tss:SawLogVolume>
                    <tss:PulpWoodVolume>58.9</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>4.1</tss:VolumeGrowth>
                    <tss:Value>3549.4</tss:Value>
                    <tss:ValueGrowthPercent>3.7</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>03</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>2</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33772128" mainType="1">
                  <op:OperationType>14</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2032</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>54</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>17.39</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>1.78</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>19.55</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>6.91</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>8.32</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1800963" realEstateId="25476" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>15</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DevelopmentClass>03</st:DevelopmentClass>
                <st:StandQuality>23</st:StandQuality>
                <st:MainTreeSpecies>2</st:MainTreeSpecies>
                <st:Accessibility>1</st:Accessibility>
                <st:StandBasicDataDate>2024-10-30</st:StandBasicDataDate>
                <st:Area>2.2342</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">427956.769912 7368881.00058689 427970.85489951 7368837.12864833 428015.05840207 7368874.35895517 428085.32365637 7368878.06190365 428121.58995541 7368864.04000176 428203.94534536 7368837.2554952 428226.38579753 7368832.42176496 428241.6309372 7368829.08166735 428244.99263707 7368828.35255741 428230.7325669 7368858.04819251 428170.73365053 7368982.99999293 428169.20103239 7368986.20520581 428169.15880252 7368986.19524987 428169.18370639 7368986.13701626 428057.02573434 7368959.76174055 427982.69590662 7368891.07704026 427968.82175185 7368886.01046414 427956.769912 7368881.00058689</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-11-07">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358305100">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>55</tst:Age>
                      <tst:BasalArea>6</tst:BasalArea>
                      <tst:MeanDiameter>15</tst:MeanDiameter>
                      <tst:MeanHeight>14.67</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358305101">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>5</tst:BasalArea>
                      <tst:MeanDiameter>18.7</tst:MeanDiameter>
                      <tst:MeanHeight>15.35</tst:MeanHeight>
                      <tst:SawLogPercent>55</tst:SawLogPercent>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358305102">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>40</tst:Age>
                      <tst:BasalArea>3</tst:BasalArea>
                      <tst:MeanDiameter>14.5</tst:MeanDiameter>
                      <tst:MeanHeight>12.67</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="359741888">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>55</tst:Age>
                      <tst:BasalArea>6</tst:BasalArea>
                      <tst:StemCount>401</tst:StemCount>
                      <tst:MeanDiameter>15</tst:MeanDiameter>
                      <tst:MeanHeight>14.7</tst:MeanHeight>
                      <tst:Volume>45.3</tst:Volume>
                      <tst:SawLogPercent>8.1</tst:SawLogPercent>
                      <tst:SawLogVolume>3.4</tst:SawLogVolume>
                      <tst:PulpWoodVolume>39.3</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>2.3</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="359741889">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>70</tst:Age>
                      <tst:BasalArea>5</tst:BasalArea>
                      <tst:StemCount>208</tst:StemCount>
                      <tst:MeanDiameter>18.7</tst:MeanDiameter>
                      <tst:MeanHeight>15.3</tst:MeanHeight>
                      <tst:Volume>37.4</tst:Volume>
                      <tst:SawLogPercent>55</tst:SawLogPercent>
                      <tst:SawLogVolume>20.1</tst:SawLogVolume>
                      <tst:PulpWoodVolume>16.4</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.8</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="359741890">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>40</tst:Age>
                      <tst:BasalArea>3</tst:BasalArea>
                      <tst:StemCount>224</tst:StemCount>
                      <tst:MeanDiameter>14.5</tst:MeanDiameter>
                      <tst:MeanHeight>12.7</tst:MeanHeight>
                      <tst:Volume>17.6</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>16.8</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.7</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>57</tss:MeanAge>
                    <tss:BasalArea>14</tss:BasalArea>
                    <tss:StemCount>832</tss:StemCount>
                    <tss:MeanDiameter>16.2</tss:MeanDiameter>
                    <tss:MeanHeight>14.5</tss:MeanHeight>
                    <tss:Volume>100.3</tss:Volume>
                    <tss:SawLogVolume>23.5</tss:SawLogVolume>
                    <tss:PulpWoodVolume>72.5</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>4.9</tss:VolumeGrowth>
                    <tss:Value>2378.6</tss:Value>
                    <tss:ValueGrowthPercent>5.9</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>03</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>2</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33772129" mainType="1">
                  <op:OperationType>3</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2032</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>7.8</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>1.3</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>1.3</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>0.7</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>2.9</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>1.7</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1800962" realEstateId="25476" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>14</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>3</st:DrainageState>
                <st:DevelopmentClass>03</st:DevelopmentClass>
                <st:StandQuality>10</st:StandQuality>
                <st:MainTreeSpecies>2</st:MainTreeSpecies>
                <st:Accessibility>4</st:Accessibility>
                <st:StandBasicDataDate>2024-11-11</st:StandBasicDataDate>
                <st:Area>3.2307</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">427698.58586406 7369331.11286053 427698.59598601 7369331.02675005 427698.59598601 7369331.02675005 427698.56536956 7369330.30867778 427876.81109008 7369273.36910978 427910.38158988 7369262.7398819 427910.37300904 7369262.71089047 428005.08300279 7369292.15027076 428005.16155005 7369292.07748418 428005.45147653 7369292.16731305 427982.12267012 7369304.65348644 427934.27826946 7369374.64927213 427882.76476761 7369408.25133145 427858.07687207 7369426.29182776 427832.42083648 7369441.4965628 427796.16558637 7369420.65005074 427703.18178577 7369424.49796703 427702.98376214 7369424.50616509 427701.19951945 7369387.50407067 427699.10078631 7369344.06410366 427698.58586406 7369331.11286053</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-11-04">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358311214">
                      <tst:StratumNumber>3</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>51</tst:Age>
                      <tst:BasalArea>4</tst:BasalArea>
                      <tst:MeanDiameter>23</tst:MeanDiameter>
                      <tst:MeanHeight>18</tst:MeanHeight>
                      <tst:SawLogPercent>77</tst:SawLogPercent>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358311215">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>5</tst:BasalArea>
                      <tst:MeanDiameter>22</tst:MeanDiameter>
                      <tst:MeanHeight>18.2</tst:MeanHeight>
                      <tst:SawLogPercent>52</tst:SawLogPercent>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358311216">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>56</tst:Age>
                      <tst:BasalArea>5</tst:BasalArea>
                      <tst:MeanDiameter>23.3</tst:MeanDiameter>
                      <tst:MeanHeight>18.4</tst:MeanHeight>
                      <tst:SawLogPercent>72</tst:SawLogPercent>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358978967">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>51</tst:Age>
                      <tst:BasalArea>4</tst:BasalArea>
                      <tst:StemCount>111</tst:StemCount>
                      <tst:MeanDiameter>23</tst:MeanDiameter>
                      <tst:MeanHeight>18</tst:MeanHeight>
                      <tst:Volume>35.6</tst:Volume>
                      <tst:SawLogPercent>77</tst:SawLogPercent>
                      <tst:SawLogVolume>26.9</tst:SawLogVolume>
                      <tst:PulpWoodVolume>8</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.2</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358978968">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>60</tst:Age>
                      <tst:BasalArea>5</tst:BasalArea>
                      <tst:StemCount>149</tst:StemCount>
                      <tst:MeanDiameter>22</tst:MeanDiameter>
                      <tst:MeanHeight>18.2</tst:MeanHeight>
                      <tst:Volume>40.6</tst:Volume>
                      <tst:SawLogPercent>52</tst:SawLogPercent>
                      <tst:SawLogVolume>20.8</tst:SawLogVolume>
                      <tst:PulpWoodVolume>19.2</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.9</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358978969">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>56</tst:Age>
                      <tst:BasalArea>5</tst:BasalArea>
                      <tst:StemCount>134</tst:StemCount>
                      <tst:MeanDiameter>23.3</tst:MeanDiameter>
                      <tst:MeanHeight>18.4</tst:MeanHeight>
                      <tst:Volume>44.4</tst:Volume>
                      <tst:SawLogPercent>72</tst:SawLogPercent>
                      <tst:SawLogVolume>31.3</tst:SawLogVolume>
                      <tst:PulpWoodVolume>12.2</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.4</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>56</tss:MeanAge>
                    <tss:BasalArea>14</tss:BasalArea>
                    <tss:StemCount>394</tss:StemCount>
                    <tss:MeanDiameter>22.8</tss:MeanDiameter>
                    <tss:MeanHeight>18.2</tss:MeanHeight>
                    <tss:Volume>120.5</tss:Volume>
                    <tss:SawLogVolume>79</tss:SawLogVolume>
                    <tss:PulpWoodVolume>39.4</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>3.6</tss:VolumeGrowth>
                    <tss:Value>3410.1</tss:Value>
                    <tss:ValueGrowthPercent>3.7</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>04</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>2</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33787499" mainType="1">
                  <op:OperationType>11</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2025</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo>Monsulaskelma</op:OperationInfo>
                  <op:Specifications>
                    <op:Specification id="121150">
                      <op:SpecificationCode>11008</op:SpecificationCode>
                    </op:Specification>
                    <op:Specification id="121148">
                      <op:SpecificationCode>105</op:SpecificationCode>
                    </op:Specification>
                    <op:Specification id="121149">
                      <op:SpecificationCode>11003</op:SpecificationCode>
                    </op:Specification>
                  </op:Specifications>
                  <op:Cutting>
                    <op:CuttingVolume>3.4</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>0.1</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>0.4</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>1.1</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>0.6</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>0.7</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>0.6</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1800961" realEstateId="25476" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>13</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>3</st:DrainageState>
                <st:DevelopmentClass>03</st:DevelopmentClass>
                <st:StandQuality>10</st:StandQuality>
                <st:MainTreeSpecies>2</st:MainTreeSpecies>
                <st:Accessibility>3</st:Accessibility>
                <st:StandBasicDataDate>2024-11-11</st:StandBasicDataDate>
                <st:Area>3.7825</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">427590.18497369 7369398.64850247 427595.42447084 7369389.6985485 427596.080868 7369387.9825935 427597.85987521 7369379.51943542 427603.66658584 7369336.07055195 427612.34759301 7369274.25112827 427614.46586919 7369259.19574793 427616.35496658 7369246.38663001 427622.51598482 7369214.84832034 427622.57765418 7369214.62997407 427623.21397192 7369210.93831846 427587.69728281 7369097.85059839 427588.84872927 7369097.82795606 427617.97196402 7369097.25542773 427617.9719641 7369097.25542773 427796.5056449 7369092.54510975 427822.78903092 7369200.93839123 427822.79244578 7369200.95246718 427790.47544284 7369184.17445835 427748.64445942 7369204.07776772 427745.68775748 7369205.67991272 427743.75597103 7369206.71016303 427718.16544437 7369163.82624805 427696.41178717 7369174.50983032 427675.50371128 7369185.59747865 427675.73003207 7369186.82349134 427681.49518957 7369222.10250886 427687.33767572 7369257.27261038 427698.49456446 7369328.95952977 427698.59598601 7369331.02675005 427698.58586406 7369331.11286053 427699.10078631 7369344.06410366 427701.19951945 7369387.50407067 427702.98376214 7369424.50616509 427703.18178577 7369424.49796703 427703.18865871 7369424.63805835 427645.83920259 7369412.53482829 427590.18497369 7369398.64850247</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-10-25">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358311217">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>56</tst:Age>
                      <tst:BasalArea>4.5</tst:BasalArea>
                      <tst:MeanDiameter>20.11</tst:MeanDiameter>
                      <tst:MeanHeight>17.83</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358311218">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>59</tst:Age>
                      <tst:BasalArea>10.25</tst:BasalArea>
                      <tst:MeanDiameter>20.15</tst:MeanDiameter>
                      <tst:MeanHeight>17.54</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358311219">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>58</tst:Age>
                      <tst:BasalArea>1.25</tst:BasalArea>
                      <tst:MeanDiameter>19.8</tst:MeanDiameter>
                      <tst:MeanHeight>16.1</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358671974">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>56</tst:Age>
                      <tst:BasalArea>4.5</tst:BasalArea>
                      <tst:StemCount>162</tst:StemCount>
                      <tst:MeanDiameter>20.1</tst:MeanDiameter>
                      <tst:MeanHeight>17.8</tst:MeanHeight>
                      <tst:Volume>39</tst:Volume>
                      <tst:SawLogPercent>35</tst:SawLogPercent>
                      <tst:SawLogVolume>13.4</tst:SawLogVolume>
                      <tst:PulpWoodVolume>24.8</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.6</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358671975">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>59</tst:Age>
                      <tst:BasalArea>10.2</tst:BasalArea>
                      <tst:StemCount>352</tst:StemCount>
                      <tst:MeanDiameter>20.1</tst:MeanDiameter>
                      <tst:MeanHeight>17.5</tst:MeanHeight>
                      <tst:Volume>89.2</tst:Volume>
                      <tst:SawLogPercent>35.7</tst:SawLogPercent>
                      <tst:SawLogVolume>31.1</tst:SawLogVolume>
                      <tst:PulpWoodVolume>55.8</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>3</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358671976">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>58</tst:Age>
                      <tst:BasalArea>1.2</tst:BasalArea>
                      <tst:StemCount>49</tst:StemCount>
                      <tst:MeanDiameter>19.8</tst:MeanDiameter>
                      <tst:MeanHeight>16.1</tst:MeanHeight>
                      <tst:Volume>9</tst:Volume>
                      <tst:SawLogPercent>2.5</tst:SawLogPercent>
                      <tst:SawLogVolume>0.2</tst:SawLogVolume>
                      <tst:PulpWoodVolume>8.6</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.2</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>58</tss:MeanAge>
                    <tss:BasalArea>16</tss:BasalArea>
                    <tss:StemCount>563</tss:StemCount>
                    <tss:MeanDiameter>20.1</tss:MeanDiameter>
                    <tss:MeanHeight>17.5</tss:MeanHeight>
                    <tss:Volume>137.2</tss:Volume>
                    <tss:SawLogVolume>44.7</tss:SawLogVolume>
                    <tss:PulpWoodVolume>89.2</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>4.8</tss:VolumeGrowth>
                    <tss:Value>4056.3</tss:Value>
                    <tss:ValueGrowthPercent>4.4</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>03</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>2</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <st:SpecialFeatures>
                <st:SpecialFeature>
                  <sf:FeatureCode>614</sf:FeatureCode>
                  <sf:FeatureAdditionalCode>6</sf:FeatureAdditionalCode>
                </st:SpecialFeature>
              </st:SpecialFeatures>
            </st:Stand>
            <st:Stand id="1800960" realEstateId="25476" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>12</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>3</st:SubGroup>
                <st:FertilityClass>4</st:FertilityClass>
                <st:SoilType>60</st:SoilType>
                <st:DrainageState>9</st:DrainageState>
                <st:DevelopmentClass>02</st:DevelopmentClass>
                <st:StandQuality>22</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:Accessibility>4</st:Accessibility>
                <st:StandBasicDataDate>2024-10-30</st:StandBasicDataDate>
                <st:Area>1.7242</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">427271.22778618 7368814.23210246 427270.62452722 7368781.07098256 427274.82180832 7368778.15755077 427337.6479048 7368743.03678713 427340.35136171 7368727.94750095 427323.39381194 7368707.22589044 427336.89264351 7368676.03811752 427336.89264351 7368676.03811752 427350.4021906 7368686.10807843 427350.40219135 7368686.10807899 427364.61204749 7368696.71601295 427362.45267114 7368744.68218303 427407.05899954 7368802.31022548 427402.84887138 7368840.7233493 427402.21063847 7368845.40357982 427472.88512053 7368859.70089453 427534.73132882 7368847.85815613 427536.94264245 7368847.39025113 427595.0560862 7368835.09436458 427615.70869988 7368835.27761582 427619.43845023 7368835.31072631 427615.7007957 7368872.08184897 427615.54686465 7368872.1105946 427615.57763387 7368871.03951804 427523.77233593 7368888.84357453 427271.22778618 7368814.23210246</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-10-27">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358314617">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>29</tst:Age>
                      <tst:BasalArea>10.5</tst:BasalArea>
                      <tst:MeanDiameter>12.29</tst:MeanDiameter>
                      <tst:MeanHeight>9.05</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358314618">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>12</tst:Age>
                      <tst:BasalArea>3.5</tst:BasalArea>
                      <tst:MeanDiameter>6.21</tst:MeanDiameter>
                      <tst:MeanHeight>5</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358314619">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>13</tst:Age>
                      <tst:BasalArea>6</tst:BasalArea>
                      <tst:MeanDiameter>6.25</tst:MeanDiameter>
                      <tst:MeanHeight>7.13</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358671959">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>29</tst:Age>
                      <tst:BasalArea>10.5</tst:BasalArea>
                      <tst:StemCount>1073</tst:StemCount>
                      <tst:MeanDiameter>12.3</tst:MeanDiameter>
                      <tst:MeanHeight>9.1</tst:MeanHeight>
                      <tst:Volume>50.4</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>46.7</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>2.9</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358671960">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>12</tst:Age>
                      <tst:BasalArea>3.5</tst:BasalArea>
                      <tst:StemCount>1670</tst:StemCount>
                      <tst:MeanDiameter>6.2</tst:MeanDiameter>
                      <tst:MeanHeight>5</tst:MeanHeight>
                      <tst:Volume>10.7</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>0</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.2</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358671961">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>13</tst:Age>
                      <tst:BasalArea>6</tst:BasalArea>
                      <tst:StemCount>2753</tst:StemCount>
                      <tst:MeanDiameter>6.2</tst:MeanDiameter>
                      <tst:MeanHeight>7.1</tst:MeanHeight>
                      <tst:Volume>22</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>6</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>2</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>29</tss:MeanAge>
                    <tss:BasalArea>20</tss:BasalArea>
                    <tss:StemCount>5496</tss:StemCount>
                    <tss:MeanDiameter>9.4</tss:MeanDiameter>
                    <tss:MeanHeight>7.8</tss:MeanHeight>
                    <tss:Volume>83.1</tss:Volume>
                    <tss:SawLogVolume>0</tss:SawLogVolume>
                    <tss:PulpWoodVolume>52.7</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>6.1</tss:VolumeGrowth>
                    <tss:Value>1012.9</tss:Value>
                    <tss:ValueGrowthPercent>3.4</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>02</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>1</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33772131" mainType="1">
                  <op:OperationType>2</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2025</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>9.4</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>4.6</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>0.1</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>4.7</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1800959" realEstateId="25476" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>11</st:StandNumber>
                <st:MainGroup>2</st:MainGroup>
                <st:SubGroup>3</st:SubGroup>
                <st:FertilityClass>5</st:FertilityClass>
                <st:SoilType>60</st:SoilType>
                <st:DrainageState>7</st:DrainageState>
                <st:DevelopmentClass>02</st:DevelopmentClass>
                <st:StandQuality>31</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:Accessibility>4</st:Accessibility>
                <st:SilvicultureRestriction>9</st:SilvicultureRestriction>
                <st:StandBasicDataDate>2024-10-30</st:StandBasicDataDate>
                <st:Area>1.0681</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">427762.20888924 7368596.45606565 427763.38171315 7368595.55485319 427809.64706908 7368562.71393166 427858.26668242 7368535.02602904 427898.81409133 7368537.0068225 427895.26509304 7368595.06805129 427895.11955758 7368596.37306942 427895.10239179 7368596.52699542 427832.17253491 7368626.05503443 427814.44971622 7368647.94889931 427812.82494463 7368677.55617262 427791.95611982 7368673.16924906 427778.4547197 7368670.21975918 427772.68233911 7368668.7478039 427772.72061561 7368668.75197209 427763.09254148 7368602.85395277 427763.09254148 7368602.85395276 427762.20888924 7368596.45606565</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-10-25">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358305090">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>30</tst:Age>
                      <tst:StemCount>2200</tst:StemCount>
                      <tst:MeanDiameter>8</tst:MeanDiameter>
                      <tst:MeanHeight>6.5</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358671954">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>30</tst:Age>
                      <tst:BasalArea>8.2</tst:BasalArea>
                      <tst:StemCount>2200</tst:StemCount>
                      <tst:MeanDiameter>8</tst:MeanDiameter>
                      <tst:MeanHeight>6.5</tst:MeanHeight>
                      <tst:Volume>50.2</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>39.7</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.9</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>30</tss:MeanAge>
                    <tss:BasalArea>8.2</tss:BasalArea>
                    <tss:StemCount>2200</tss:StemCount>
                    <tss:MeanDiameter>8</tss:MeanDiameter>
                    <tss:MeanHeight>6.5</tss:MeanHeight>
                    <tss:Volume>50.2</tss:Volume>
                    <tss:SawLogVolume>0</tss:SawLogVolume>
                    <tss:PulpWoodVolume>39.7</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>0.9</tss:VolumeGrowth>
                    <tss:Value>770.8</tss:Value>
                    <tss:ValueGrowthPercent>2</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>02</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>1</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
            </st:Stand>
            <st:Stand id="1800958" realEstateId="25476" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>10</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>3</st:DrainageState>
                <st:DevelopmentClass>02</st:DevelopmentClass>
                <st:StandQuality>11</st:StandQuality>
                <st:MainTreeSpecies>4</st:MainTreeSpecies>
                <st:Accessibility>4</st:Accessibility>
                <st:StandBasicDataDate>2024-11-04</st:StandBasicDataDate>
                <st:Area>1.4825</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">427944.51330903 7369130.11313248 427965.11651269 7369108.33956307 427998.46780722 7369088.87090891 428003.82415654 7369087.09105681 428004.01760499 7369087.08597427 428081.55299442 7369061.30068431 428121.83414378 7369047.88089556 428121.83414522 7369047.88089509 428146.30772425 7369039.59496672 428146.21901856 7369039.7795005 428086.82125136 7369163.35063819 428086.56222021 7369163.74807806 428064.30819623 7369171.52946439 428050.89787853 7369196.92247848 428023.82537515 7369167.40995697 427979.85038568 7369173.71004318 427944.51330903 7369130.11313248</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-11-04">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358311220">
                      <tst:StratumNumber>3</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>54</tst:Age>
                      <tst:BasalArea>14</tst:BasalArea>
                      <tst:MeanDiameter>11.71</tst:MeanDiameter>
                      <tst:MeanHeight>11.68</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358311221">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>14</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>53</tst:Age>
                      <tst:BasalArea>0.5</tst:BasalArea>
                      <tst:MeanDiameter>18</tst:MeanDiameter>
                      <tst:MeanHeight>12</tst:MeanHeight>
                      <tst:SawLogPercent>35</tst:SawLogPercent>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358311222">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>54</tst:Age>
                      <tst:BasalArea>2</tst:BasalArea>
                      <tst:MeanDiameter>19</tst:MeanDiameter>
                      <tst:MeanHeight>10</tst:MeanHeight>
                      <tst:SawLogPercent>35</tst:SawLogPercent>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358978997">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>54</tst:Age>
                      <tst:BasalArea>14</tst:BasalArea>
                      <tst:StemCount>1575</tst:StemCount>
                      <tst:MeanDiameter>11.7</tst:MeanDiameter>
                      <tst:MeanHeight>11.7</tst:MeanHeight>
                      <tst:Volume>75.4</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>67.7</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>3.4</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358978998">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>14</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>53</tst:Age>
                      <tst:BasalArea>0.5</tst:BasalArea>
                      <tst:StemCount>25</tst:StemCount>
                      <tst:MeanDiameter>18</tst:MeanDiameter>
                      <tst:MeanHeight>12</tst:MeanHeight>
                      <tst:Volume>3.2</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>2.9</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.1</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358978999">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>54</tst:Age>
                      <tst:BasalArea>2</tst:BasalArea>
                      <tst:StemCount>84</tst:StemCount>
                      <tst:MeanDiameter>19</tst:MeanDiameter>
                      <tst:MeanHeight>10</tst:MeanHeight>
                      <tst:Volume>9.9</tst:Volume>
                      <tst:SawLogPercent>35</tst:SawLogPercent>
                      <tst:SawLogVolume>3.3</tst:SawLogVolume>
                      <tst:PulpWoodVolume>6.1</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.5</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>54</tss:MeanAge>
                    <tss:BasalArea>16.5</tss:BasalArea>
                    <tss:StemCount>1684</tss:StemCount>
                    <tss:MeanDiameter>12.8</tss:MeanDiameter>
                    <tss:MeanHeight>11.5</tss:MeanHeight>
                    <tss:Volume>88.5</tss:Volume>
                    <tss:SawLogVolume>3.3</tss:SawLogVolume>
                    <tss:PulpWoodVolume>76.7</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>4.1</tss:VolumeGrowth>
                    <tss:Value>1506.7</tss:Value>
                    <tss:ValueGrowthPercent>5.3</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>02</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>4</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33787501" mainType="1">
                  <op:OperationType>2</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2025</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo>Monsulaskelma</op:OperationInfo>
                  <op:Specifications>
                    <op:Specification id="121154">
                      <op:SpecificationCode>105</op:SpecificationCode>
                    </op:Specification>
                    <op:Specification id="121155">
                      <op:SpecificationCode>11003</op:SpecificationCode>
                    </op:Specification>
                    <op:Specification id="121079">
                      <op:SpecificationCode>11008</op:SpecificationCode>
                    </op:Specification>
                  </op:Specifications>
                  <op:Cutting>
                    <op:CuttingVolume>35.9</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>34.39</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>0.22</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>0.68</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>8</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>0.5</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
              </op:Operations>
              <st:SpecialFeatures>
                <st:SpecialFeature>
                  <sf:FeatureCode>1014</sf:FeatureCode>
                </st:SpecialFeature>
              </st:SpecialFeatures>
            </st:Stand>
            <st:Stand id="1800957" realEstateId="25476" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>9</st:StandNumber>
                <st:MainGroup>2</st:MainGroup>
                <st:SubGroup>3</st:SubGroup>
                <st:FertilityClass>4</st:FertilityClass>
                <st:SoilType>60</st:SoilType>
                <st:DrainageState>7</st:DrainageState>
                <st:DevelopmentClass>02</st:DevelopmentClass>
                <st:StandQuality>23</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:Accessibility>4</st:Accessibility>
                <st:StandBasicDataDate>2024-11-11</st:StandBasicDataDate>
                <st:Area>2.2298</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">427675.50371128 7369185.59747865 427696.41178717 7369174.50983032 427696.4117872 7369174.50983031 427718.16544437 7369163.82624805 427743.75597103 7369206.71016303 427745.68775748 7369205.67991272 427748.64445942 7369204.07776772 427748.64445942 7369204.07776772 427790.47544284 7369184.17445835 427822.79244578 7369200.95246718 427822.78903092 7369200.93839123 427847.96537653 7369214.3222555 427880.21968374 7369208.27748721 427899.26335361 7369225.17603706 427909.1753005 7369258.9783478 427909.90216511 7369261.12008733 427910.37300904 7369262.71089047 427910.38158988 7369262.7398819 427876.81109008 7369273.36910978 427698.56536956 7369330.30867778 427698.59598601 7369331.02675005 427698.49456446 7369328.95952977 427692.29569495 7369289.12924293 427691.96348282 7369286.62061158 427690.66268457 7369278.63663684 427687.33767572 7369257.27261038 427681.49518957 7369222.10250886 427675.73003207 7369186.82349134 427675.50371128 7369185.59747865</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-10-25">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358311223">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>25</tst:Age>
                      <tst:BasalArea>8</tst:BasalArea>
                      <tst:StemCount>600</tst:StemCount>
                      <tst:MeanDiameter>12.88</tst:MeanDiameter>
                      <tst:MeanHeight>10.5</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358311224">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>17</tst:Age>
                      <tst:BasalArea>2</tst:BasalArea>
                      <tst:StemCount>500</tst:StemCount>
                      <tst:MeanDiameter>10</tst:MeanDiameter>
                      <tst:MeanHeight>8</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358671929">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>25</tst:Age>
                      <tst:BasalArea>8</tst:BasalArea>
                      <tst:StemCount>745</tst:StemCount>
                      <tst:MeanDiameter>12.9</tst:MeanDiameter>
                      <tst:MeanHeight>10.5</tst:MeanHeight>
                      <tst:Volume>43.6</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>40.5</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.6</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358671930">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>17</tst:Age>
                      <tst:BasalArea>2</tst:BasalArea>
                      <tst:StemCount>353</tst:StemCount>
                      <tst:MeanDiameter>10</tst:MeanDiameter>
                      <tst:MeanHeight>8</tst:MeanHeight>
                      <tst:Volume>8.5</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>6.5</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.2</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>23</tss:MeanAge>
                    <tss:BasalArea>10</tss:BasalArea>
                    <tss:StemCount>1100</tss:StemCount>
                    <tss:MeanDiameter>12.3</tss:MeanDiameter>
                    <tss:MeanHeight>10</tss:MeanHeight>
                    <tss:Volume>52.1</tss:Volume>
                    <tss:SawLogVolume>0</tss:SawLogVolume>
                    <tss:PulpWoodVolume>47</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>0.8</tss:VolumeGrowth>
                    <tss:Value>916.8</tss:Value>
                    <tss:ValueGrowthPercent>1.2</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>02</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>1</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
            </st:Stand>
            <st:Stand id="1800956" realEstateId="25476" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>8</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>4</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>1</st:DrainageState>
                <st:DevelopmentClass>04</st:DevelopmentClass>
                <st:StandQuality>10</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:Accessibility>2</st:Accessibility>
                <st:StandBasicDataDate>2024-10-30</st:StandBasicDataDate>
                <st:Area>7.3846</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">427044.61763107 7368842.45769566 427058.60162658 7368846.9008865 427132.2105567 7368867.28390494 427182.08009947 7368833.09459839 427260.11954071 7368862.06823206 427420.21224924 7368921.92106223 427421.35498157 7368921.93882953 427421.76707016 7368922.09186324 427611.72879771 7368926.44921345 427612.97311266 7368956.73337931 427628.01420192 7368986.43424329 427628.05565142 7368986.51609242 427585.18625921 7369018.88699156 427546.38426755 7369048.2903124 427534.07649381 7369037.71525095 427515.48724603 7369021.72626124 427421.98393391 7369061.50033201 427362.13487171 7369053.93317685 427311.13571151 7369057.44851082 427309.70766763 7369057.40046394 427246.02911174 7369055.04883425 427202.9505717 7369064.46394282 427203.24289313 7369064.37196432 427202.44736893 7369059.82621252 427201.987274 7369055.05161518 427200.79738356 7369045.53385059 427200.68303258 7369031.30659066 427200.69097797 7369031.32676053 427226.04226092 7369012.72431899 427198.99240394 7368997.71780806 427133.90761241 7368961.68420494 427121.13220236 7368920.17879041 427047.52754102 7368898.23694244 427044.61763107 7368842.45769566</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-11-07">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358305058">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>104</tst:Age>
                      <tst:BasalArea>20.75</tst:BasalArea>
                      <tst:MeanDiameter>22.53</tst:MeanDiameter>
                      <tst:MeanHeight>17.76</tst:MeanHeight>
                      <tst:SawLogPercent>82</tst:SawLogPercent>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358305059">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>75</tst:Age>
                      <tst:BasalArea>0.5</tst:BasalArea>
                      <tst:MeanDiameter>18</tst:MeanDiameter>
                      <tst:MeanHeight>16.5</tst:MeanHeight>
                      <tst:SawLogPercent>52</tst:SawLogPercent>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="359741903">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>104</tst:Age>
                      <tst:BasalArea>20.8</tst:BasalArea>
                      <tst:StemCount>553</tst:StemCount>
                      <tst:MeanDiameter>22.5</tst:MeanDiameter>
                      <tst:MeanHeight>17.8</tst:MeanHeight>
                      <tst:Volume>177.1</tst:Volume>
                      <tst:SawLogPercent>82</tst:SawLogPercent>
                      <tst:SawLogVolume>143.6</tst:SawLogVolume>
                      <tst:PulpWoodVolume>31.5</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>3.9</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="359741904">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>75</tst:Age>
                      <tst:BasalArea>0.5</tst:BasalArea>
                      <tst:StemCount>25</tst:StemCount>
                      <tst:MeanDiameter>18</tst:MeanDiameter>
                      <tst:MeanHeight>16.5</tst:MeanHeight>
                      <tst:Volume>4.7</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>4.1</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.2</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>103</tss:MeanAge>
                    <tss:BasalArea>21.2</tss:BasalArea>
                    <tss:StemCount>578</tss:StemCount>
                    <tss:MeanDiameter>22.4</tss:MeanDiameter>
                    <tss:MeanHeight>17.7</tss:MeanHeight>
                    <tss:Volume>181.7</tss:Volume>
                    <tss:SawLogVolume>143.6</tss:SawLogVolume>
                    <tss:PulpWoodVolume>35.6</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>4.1</tss:VolumeGrowth>
                    <tss:Value>6508.7</tss:Value>
                    <tss:ValueGrowthPercent>2.8</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>04</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>1</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33772133" mainType="1">
                  <op:OperationType>8</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2025</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>159.5</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>80.39</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>4.15</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>74.97</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
                <op:Operation id="33772139" mainType="1">
                  <op:OperationType>1</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2032</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo>Siemenpuiden poisto</op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>21.1</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>7.01</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>14.2</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1800955" realEstateId="25476" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>7</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>4</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>1</st:DrainageState>
                <st:DevelopmentClass>03</st:DevelopmentClass>
                <st:StandQuality>10</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:Accessibility>1</st:Accessibility>
                <st:StandBasicDataDate>2024-10-30</st:StandBasicDataDate>
                <st:Area>3.9082</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">427754.1885342 7368838.60751068 427754.63063628 7368837.39554634 427770.51136293 7368793.86143292 427872.92976445 7368804.54739242 427958.41544626 7368740.9887811 428017.91559592 7368762.331675 428156.70797072 7368776.18558046 428156.68071884 7368776.1182078 428267.32913764 7368781.95195209 428230.7325669 7368858.04819251 428244.99263707 7368828.35255741 428241.6309372 7368829.08166735 428226.38579753 7368832.42176496 428203.94534536 7368837.2554952 428121.58995541 7368864.04000176 428085.32365637 7368878.06190365 428015.05840207 7368874.35895517 427970.85489951 7368837.12864833 427956.769912 7368881.00058689 427956.769912 7368881.00058689 427939.04666587 7368875.8436101 427874.77162961 7368856.73382569 427846.39585585 7368845.63013131 427821.3352114 7368835.6375887 427754.1885342 7368838.60751068</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-11-07">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358305097">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>99</tst:Age>
                      <tst:BasalArea>11.75</tst:BasalArea>
                      <tst:MeanDiameter>22.96</tst:MeanDiameter>
                      <tst:MeanHeight>18.17</tst:MeanHeight>
                      <tst:SawLogPercent>80</tst:SawLogPercent>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358305098">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>88</tst:Age>
                      <tst:BasalArea>8</tst:BasalArea>
                      <tst:MeanDiameter>22.45</tst:MeanDiameter>
                      <tst:MeanHeight>17.8</tst:MeanHeight>
                      <tst:SawLogPercent>66</tst:SawLogPercent>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358305099">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>24</tst:Age>
                      <tst:BasalArea>2.25</tst:BasalArea>
                      <tst:MeanDiameter>10.5</tst:MeanDiameter>
                      <tst:MeanHeight>13.39</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="359741671">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>99</tst:Age>
                      <tst:BasalArea>11.8</tst:BasalArea>
                      <tst:StemCount>310</tst:StemCount>
                      <tst:MeanDiameter>23</tst:MeanDiameter>
                      <tst:MeanHeight>18.2</tst:MeanHeight>
                      <tst:Volume>102</tst:Volume>
                      <tst:SawLogPercent>80</tst:SawLogPercent>
                      <tst:SawLogVolume>80.7</tst:SawLogVolume>
                      <tst:PulpWoodVolume>20.2</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>2.3</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="359741672">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>88</tst:Age>
                      <tst:BasalArea>8</tst:BasalArea>
                      <tst:StemCount>225</tst:StemCount>
                      <tst:MeanDiameter>22.4</tst:MeanDiameter>
                      <tst:MeanHeight>17.8</tst:MeanHeight>
                      <tst:Volume>68.6</tst:Volume>
                      <tst:SawLogPercent>66</tst:SawLogPercent>
                      <tst:SawLogVolume>44.6</tst:SawLogVolume>
                      <tst:PulpWoodVolume>23</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.7</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="359741673">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>24</tst:Age>
                      <tst:BasalArea>2.2</tst:BasalArea>
                      <tst:StemCount>354</tst:StemCount>
                      <tst:MeanDiameter>10.5</tst:MeanDiameter>
                      <tst:MeanHeight>13.4</tst:MeanHeight>
                      <tst:Volume>14.5</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>13</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.4</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>87</tss:MeanAge>
                    <tss:BasalArea>22</tss:BasalArea>
                    <tss:StemCount>888</tss:StemCount>
                    <tss:MeanDiameter>21.5</tss:MeanDiameter>
                    <tss:MeanHeight>17.5</tss:MeanHeight>
                    <tss:Volume>185.2</tss:Volume>
                    <tss:SawLogVolume>125.3</tss:SawLogVolume>
                    <tss:PulpWoodVolume>56.2</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>4.3</tss:VolumeGrowth>
                    <tss:Value>6337.7</tss:Value>
                    <tss:ValueGrowthPercent>2.5</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>03</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>1</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33772130" mainType="1">
                  <op:OperationType>14</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2032</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo></op:OperationInfo>
                  <op:Cutting>
                    <op:CuttingVolume>120</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>48</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>1.32</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>32.04</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>13.8</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>24.84</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1800954" realEstateId="25476" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>6</st:StandNumber>
                <st:MainGroup>2</st:MainGroup>
                <st:SubGroup>2</st:SubGroup>
                <st:FertilityClass>4</st:FertilityClass>
                <st:SoilType>60</st:SoilType>
                <st:DrainageState>7</st:DrainageState>
                <st:DevelopmentClass>02</st:DevelopmentClass>
                <st:StandQuality>30</st:StandQuality>
                <st:MainTreeSpecies>2</st:MainTreeSpecies>
                <st:Accessibility>4</st:Accessibility>
                <st:StandBasicDataDate>2024-11-11</st:StandBasicDataDate>
                <st:Area>11.3281</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">427546.38426755 7369048.2903124 427585.18625921 7369018.88699156 427628.05565142 7368986.51609242 427628.01420192 7368986.43424329 427628.07245681 7368986.39010179 427612.97311266 7368956.73337931 427611.72879771 7368926.44921345 427612.32181463 7368920.13403881 427615.54686465 7368872.1105946 427615.7007957 7368872.08184897 427619.4411503 7368835.28416346 427619.44211202 7368835.27470217 427657.74835395 7368835.26280545 427666.55108066 7368835.36723549 427696.717994 7368836.62557035 427696.70097806 7368836.64784467 427754.14713783 7368838.70469075 427754.6248069 7368837.39570004 427754.63063628 7368837.39554634 427754.1885342 7368838.60751068 427821.3352114 7368835.6375887 427846.39585585 7368845.63013131 427874.77162961 7368856.73382569 427939.0466665 7368875.84361029 427956.769912 7368881.00058689 427968.82175185 7368886.01046414 427982.69590662 7368891.07704026 428057.02573434 7368959.76174055 428169.18370639 7368986.13701626 428147.39202192 7369037.09436068 428146.24785613 7369039.76991994 428146.21901856 7369039.7795005 428146.30772425 7369039.59496672 428121.83414522 7369047.88089509 428121.8341452 7369047.88089509 428081.55299442 7369061.30068431 428004.01760499 7369087.08597427 428003.82415654 7369087.09105681 427796.50579522 7369092.54572962 427796.5056449 7369092.54510975 427617.9719641 7369097.25542773 427617.97196402 7369097.25542773 427587.70450854 7369097.85020098 427568.1674859 7369070.25282993 427566.9722214 7369069.16918364 427553.35927255 7369055.6374128 427546.38426755 7369048.2903124</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-10-25">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358311307">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>42</tst:Age>
                      <tst:BasalArea>3.83</tst:BasalArea>
                      <tst:StemCount>34</tst:StemCount>
                      <tst:MeanDiameter>10.7</tst:MeanDiameter>
                      <tst:MeanHeight>8.26</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358311308">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>50</tst:Age>
                      <tst:BasalArea>3</tst:BasalArea>
                      <tst:StemCount>134</tst:StemCount>
                      <tst:MeanDiameter>13.56</tst:MeanDiameter>
                      <tst:MeanHeight>11.44</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358311309">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>42</tst:Age>
                      <tst:BasalArea>8.5</tst:BasalArea>
                      <tst:StemCount>100</tst:StemCount>
                      <tst:MeanDiameter>13.25</tst:MeanDiameter>
                      <tst:MeanHeight>10.08</tst:MeanHeight>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358311310">
                      <tst:StratumNumber>3</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>13</tst:Age>
                      <tst:BasalArea>0.17</tst:BasalArea>
                      <tst:MeanDiameter>7</tst:MeanDiameter>
                      <tst:MeanHeight>8</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358671851">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>42</tst:Age>
                      <tst:BasalArea>3.8</tst:BasalArea>
                      <tst:StemCount>562</tst:StemCount>
                      <tst:MeanDiameter>10.7</tst:MeanDiameter>
                      <tst:MeanHeight>8.3</tst:MeanHeight>
                      <tst:Volume>1.4</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>0.9</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358671852">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>50</tst:Age>
                      <tst:BasalArea>3</tst:BasalArea>
                      <tst:StemCount>260</tst:StemCount>
                      <tst:MeanDiameter>13.6</tst:MeanDiameter>
                      <tst:MeanHeight>11.4</tst:MeanHeight>
                      <tst:Volume>17.3</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>16.2</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.3</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358671853">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>42</tst:Age>
                      <tst:BasalArea>8.5</tst:BasalArea>
                      <tst:StemCount>740</tst:StemCount>
                      <tst:MeanDiameter>13.2</tst:MeanDiameter>
                      <tst:MeanHeight>10.1</tst:MeanHeight>
                      <tst:Volume>7.1</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>5.5</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.1</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358671854">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>2</tst:Storey>
                      <tst:Age>13</tst:Age>
                      <tst:BasalArea>0.2</tst:BasalArea>
                      <tst:StemCount>73</tst:StemCount>
                      <tst:MeanDiameter>7</tst:MeanDiameter>
                      <tst:MeanHeight>8</tst:MeanHeight>
                      <tst:Volume>0.7</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>0.3</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>44</tss:MeanAge>
                    <tss:BasalArea>15.5</tss:BasalArea>
                    <tss:StemCount>341</tss:StemCount>
                    <tss:MeanDiameter>12.6</tss:MeanDiameter>
                    <tss:MeanHeight>9.9</tss:MeanHeight>
                    <tss:Volume>26.5</tss:Volume>
                    <tss:SawLogVolume>0</tss:SawLogVolume>
                    <tss:PulpWoodVolume>22.8</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>0.5</tss:VolumeGrowth>
                    <tss:Value>452.1</tss:Value>
                    <tss:ValueGrowthPercent>2.1</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>02</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>2</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
            </st:Stand>
            <st:Stand id="1800953" realEstateId="25476" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>5</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>3</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>3</st:DrainageState>
                <st:DevelopmentClass>03</st:DevelopmentClass>
                <st:StandQuality>10</st:StandQuality>
                <st:MainTreeSpecies>2</st:MainTreeSpecies>
                <st:Accessibility>3</st:Accessibility>
                <st:StandBasicDataDate>2024-11-11</st:StandBasicDataDate>
                <st:Area>3.2214</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">427796.50579522 7369092.54572962 428003.82415654 7369087.09105681 427998.46780722 7369088.87090891 427965.11651269 7369108.33956307 427944.51330903 7369130.11313248 427979.85038568 7369173.71004318 428023.82537515 7369167.40995697 428050.89787853 7369196.92247848 428064.30819623 7369171.52946439 428086.56222021 7369163.74807806 428086.49025129 7369163.85850231 428044.17161615 7369255.92918302 428005.16155005 7369292.07748418 428005.08300279 7369292.15027076 427910.37300904 7369262.71089047 427909.90216511 7369261.12008733 427909.1753005 7369258.9783478 427899.26335361 7369225.17603706 427880.21968374 7369208.27748721 427847.96537653 7369214.3222555 427822.78903092 7369200.93839123 427796.50579522 7369092.54572962</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-11-04">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358311225">
                      <tst:StratumNumber>3</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>64</tst:Age>
                      <tst:BasalArea>4</tst:BasalArea>
                      <tst:MeanDiameter>20.25</tst:MeanDiameter>
                      <tst:MeanHeight>18.62</tst:MeanHeight>
                      <tst:SawLogPercent>35</tst:SawLogPercent>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358311226">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>68</tst:Age>
                      <tst:BasalArea>7.75</tst:BasalArea>
                      <tst:MeanDiameter>22.48</tst:MeanDiameter>
                      <tst:MeanHeight>18.68</tst:MeanHeight>
                      <tst:SawLogPercent>60</tst:SawLogPercent>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358311227">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>77</tst:Age>
                      <tst:BasalArea>5</tst:BasalArea>
                      <tst:MeanDiameter>26.15</tst:MeanDiameter>
                      <tst:MeanHeight>17.1</tst:MeanHeight>
                      <tst:SawLogPercent>75</tst:SawLogPercent>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358978982">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>64</tst:Age>
                      <tst:BasalArea>4</tst:BasalArea>
                      <tst:StemCount>142</tst:StemCount>
                      <tst:MeanDiameter>20.2</tst:MeanDiameter>
                      <tst:MeanHeight>18.6</tst:MeanHeight>
                      <tst:Volume>34.2</tst:Volume>
                      <tst:SawLogPercent>35</tst:SawLogPercent>
                      <tst:SawLogVolume>11.8</tst:SawLogVolume>
                      <tst:PulpWoodVolume>21.8</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.7</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358978983">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>68</tst:Age>
                      <tst:BasalArea>7.8</tst:BasalArea>
                      <tst:StemCount>217</tst:StemCount>
                      <tst:MeanDiameter>22.5</tst:MeanDiameter>
                      <tst:MeanHeight>18.7</tst:MeanHeight>
                      <tst:Volume>68.6</tst:Volume>
                      <tst:SawLogPercent>60</tst:SawLogPercent>
                      <tst:SawLogVolume>40.6</tst:SawLogVolume>
                      <tst:PulpWoodVolume>27.1</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>2.2</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358978984">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>77</tst:Age>
                      <tst:BasalArea>5</tst:BasalArea>
                      <tst:StemCount>108</tst:StemCount>
                      <tst:MeanDiameter>26.1</tst:MeanDiameter>
                      <tst:MeanHeight>17.1</tst:MeanHeight>
                      <tst:Volume>38.9</tst:Volume>
                      <tst:SawLogPercent>75</tst:SawLogPercent>
                      <tst:SawLogVolume>28.8</tst:SawLogVolume>
                      <tst:PulpWoodVolume>9.6</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.2</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>70</tss:MeanAge>
                    <tss:BasalArea>16.8</tss:BasalArea>
                    <tss:StemCount>468</tss:StemCount>
                    <tss:MeanDiameter>23</tss:MeanDiameter>
                    <tss:MeanHeight>18.2</tss:MeanHeight>
                    <tss:Volume>141.7</tss:Volume>
                    <tss:SawLogVolume>81.2</tss:SawLogVolume>
                    <tss:PulpWoodVolume>58.5</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>4.1</tss:VolumeGrowth>
                    <tss:Value>4441.8</tss:Value>
                    <tss:ValueGrowthPercent>4</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>03</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>2</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33787497" mainType="1">
                  <op:OperationType>11</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2025</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo>Monsulaskelma</op:OperationInfo>
                  <op:Specifications>
                    <op:Specification id="121151">
                      <op:SpecificationCode>105</op:SpecificationCode>
                    </op:Specification>
                    <op:Specification id="121152">
                      <op:SpecificationCode>11008</op:SpecificationCode>
                    </op:Specification>
                    <op:Specification id="121153">
                      <op:SpecificationCode>11003</op:SpecificationCode>
                    </op:Specification>
                  </op:Specifications>
                  <op:Cutting>
                    <op:CuttingVolume>4.8</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>1.1</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>1.1</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>0.8</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>0.6</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>1.3</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
              </op:Operations>
            </st:Stand>
            <st:Stand id="1800952" realEstateId="25476" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>4</st:StandNumber>
                <st:MainGroup>2</st:MainGroup>
                <st:SubGroup>4</st:SubGroup>
                <st:FertilityClass>5</st:FertilityClass>
                <st:SoilType>60</st:SoilType>
                <st:DrainageState>6</st:DrainageState>
                <st:DevelopmentClass>A0</st:DevelopmentClass>
                <st:StandQuality>0</st:StandQuality>
                <st:Accessibility>4</st:Accessibility>
                <st:StandBasicDataDate>2024-10-30</st:StandBasicDataDate>
                <st:Area>9.4943</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">427329.17286427 7368670.51186563 427332.20210773 7368668.82451973 427521.73272619 7368554.42247049 427521.73272619 7368554.42247049 427563.12577885 7368566.13205538 427574.4995721 7368567.24600063 427574.49958362 7368567.24600176 427583.44309094 7368568.92050092 427702.16737734 7368562.08787642 427741.60522177 7368617.13646096 427750.80220572 7368666.07983839 427750.85705938 7368666.08392621 427758.30564777 7368704.94903883 427720.10209987 7368732.67440228 427732.37651611 7368789.94862989 427696.87435431 7368836.63209336 427696.717994 7368836.62557034 427666.55108066 7368835.36723549 427657.74835395 7368835.26280545 427619.44211202 7368835.27470216 427619.4411503 7368835.28416346 427615.70869988 7368835.27761582 427595.0560862 7368835.09436458 427536.94264245 7368847.39025113 427472.88512053 7368859.70089453 427402.21063847 7368845.40357982 427402.84887138 7368840.7233493 427407.05899954 7368802.31022548 427362.45267114 7368744.68218303 427364.61204749 7368696.71601295 427350.40219135 7368686.10807899 427331.77895136 7368672.2264283 427329.17286427 7368670.51186563</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-09-17"></ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31"></ts:TreeStandDataDate>
              </ts:TreeStandData>
              <st:SpecialFeatures>
                <st:SpecialFeature>
                  <sf:FeatureCode>11011</sf:FeatureCode>
                </st:SpecialFeature>
              </st:SpecialFeatures>
            </st:Stand>
            <st:Stand id="1800950" realEstateId="25476" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>2</st:StandNumber>
                <st:MainGroup>2</st:MainGroup>
                <st:SubGroup>3</st:SubGroup>
                <st:FertilityClass>5</st:FertilityClass>
                <st:SoilType>60</st:SoilType>
                <st:DrainageState>9</st:DrainageState>
                <st:DevelopmentClass>02</st:DevelopmentClass>
                <st:StandQuality>31</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:Accessibility>4</st:Accessibility>
                <st:SilvicultureRestriction>9</st:SilvicultureRestriction>
                <st:StandBasicDataDate>2024-10-30</st:StandBasicDataDate>
                <st:Area>4.338</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">426789.3528323 7369069.88379838 426807.40088105 7369053.17791944 426848.17321383 7369017.65206531 426951.91445451 7368962.93394787 426952.75595309 7368965.31926206 426958.55642826 7368982.34259418 426902.61343806 7369011.7674705 426914.0418029 7369021.65026344 426938.73914534 7369043.33164855 426938.98018608 7369043.21638282 426939.50042523 7369043.66627912 427064.42069662 7368987.81655995 427139.12749815 7369000.63378201 427200.68300914 7369031.30367385 427200.68303258 7369031.30659066 427200.79738356 7369045.53385059 427201.987274 7369055.05161518 427202.44736893 7369059.82621252 427203.24289313 7369064.37196432 427202.9505717 7369064.46394282 426953.39518892 7369142.99951071 426945.09469894 7369145.63608712 426943.22784879 7369146.22907945 426839.03078532 7369141.71925249 426816.42855531 7369147.54938008 426816.37329877 7369147.56363347 426812.79190209 7369137.18915988 426808.14978867 7369123.9646608 426800.65550456 7369102.61512966 426789.3528323 7369069.88379838</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-10-25">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358311143">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>15</tst:Age>
                      <tst:BasalArea>13</tst:BasalArea>
                      <tst:MeanDiameter>5</tst:MeanDiameter>
                      <tst:MeanHeight>5</tst:MeanHeight>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358671811">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>15</tst:Age>
                      <tst:BasalArea>13</tst:BasalArea>
                      <tst:StemCount>8983</tst:StemCount>
                      <tst:MeanDiameter>5</tst:MeanDiameter>
                      <tst:MeanHeight>5</tst:MeanHeight>
                      <tst:Volume>31.9</tst:Volume>
                      <tst:SawLogPercent>0</tst:SawLogPercent>
                      <tst:SawLogVolume>0</tst:SawLogVolume>
                      <tst:PulpWoodVolume>0</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>1.5</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>15</tss:MeanAge>
                    <tss:BasalArea>13</tss:BasalArea>
                    <tss:StemCount>8983</tss:StemCount>
                    <tss:MeanDiameter>5</tss:MeanDiameter>
                    <tss:MeanHeight>5</tss:MeanHeight>
                    <tss:Volume>31.9</tss:Volume>
                    <tss:SawLogVolume>0</tss:SawLogVolume>
                    <tss:PulpWoodVolume>0</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>1.5</tss:VolumeGrowth>
                    <tss:Value>0</tss:Value>
                    <tss:ValueGrowthPercent>0</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>02</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>1</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
            </st:Stand>
            <st:Stand id="1800949" realEstateId="25476" parcelId="">
              <st:StandBasicData>
                <st:StandNumber>1</st:StandNumber>
                <st:MainGroup>1</st:MainGroup>
                <st:SubGroup>1</st:SubGroup>
                <st:FertilityClass>4</st:FertilityClass>
                <st:SoilType>10</st:SoilType>
                <st:DrainageState>1</st:DrainageState>
                <st:DevelopmentClass>04</st:DevelopmentClass>
                <st:StandQuality>10</st:StandQuality>
                <st:MainTreeSpecies>1</st:MainTreeSpecies>
                <st:Accessibility>2</st:Accessibility>
                <st:StandBasicDataDate>2024-11-04</st:StandBasicDataDate>
                <st:Area>13.1933</st:Area>
                <gdt:PolygonGeometry>
                  <gml:polygonProperty xlink:type="simple"><gml:Polygon srsName="EPSG:3067"><gml:exterior><gml:LinearRing><gml:posList srsDimension="2">426702.92302684 7369175.02152707 426763.06704189 7369158.9000987 426816.43840689 7369147.5774457 426816.42855531 7369147.54938008 426839.03078532 7369141.71925249 426943.22784879 7369146.22907945 426945.09469894 7369145.63608712 426945.16433385 7369145.63993402 426953.39518892 7369142.99951071 427202.9505717 7369064.46394282 427246.02911174 7369055.04883425 427309.70766763 7369057.40046394 427311.13571151 7369057.44851082 427362.13487171 7369053.93317685 427421.98393391 7369061.50033201 427515.48724603 7369021.72626124 427534.07649381 7369037.71525095 427546.38426755 7369048.2903124 427553.35927255 7369055.6374128 427566.9722214 7369069.16918364 427453.63262178 7369130.9957098 427250.43639062 7369231.28451584 426984.62787375 7369312.22441507 426738.29378743 7369373.15255448 426702.92302686 7369175.02152716 426702.92302684 7369175.02152707</gml:posList></gml:LinearRing></gml:exterior></gml:Polygon></gml:polygonProperty>
                </gdt:PolygonGeometry>
              </st:StandBasicData>
              <ts:TreeStandData>
                <ts:TreeStandDataDate type="1" date="2024-11-04">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358311232">
                      <tst:StratumNumber>4</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>95</tst:Age>
                      <tst:BasalArea>2.67</tst:BasalArea>
                      <tst:MeanDiameter>25.18</tst:MeanDiameter>
                      <tst:MeanHeight>18.56</tst:MeanHeight>
                      <tst:SawLogPercent>76</tst:SawLogPercent>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358311233">
                      <tst:StratumNumber>1</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>93</tst:Age>
                      <tst:BasalArea>13</tst:BasalArea>
                      <tst:MeanDiameter>21.95</tst:MeanDiameter>
                      <tst:MeanHeight>18.41</tst:MeanHeight>
                      <tst:SawLogPercent>77</tst:SawLogPercent>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358311234">
                      <tst:StratumNumber>2</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>88</tst:Age>
                      <tst:BasalArea>1</tst:BasalArea>
                      <tst:MeanDiameter>20.67</tst:MeanDiameter>
                      <tst:MeanHeight>16.33</tst:MeanHeight>
                      <tst:SawLogPercent>52</tst:SawLogPercent>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                </ts:TreeStandDataDate>
                <ts:TreeStandDataDate type="2" date="2024-08-31">
                  <tst:TreeStrata>
                    <tst:TreeStratum id="358978952">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>2</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>95</tst:Age>
                      <tst:BasalArea>2.7</tst:BasalArea>
                      <tst:StemCount>64</tst:StemCount>
                      <tst:MeanDiameter>25.2</tst:MeanDiameter>
                      <tst:MeanHeight>18.6</tst:MeanHeight>
                      <tst:Volume>24.8</tst:Volume>
                      <tst:SawLogPercent>76</tst:SawLogPercent>
                      <tst:SawLogVolume>18.4</tst:SawLogVolume>
                      <tst:PulpWoodVolume>5.8</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.7</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358978953">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>1</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>93</tst:Age>
                      <tst:BasalArea>13</tst:BasalArea>
                      <tst:StemCount>372</tst:StemCount>
                      <tst:MeanDiameter>21.9</tst:MeanDiameter>
                      <tst:MeanHeight>18.4</tst:MeanHeight>
                      <tst:Volume>113.9</tst:Volume>
                      <tst:SawLogPercent>77</tst:SawLogPercent>
                      <tst:SawLogVolume>86.5</tst:SawLogVolume>
                      <tst:PulpWoodVolume>25.8</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>3</tst:VolumeGrowth>
                    </tst:TreeStratum>
                    <tst:TreeStratum id="358978954">
                      <tst:StratumNumber>0</tst:StratumNumber>
                      <tst:TreeSpecies>4</tst:TreeSpecies>
                      <tst:Storey>1</tst:Storey>
                      <tst:Age>88</tst:Age>
                      <tst:BasalArea>1</tst:BasalArea>
                      <tst:StemCount>36</tst:StemCount>
                      <tst:MeanDiameter>20.7</tst:MeanDiameter>
                      <tst:MeanHeight>16.3</tst:MeanHeight>
                      <tst:Volume>7.3</tst:Volume>
                      <tst:SawLogPercent>52</tst:SawLogPercent>
                      <tst:SawLogVolume>3.7</tst:SawLogVolume>
                      <tst:PulpWoodVolume>3.5</tst:PulpWoodVolume>
                      <tst:VolumeGrowth>0.1</tst:VolumeGrowth>
                    </tst:TreeStratum>
                  </tst:TreeStrata>
                  <tss:TreeStandSummary>
                    <tss:MeanAge>93</tss:MeanAge>
                    <tss:BasalArea>16.7</tss:BasalArea>
                    <tss:StemCount>473</tss:StemCount>
                    <tss:MeanDiameter>22.4</tss:MeanDiameter>
                    <tss:MeanHeight>18.3</tss:MeanHeight>
                    <tss:Volume>146.1</tss:Volume>
                    <tss:SawLogVolume>108.7</tss:SawLogVolume>
                    <tss:PulpWoodVolume>35.1</tss:PulpWoodVolume>
                    <tss:VolumeGrowth>3.8</tss:VolumeGrowth>
                    <tss:Value>5024</tss:Value>
                    <tss:ValueGrowthPercent>2.9</tss:ValueGrowthPercent>
                    <tss:DevelopmentClass>04</tss:DevelopmentClass>
                    <tss:MainTreeSpecies>1</tss:MainTreeSpecies>
                  </tss:TreeStandSummary>
                </ts:TreeStandDataDate>
              </ts:TreeStandData>
              <op:Operations>
                <op:Operation id="33787495" mainType="1">
                  <op:OperationType>11</op:OperationType>
                  <op:ProposalData>
                    <op:ProposalType>1</op:ProposalType>
                    <op:ProposalYear>2025</op:ProposalYear>
                  </op:ProposalData>
                  <op:OperationInfo>Monsulaskelma</op:OperationInfo>
                  <op:Specifications>
                    <op:Specification id="121145">
                      <op:SpecificationCode>105</op:SpecificationCode>
                    </op:Specification>
                    <op:Specification id="121146">
                      <op:SpecificationCode>11003</op:SpecificationCode>
                    </op:Specification>
                    <op:Specification id="121147">
                      <op:SpecificationCode>11008</op:SpecificationCode>
                    </op:Specification>
                  </op:Specifications>
                  <op:Cutting>
                    <op:CuttingVolume>11.5</op:CuttingVolume>
                    <op:Assortments>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>2.2</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>4</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>1.6</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>1</op:StemType>
                        <op:AssortmentVolume>1.3</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>2</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>1.5</op:AssortmentVolume>
                      </op:Assortment>
                      <op:Assortment>
                        <op:TreeSpecies>1</op:TreeSpecies>
                        <op:StemType>5</op:StemType>
                        <op:AssortmentVolume>4.9</op:AssortmentVolume>
                      </op:Assortment>
                    </op:Assortments>
                  </op:Cutting>
                </op:Operation>
              </op:Operations>
              <st:SpecialFeatures>
                <st:SpecialFeature>
                  <sf:FeatureCode>11011</sf:FeatureCode>
                </st:SpecialFeature>
              </st:SpecialFeatures>
            </st:Stand>
          </st:Stands>
        </re:Parcel>
      </re:Parcels>
    </re:RealEstate>
  </re:RealEstates>
</ForestPropertyData>