From 2c88f22f8e79c54120c642c000063a5f607a544f Mon Sep 17 00:00:00 2001 From: Simon Martens Date: Tue, 12 Sep 2023 01:59:52 +0200 Subject: [PATCH] Deployment v1 --- HaWeb/Controllers/APIController.cs | 85 +- HaWeb/Controllers/BriefeContoller.cs | 6 +- HaWeb/Controllers/XMLStateController.cs | 13 +- HaWeb/FileHelpers/ConfigurationMonitor.cs | 4 +- HaWeb/FileHelpers/IXMLFileProvider.cs | 6 +- HaWeb/FileHelpers/XMLFileHelpers.cs | 16 +- HaWeb/FileHelpers/XMLFileProvider.cs | 122 +- HaWeb/HaWeb.sln | 14 +- HaWeb/Models/FileModel.cs | 4 +- HaWeb/Models/GitState.cs | 9 + HaWeb/Models/SyntaxCheckModel.cs | 9 +- HaWeb/Models/XMLParsingState.cs | 13 + HaWeb/Models/XMLStateViewModel.cs | 9 +- HaWeb/Program.cs | 9 +- HaWeb/README.md | 39 +- HaWeb/Settings/Features.cs | 10 +- HaWeb/Tailwind.csproj.old | 30 - HaWeb/Views/Admin/Dynamic/XMLState.cshtml | 173 +- HaWeb/Views/HKB/Dynamic/Index.cshtml | 4 +- HaWeb/Views/Shared/_HKBLayout.cshtml | 3 + HaWeb/Views/Shared/_Javascript.cshtml | 5 +- HaWeb/Views/Shared/_Notifications.cshtml | 9 + HaWeb/WebSockets/WebSocketMiddleware.cs | 126 + HaWeb/XMLParser/IXMLInteractionService.cs | 21 +- HaWeb/XMLParser/XMLInteractionService.cs | 92 +- HaWeb/appsettings.Development.json | 8 - HaWeb/appsettings.json | 13 +- HaWeb/uniqenamesattributes.txt | 357 - HaWeb/uniqenamesattributesvalues.txt | 38262 -------------------- HaWeb/wwwroot/css/index.css | 6 +- HaWeb/wwwroot/css/notifications.css | 84 + HaWeb/wwwroot/css/output.css | 2 +- HaWeb/wwwroot/css/scrollbutton.css | 2 +- HaWeb/wwwroot/css/shared.css | 2 +- HaWeb/wwwroot/css/site.css | 3 +- HaWeb/wwwroot/css/upload.css | 203 - HaWeb/wwwroot/css/xmlstate.css | 180 + HaWeb/wwwroot/js/filelistform.js | 109 +- HaWeb/wwwroot/js/scrollbutton.js | 3 +- HaWeb/wwwroot/js/websocket.js | 157 + 40 files changed, 1093 insertions(+), 39129 deletions(-) create mode 100644 HaWeb/Models/GitState.cs create mode 100644 HaWeb/Models/XMLParsingState.cs delete mode 100644 HaWeb/Tailwind.csproj.old create mode 100644 HaWeb/Views/Shared/_Notifications.cshtml create mode 100644 HaWeb/WebSockets/WebSocketMiddleware.cs delete mode 100644 HaWeb/appsettings.Development.json delete mode 100644 HaWeb/uniqenamesattributes.txt delete mode 100644 HaWeb/uniqenamesattributesvalues.txt create mode 100644 HaWeb/wwwroot/css/notifications.css delete mode 100644 HaWeb/wwwroot/css/upload.css create mode 100644 HaWeb/wwwroot/css/xmlstate.css create mode 100644 HaWeb/wwwroot/js/websocket.js diff --git a/HaWeb/Controllers/APIController.cs b/HaWeb/Controllers/APIController.cs index 31b0b97..2e14c7e 100644 --- a/HaWeb/Controllers/APIController.cs +++ b/HaWeb/Controllers/APIController.cs @@ -19,88 +19,50 @@ using System.Runtime.InteropServices; using Microsoft.AspNetCore.Http.Features; using System.Text; +public class FileListForm { + public string file { get; set; } + public string __RequestVerificationToken { get; set; } +} + // Controlling all the API-Endpoints [FeatureGate(Features.AdminService)] +[ApiController] public class APIController : Controller { // DI - private IHaDocumentWrappper _lib; + private readonly IHaDocumentWrappper _lib; private readonly IXMLFileProvider _xmlProvider; - + private readonly IXMLInteractionService _xmlService; + // Options private static readonly FormOptions _defaultFormOptions = new FormOptions(); - public APIController(IHaDocumentWrappper lib, IXMLFileProvider xmlProvider) { + public APIController(IHaDocumentWrappper lib, IXMLInteractionService xmlService, IXMLFileProvider xmlProvider) { _lib = lib; _xmlProvider = xmlProvider; + _xmlService = xmlService; } + + // TODO: this is trash [HttpPost] [Route("API/SetInProduction")] - [DisableFormValueModelBinding] [ValidateAntiForgeryToken] [FeatureGate(Features.LocalPublishService, Features.AdminService)] - public async Task SetInProduction() { + public async Task SetInProduction([FromForm] FileListForm _form) { var hF = _xmlProvider.GetHamannFiles(); if (hF == null) { ModelState.AddModelError("Error", "There are no Hamman.xml files available."); return BadRequest(ModelState); } - if (!MultipartRequestHelper.IsMultipartContentType(Request.ContentType)) { - ModelState.AddModelError("Error", $"Wrong / No Content Type on the Request"); - return BadRequest(ModelState); - } - - // Same as above, check Upload() - string? filename = null; - var boundary = MultipartRequestHelper.GetBoundary(MediaTypeHeaderValue.Parse(Request.ContentType), _defaultFormOptions.MultipartBoundaryLengthLimit); - var reader = new MultipartReader(boundary, HttpContext.Request.Body); - MultipartSection? section = null; - try { - section = await reader.ReadNextSectionAsync(); - } catch (Exception ex) { - ModelState.AddModelError("Error", "The Request is bad: " + ex.Message); - return BadRequest(ModelState); - } - - while (section != null) { - var hasContentDispositionHeader = ContentDispositionHeaderValue.TryParse(section.ContentDisposition, out var contentDisposition); - - if (contentDisposition != null && contentDisposition.Name == "__RequestVerificationToken") { - try { - section = await reader.ReadNextSectionAsync(); - } catch (Exception ex) { - ModelState.AddModelError("Error", "The Request is bad: " + ex.Message); - } - continue; - } - - if (hasContentDispositionHeader && contentDisposition != null) { - if (!MultipartRequestHelper.HasFormDataContentDisposition(contentDisposition)) { - ModelState.AddModelError("Error", $"Wrong Content-Dispostion Headers in Multipart Document"); - return BadRequest(ModelState); - } - - filename = XMLFileHelpers.StreamToString(section.Body, ModelState); - if (!ModelState.IsValid) return BadRequest(ModelState); - } - - try { - section = await reader.ReadNextSectionAsync(); - } catch (Exception ex) { - ModelState.AddModelError("Error", "The Request is bad: " + ex.Message); - return BadRequest(ModelState); - } - } - - if (filename == null) { + if (_form == null || String.IsNullOrWhiteSpace(_form.file)) { ModelState.AddModelError("Error", "Kein Dateiname."); return BadRequest(ModelState); } - var newFile = hF.Where(x => x.Name == filename); + var newFile = hF.Where(x => x.Name == _form.file); if (newFile == null || !newFile.Any()) { ModelState.AddModelError("Error", "Versuch, auf eine unverfügbare Datei zuzugreifen."); return BadRequest(ModelState); @@ -110,4 +72,19 @@ public class APIController : Controller { if (!ModelState.IsValid) return BadRequest(ModelState); return Created("/", newFile.First()); } + + [HttpGet] + [Route("API/SyntaxCheck")] + // [ValidateAntiForgeryToken] + [DisableFormValueModelBinding] + [FeatureGate(Features.SyntaxCheck, Features.AdminService)] + public ActionResult?> GetSyntaxCheck(string? id) { + var SCCache = _xmlService.GetSCCache(); + if (_xmlProvider.HasChanged() || SCCache == null) { + var commit = _xmlProvider.GetGitState(); + SCCache = _xmlService.Test(_xmlService.GetState(), commit != null ? commit.Commit : string.Empty); + _xmlService.SetSCCache(SCCache); + } + return Ok(SCCache); + } } \ No newline at end of file diff --git a/HaWeb/Controllers/BriefeContoller.cs b/HaWeb/Controllers/BriefeContoller.cs index e03b0f0..d971e74 100644 --- a/HaWeb/Controllers/BriefeContoller.cs +++ b/HaWeb/Controllers/BriefeContoller.cs @@ -185,11 +185,11 @@ public class Briefecontroller : Controller { foreach (var str in strlist) { if (str != strlist.First()) if (str == strlist.Last()) - res += " und " + HTMLHelpers.TagHelpers.CreateElement("a", "", "/HKB/Person/" + str.Index) + str.Name + HTMLHelpers.TagHelpers.CreateEndElement("a"); + res += " und " + (str.Index == "1" ? "" : HTMLHelpers.TagHelpers.CreateElement("a", "", "/HKB/Person/" + str.Index)) + str.Name + (str.Index == "1" ? "" : HTMLHelpers.TagHelpers.CreateEndElement("a")); else - res += ", " + HTMLHelpers.TagHelpers.CreateElement("a", "", "/HKB/Person/" + str.Index) + str.Name + HTMLHelpers.TagHelpers.CreateEndElement("a"); + res += ", " + (str.Index == "1" ? "" :HTMLHelpers.TagHelpers.CreateElement("a", "", "/HKB/Person/" + str.Index)) + str.Name + (str.Index == "1" ? "" : HTMLHelpers.TagHelpers.CreateEndElement("a")); else - res += HTMLHelpers.TagHelpers.CreateElement("a", "", "/HKB/Person/" + str.Index) + str.Name + HTMLHelpers.TagHelpers.CreateEndElement("a"); + res += (str.Index == "1" ? "" : HTMLHelpers.TagHelpers.CreateElement("a", "", "/HKB/Person/" + str.Index)) + str.Name + (str.Index == "1" ? "" : HTMLHelpers.TagHelpers.CreateEndElement("a")); } return res; } diff --git a/HaWeb/Controllers/XMLStateController.cs b/HaWeb/Controllers/XMLStateController.cs index 4effd7b..ef9cb91 100644 --- a/HaWeb/Controllers/XMLStateController.cs +++ b/HaWeb/Controllers/XMLStateController.cs @@ -25,18 +25,15 @@ public class XMLStateController : Controller { [GenerateAntiforgeryTokenCookie] public IActionResult Index() { var library = _lib.GetLibrary(); - var roots = _xmlService.GetRootsList(); - if (roots == null) return error404(); - var hF = _xmlProvider.GetHamannFiles()?.OrderByDescending(x => x.LastModified).ToList(); - var mF = _xmlService.GetManagedFiles(); - var gD = _xmlProvider.GetGitData(); + var mF = _xmlService.GetState() == null ? null : _xmlService.GetState()!.ManagedFiles; + var gD = _xmlProvider.GetGitState(); var activeF = _lib.GetActiveFile(); - var vS = _xmlService.GetValidState(); + var vS = _xmlService.GetState() == null ? false : _xmlService.GetState()!.ValidState; - var model = new XMLStateViewModel("Dateiübersicht", gD, roots, hF, mF, vS) { + var model = new XMLStateViewModel("Dateiübersicht", gD, hF, mF, vS) { ActiveFile = activeF, - SyntaxCheck = _xmlService.Test() + SyntaxCheck = _xmlService.GetSCCache(), }; return View("~/Views/Admin/Dynamic/XMLState.cshtml", model); } diff --git a/HaWeb/FileHelpers/ConfigurationMonitor.cs b/HaWeb/FileHelpers/ConfigurationMonitor.cs index a5ed77d..f741455 100644 --- a/HaWeb/FileHelpers/ConfigurationMonitor.cs +++ b/HaWeb/FileHelpers/ConfigurationMonitor.cs @@ -41,11 +41,11 @@ public class ConfigurationMonitor { _h = h; _timer = new(8000) { AutoReset = false }; _timer.Enabled = true; - _timer.Elapsed += OnChanged; + _timer.Elapsed += _OnChanged; } } - private void OnChanged(Object source, System.Timers.ElapsedEventArgs e) { + private void _OnChanged(Object source, System.Timers.ElapsedEventArgs e) { Console.WriteLine("Configuration changed (ConfigurationMonitor Class)"); using IServiceScope serviceScope = _serviceProvider.CreateScope(); IServiceProvider provider = serviceScope.ServiceProvider; diff --git a/HaWeb/FileHelpers/IXMLFileProvider.cs b/HaWeb/FileHelpers/IXMLFileProvider.cs index dae23ec..7a0a337 100644 --- a/HaWeb/FileHelpers/IXMLFileProvider.cs +++ b/HaWeb/FileHelpers/IXMLFileProvider.cs @@ -6,10 +6,14 @@ using HaWeb.Models; using Microsoft.AspNetCore.Mvc.ModelBinding; public interface IXMLFileProvider { + public event EventHandler FileChange; + public event EventHandler NewState; + public event EventHandler NewData; + public event EventHandler ConfigReload; public List? GetWorkingTreeFiles(); public IFileInfo? SaveHamannFile(XElement element, string basefilepath, ModelStateDictionary ModelState); public List? GetHamannFiles(); - public (DateTime PullTime, string Hash)? GetGitData(); + public GitState? GetGitState(); public void ParseConfiguration(IConfiguration config); public bool HasChanged(); public void DeleteHamannFile(string filename); diff --git a/HaWeb/FileHelpers/XMLFileHelpers.cs b/HaWeb/FileHelpers/XMLFileHelpers.cs index d6cf82b..2009fa3 100644 --- a/HaWeb/FileHelpers/XMLFileHelpers.cs +++ b/HaWeb/FileHelpers/XMLFileHelpers.cs @@ -80,26 +80,26 @@ public static class XMLFileHelpers { public static bool ProcessFile( Stream file, string fileName, - StringBuilder errorMessages, + Action logger, string[] permittedExtensions, long sizeLimit) { try { // Check if the file is empty or exceeds the size limit. if (file.Length == 0) { - errorMessages.AppendLine("Die Datei ist leer."); + logger("Die Datei ist leer."); return false; } else if (file.Length > sizeLimit) { var megabyteSizeLimit = sizeLimit / 1048576; - errorMessages.AppendLine($"Die Datei überschreitet das Größenlimit {megabyteSizeLimit:N1} MB."); + logger($"Die Datei überschreitet das Größenlimit {megabyteSizeLimit:N1} MB."); return false; } // Return orderly, if signature & extension okay - else return IsValidFileExtensionAndSignature(fileName, file, errorMessages, permittedExtensions); + else return IsValidFileExtensionAndSignature(fileName, file, logger, permittedExtensions); } catch (Exception ex) { - errorMessages.AppendLine($"The upload failed. Error: {ex.Message}"); + logger($"The upload failed. Error: {ex.Message}"); return false; } } @@ -118,13 +118,13 @@ public static class XMLFileHelpers { } } - private static bool IsValidFileExtensionAndSignature(string fileName, Stream data, StringBuilder errorMessages, string[] permittedExtensions) { + private static bool IsValidFileExtensionAndSignature(string fileName, Stream data, Action logger, string[] permittedExtensions) { if (string.IsNullOrEmpty(fileName) || data == null || data.Length == 0) return false; var ext = Path.GetExtension(fileName).ToLowerInvariant(); if (string.IsNullOrEmpty(ext) || !permittedExtensions.Contains(ext)) { - errorMessages.AppendLine("Dateiname endet nicht auf .xml"); + logger("Dateiname endet nicht auf .xml"); return false; } @@ -134,7 +134,7 @@ public static class XMLFileHelpers { var headerBytes = reader.ReadBytes(signatures.Max(m => m.Length)); if (!signatures.Any(signature => headerBytes.Take(signature.Length).SequenceEqual(signature))) { - errorMessages.AppendLine("Datei muss mit oder beginnen."); + logger("Datei muss mit oder beginnen."); return false; }; } diff --git a/HaWeb/FileHelpers/XMLFileProvider.cs b/HaWeb/FileHelpers/XMLFileProvider.cs index b67e602..a70b26c 100644 --- a/HaWeb/FileHelpers/XMLFileProvider.cs +++ b/HaWeb/FileHelpers/XMLFileProvider.cs @@ -7,6 +7,7 @@ using HaWeb.XMLTests; using System.Xml.Linq; using System.Runtime.InteropServices; using System.Diagnostics; +using Microsoft.Extensions.Primitives; // XMLProvider provides a wrapper around the available XML data on a FILE basis public class XMLFileProvider : IXMLFileProvider { @@ -16,13 +17,20 @@ public class XMLFileProvider : IXMLFileProvider { private IFileProvider _hamannFileProvider; private IFileProvider _bareRepositoryFileProvider; private IFileProvider _workingTreeFileProvider; + + public event EventHandler FileChange; + public event EventHandler ConfigReload; + public event EventHandler NewState; + public event EventHandler NewData; private string _Branch; + private string _URL; private List? _WorkingTreeFiles; private List? _HamannFiles; - private static (DateTime PullTime, string Hash)? _GitData; + private GitState? _GitState; + private System.Timers.Timer? _changeTokenTimer; // Startup (LAST) public XMLFileProvider(IXMLInteractionService xmlservice, IHaDocumentWrappper _lib, IConfiguration config) { @@ -31,6 +39,7 @@ public class XMLFileProvider : IXMLFileProvider { _XMLService = xmlservice; _Branch = config.GetValue("RepositoryBranch"); + _URL = config.GetValue("RepositoryURL"); if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) { _hamannFileProvider = new PhysicalFileProvider(config.GetValue("HamannFileStoreWindows")); _bareRepositoryFileProvider = new PhysicalFileProvider(config.GetValue("BareRepositoryPathWindows")); @@ -45,10 +54,12 @@ public class XMLFileProvider : IXMLFileProvider { // Create File Lists; Here and in xmlservice, which does preliminary checking Scan(); if (_WorkingTreeFiles != null && _WorkingTreeFiles.Any()) { - xmlservice.Collect(_WorkingTreeFiles); + var state = xmlservice.Collect(_WorkingTreeFiles, xmlservice.GetRootDefs()); + xmlservice.SetState(state); } _HamannFiles = _ScanHamannFiles(); + _RegisterChangeToken(); // Check if hamann file already is current working tree status // -> YES: Load up the file via _lib.SetLibrary(); if (_IsAlreadyParsed()) { @@ -57,7 +68,7 @@ public class XMLFileProvider : IXMLFileProvider { } // -> NO: Try to create a new file - var created = _XMLService.TryCreate(); + var created = _XMLService.TryCreate(_XMLService.GetState()); if (created != null) { var file = SaveHamannFile(created, _hamannFileProvider.GetFileInfo("./").PhysicalPath, null); if (file != null) { @@ -87,10 +98,11 @@ public class XMLFileProvider : IXMLFileProvider { Scan(); // Reset XMLInteractionService if (_WorkingTreeFiles != null && _WorkingTreeFiles.Any()) { - _XMLService.Collect(_WorkingTreeFiles); + var state = _XMLService.Collect(_WorkingTreeFiles, _XMLService.GetRootDefs()); + _XMLService.SetState(state); } _HamannFiles = _ScanHamannFiles(); - + _XMLService.SetSCCache(null); if (_HamannFiles != null && _HamannFiles.Select(x => x.Name).Contains(_Lib.GetActiveFile().Name)) { _Lib.SetLibrary(_Lib.GetActiveFile(), null, null); if (_Lib.GetLibrary() != null) return; @@ -105,7 +117,7 @@ public class XMLFileProvider : IXMLFileProvider { } // -> NO: Try to create a new file - var created = _XMLService.TryCreate(); + var created = _XMLService.TryCreate(_XMLService.GetState()); if (created != null) { var file = SaveHamannFile(created, _hamannFileProvider.GetFileInfo("./").PhysicalPath, null); if (file != null) { @@ -132,7 +144,7 @@ public class XMLFileProvider : IXMLFileProvider { // Getters and Setters public List? GetWorkingTreeFiles() => _WorkingTreeFiles; - public (DateTime PullTime, string Hash)? GetGitData() => _GitData; + public GitState? GetGitState() => _GitState; public List? GetHamannFiles() => this._HamannFiles; @@ -148,12 +160,12 @@ public class XMLFileProvider : IXMLFileProvider { public void Scan() { _WorkingTreeFiles = _ScanWorkingTreeFiles(); - _GitData = _ScanGitData(); + _GitState = _ScanGitData(); } public IFileInfo? SaveHamannFile(XElement element, string basefilepath, ModelStateDictionary? ModelState) { - if (!_GitData.HasValue) return null; - var filename = "hamann_" + _GitData.Value.PullTime.Year + "-" + _GitData.Value.PullTime.Month + "-" + _GitData.Value.PullTime.Day + "_" + _GitData.Value.PullTime.Hour + "-" + _GitData.Value.PullTime.Minute + "." + _GitData.Value.Hash.Substring(0,7) + ".xml"; + if (_GitState == null) return null; + var filename = "hamann_" + _GitState.PullTime.Year + "-" + _GitState.PullTime.Month + "-" + _GitState.PullTime.Day + "_" + _GitState.PullTime.Hour + "-" + _GitState.PullTime.Minute + "." + _GitState.Commit.Substring(0,7) + ".xml"; var path = Path.Combine(basefilepath, filename); try { @@ -179,22 +191,29 @@ public class XMLFileProvider : IXMLFileProvider { } public bool HasChanged() { - if (!_GitData.HasValue) return true; + if (_GitState == null) return true; var current = _ScanGitData(); - if (current.Item2 != _GitData.Value.Hash) { - _GitData = current; + if (current != null && !String.Equals(current.Commit, _GitState.Commit)) { + _GitState = current; return true; } return false; } - private (DateTime, string) _ScanGitData() { + private GitState? _ScanGitData() { var head = _bareRepositoryFileProvider.GetFileInfo("refs/heads/" + _Branch); - return (head.LastModified.DateTime, File.ReadAllText(head.PhysicalPath)); - } - - private void _RegisterChangeCallbacks() { - var cT = _bareRepositoryFileProvider.Watch("refs/heads/" + _Branch); + // TODO: Failsave reading from FIle + try { + return new GitState { + URL = _URL, + Branch = _Branch, + PullTime = head.LastModified.ToLocalTime().DateTime, + Commit = File.ReadAllText(head.PhysicalPath).Trim() + }; + } + catch { + return null; + } } // Gets all XML Files @@ -216,9 +235,70 @@ public class XMLFileProvider : IXMLFileProvider { } private bool _IsAlreadyParsed() { - if (_HamannFiles == null || !_HamannFiles.Any() || !_GitData.HasValue) return false; + if (_HamannFiles == null || !_HamannFiles.Any() || _GitState == null) return false; var fhash = _GetHashFromHamannFilename(_HamannFiles.First().Name); - var ghash = _GitData.Value.Hash.Substring(0,7); + var ghash = _GitState.Commit.Substring(0,7); return fhash == ghash; } + + private void _RegisterChangeToken() { + ChangeToken.OnChange( + () => _bareRepositoryFileProvider.Watch("refs/heads/" + _Branch), + async (state) => await this._InvokeChanged(state), + this._ScanGitData() + ); + } + + private async Task _InvokeChanged(GitState? gitdata) { + if (_changeTokenTimer != null) return; + Console.WriteLine("FILECHANGE DETECTED, RELOAD"); + Scan(); + + OnFileChange(_ScanGitData()); + // Reset XMLInteractionService + if (_WorkingTreeFiles != null && _WorkingTreeFiles.Any()) { + var state = _XMLService.Collect(_WorkingTreeFiles, _XMLService.GetRootDefs()); + _XMLService.SetState(state); + OnNewState(state); + } + + // -> Try to create a new file + var created = _XMLService.TryCreate(_XMLService.GetState()); + if (created != null) { + var file = SaveHamannFile(created, _hamannFileProvider.GetFileInfo("./").PhysicalPath, null); + if (file != null) { + var ret = _Lib.SetLibrary(file, created.Document, null); + if (ret != null) OnNewData(); + } + } + + _XMLService.SetSCCache(null); + _GitState = _ScanGitData(); + _changeTokenTimer = new(5000) { AutoReset = false, Enabled = true }; + _changeTokenTimer.Elapsed += this._OnElapsed; + } + + private void _OnElapsed(Object source, System.Timers.ElapsedEventArgs e) { + _changeTokenTimer = null; + } + + protected virtual void OnFileChange(GitState? state) { + EventHandler eh = FileChange; + eh?.Invoke(this, state); + } + + protected virtual void OnNewState(XMLParsingState? state) { + EventHandler eh = NewState; + eh?.Invoke(this, state); + } + + protected virtual void OnConfigReload() { + EventHandler eh = ConfigReload; + eh?.Invoke(this, System.EventArgs.Empty); + } + + protected virtual void OnNewData() { + EventHandler eh = NewData; + eh?.Invoke(this, System.EventArgs.Empty); + } } \ No newline at end of file diff --git a/HaWeb/HaWeb.sln b/HaWeb/HaWeb.sln index 882acbe..8ed94a2 100644 --- a/HaWeb/HaWeb.sln +++ b/HaWeb/HaWeb.sln @@ -1,9 +1,9 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 -VisualStudioVersion = 17.5.001.0 +VisualStudioVersion = 17.5.002.0 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HaWeb", "HaWeb.csproj", "{3FDCF678-C8B9-410D-8229-BEB69195D27C}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HaWeb", "HaWeb.csproj", "{28D3D672-B38C-4E7F-B4A1-B9E7A930339E}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -11,15 +11,15 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {3FDCF678-C8B9-410D-8229-BEB69195D27C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {3FDCF678-C8B9-410D-8229-BEB69195D27C}.Debug|Any CPU.Build.0 = Debug|Any CPU - {3FDCF678-C8B9-410D-8229-BEB69195D27C}.Release|Any CPU.ActiveCfg = Release|Any CPU - {3FDCF678-C8B9-410D-8229-BEB69195D27C}.Release|Any CPU.Build.0 = Release|Any CPU + {28D3D672-B38C-4E7F-B4A1-B9E7A930339E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {28D3D672-B38C-4E7F-B4A1-B9E7A930339E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {28D3D672-B38C-4E7F-B4A1-B9E7A930339E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {28D3D672-B38C-4E7F-B4A1-B9E7A930339E}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {7ED50D02-358C-467B-AB41-CF0F0D6D1627} + SolutionGuid = {E7A01088-1E90-40A0-B7C3-248918D6FFB2} EndGlobalSection EndGlobal diff --git a/HaWeb/Models/FileModel.cs b/HaWeb/Models/FileModel.cs index c5a00f4..a20009b 100644 --- a/HaWeb/Models/FileModel.cs +++ b/HaWeb/Models/FileModel.cs @@ -27,9 +27,7 @@ public class FileModel { public void Log(string msg) { if (_log == null) _log = new StringBuilder(); - var prefix = DateTime.Now.ToShortTimeString() + " "; - if (File != null) prefix += File.Name + ": "; - _log.AppendLine(prefix + msg); + _log.AppendLine(msg); } public void ResetLog() { diff --git a/HaWeb/Models/GitState.cs b/HaWeb/Models/GitState.cs new file mode 100644 index 0000000..3f63e78 --- /dev/null +++ b/HaWeb/Models/GitState.cs @@ -0,0 +1,9 @@ +using HaWeb.Models; + + +public class GitState { + public string Commit { get; set; } + public string Branch { get; set; } + public string URL { get; set; } + public DateTime PullTime { get; set; } +} \ No newline at end of file diff --git a/HaWeb/Models/SyntaxCheckModel.cs b/HaWeb/Models/SyntaxCheckModel.cs index 0ffc053..a10f7dd 100644 --- a/HaWeb/Models/SyntaxCheckModel.cs +++ b/HaWeb/Models/SyntaxCheckModel.cs @@ -2,10 +2,12 @@ namespace HaWeb.Models; public class SyntaxCheckModel { public string File { get; private set; } + public string Commit { get; private set; } public List? Errors { get; private set; } - public SyntaxCheckModel(string file) { + public SyntaxCheckModel(string file, string commithash) { File = file; + Commit = commithash; } public void Log(int? line, int? column, string msg) { @@ -15,6 +17,11 @@ public class SyntaxCheckModel { Errors.Add(new SyntaxError(line, column, msg)); } + public void SortErrors() { + if (Errors != null) + Errors = Errors.OrderBy(x => x.Line).ToList(); + } + public void ResetLog() { Errors = null; } diff --git a/HaWeb/Models/XMLParsingState.cs b/HaWeb/Models/XMLParsingState.cs new file mode 100644 index 0000000..1ce40b1 --- /dev/null +++ b/HaWeb/Models/XMLParsingState.cs @@ -0,0 +1,13 @@ +namespace HaWeb.Models; + +public class XMLParsingState : EventArgs { + internal List? ManagedFiles { get; set; } + internal Dictionary? Loaded { get; set; } + internal bool ValidState { get; set; } + + public XMLParsingState() { + ManagedFiles = new(); + Loaded = new(); + ValidState = false; + } +} \ No newline at end of file diff --git a/HaWeb/Models/XMLStateViewModel.cs b/HaWeb/Models/XMLStateViewModel.cs index c653b6e..1dea67b 100644 --- a/HaWeb/Models/XMLStateViewModel.cs +++ b/HaWeb/Models/XMLStateViewModel.cs @@ -7,12 +7,9 @@ public class XMLStateViewModel { // Titel der Seite / Aktiver Präfix public string ActiveTitle { get; private set; } public IFileInfo? ActiveFile { get; set; } - public (DateTime PullTime, string Hash)? GitData { get; private set; } + public GitState? GitData { get; private set; } public bool ValidState { get; private set; } - // Verfügbare Datei-Typen - public List? AvailableRoots { get; private set; } - // Akuell geladene Dateien public List? ManagedFiles { get; private set; } @@ -24,13 +21,11 @@ public class XMLStateViewModel { public XMLStateViewModel( string title, - (DateTime PullTime, string Hash)? gitData, - List? roots, + GitState? gitData, List? hamannFiles, List? managedFiles, bool validState) { ActiveTitle = title; - AvailableRoots = roots; HamannFiles = hamannFiles; ManagedFiles = managedFiles; GitData = gitData; diff --git a/HaWeb/Program.cs b/HaWeb/Program.cs index 2745755..58d245a 100644 --- a/HaWeb/Program.cs +++ b/HaWeb/Program.cs @@ -35,11 +35,13 @@ var XMLFP = new XMLFileProvider(XMLIS, hdW, builder.Configuration); // Add services to the container. builder.Services.AddControllersWithViews(); builder.Services.AddHttpContextAccessor(); -builder.Services.AddTransient(); builder.Services.AddSingleton((_) => tS); builder.Services.AddSingleton((_) => XMLIS); builder.Services.AddSingleton((_) => hdW); builder.Services.AddSingleton(_ => XMLFP); +builder.Services.AddSingleton(); +builder.Services.AddTransient(); + // builder.Services.AddSingleton(); // builder.Services.AddHostedService(); // builder.Services.AddSingleton(ctx => @@ -60,6 +62,11 @@ ChangeToken.OnChange( app.Environment ); +app.UseWebSockets( new WebSocketOptions { + KeepAliveInterval = TimeSpan.FromMinutes(180) +}); +app.UseMiddleware(); + // Configure the HTTP request pipeline. if (!app.Environment.IsDevelopment()) { diff --git a/HaWeb/README.md b/HaWeb/README.md index 5e1c3f3..0dd78d2 100644 --- a/HaWeb/README.md +++ b/HaWeb/README.md @@ -27,7 +27,9 @@ Run `dotnet watch run` and -`npm run watch` +`npm run watch` or + +`bun run watch` in seperate terminals to watch for specific file changes in .css / .js / .cshtml / .json or .cs files and to rebuild the css-Files and the app automatically on change. @@ -37,7 +39,7 @@ Recommended vscode plugins include the XML Tools, c#, Tailwind CSS IntelliSense ## Release -To build a release version for the current server, run: +To build a release version for the current server, build the css file, then run: `dotnet publish -a x64 --os win -c Release` @@ -99,4 +101,35 @@ KOmmentare verschobem 202 Anhang Known Bugs: - click event does not work in iOS -- rerender marginals on tab switch \ No newline at end of file +- rerender marginals on tab switch + + +GIT-UMBAU: + +- OPUS-Check briefe +- SYNTAX-Check +- ILIB +(- Searchables) + +Start: kein background service +Datei vom Admin-Panel laden: kein bacckground service +Datei ändert sich: background service + reload call on all clients +Konfiguration ändert sich: kein background service + +BACKGROUND SERVICE: +- FileWatch +- XMLInteractionService.Collect(List) +- XMLInteractionService.TryCreate() +- XMLFileProvider.SaveHamannFile(XElement element, string basefilepath, ModelStateDictionary? ModelState) + +BACKGROUND SERVICE WITH JSON OUTPUT: +- XMLTestService.Test(XMLInteractionService) + +KEIN BACKGROUND SERVICE: +- HaDocuemntWrapper.SetLibrary(IFileInfo? file, XDocument? doc, ModelStateDictionary? ModelState = null) +- XMLInteractionService.CreateSearchables(XDocument document) + +TASKS: +- Syntax Errors nicht mehr im FileModel loggen +- State für Collect() +- State für TryCreate() diff --git a/HaWeb/Settings/Features.cs b/HaWeb/Settings/Features.cs index 58e9b20..a27e5f0 100644 --- a/HaWeb/Settings/Features.cs +++ b/HaWeb/Settings/Features.cs @@ -3,12 +3,10 @@ namespace HaWeb; public static class Features { // If Admin Pages are reachable public const string AdminService = "AdminService"; - // If the Upload of files is possible, also syntaxcheck and crossreference check - public const string UploadService = "UploadService"; // If uploaded Files can be published locally public const string LocalPublishService = "LocalPublishService"; - // If this server can publish files remotely (e.g. www.hamann-ausgabe.de) - public const string RemotePublishService = "RemotePublishService"; - // If this server can accept files from a remote authenticated source - public const string RemotePublishSourceService = "RemotePublishSourceService"; + // If this Server can run a SyntaxCheck + public const string SyntaxCheck = "SyntaxCheck"; + // If this Server shows live notifications & reload + public const string Notifications = "Notifications"; } diff --git a/HaWeb/Tailwind.csproj.old b/HaWeb/Tailwind.csproj.old deleted file mode 100644 index aa4122b..0000000 --- a/HaWeb/Tailwind.csproj.old +++ /dev/null @@ -1,30 +0,0 @@ - - - net6.0 - True - enable - enable - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/HaWeb/Views/Admin/Dynamic/XMLState.cshtml b/HaWeb/Views/Admin/Dynamic/XMLState.cshtml index f827f4d..3c7bb47 100644 --- a/HaWeb/Views/Admin/Dynamic/XMLState.cshtml +++ b/HaWeb/Views/Admin/Dynamic/XMLState.cshtml @@ -5,57 +5,137 @@ ViewData["showCredits"] = "false"; } -
-
- - @* File Category Page File List *@ - @* - *@ + @* TODO: Headers
+

XML-Daten

+
*@ @if (Model.ManagedFiles != null && Model.ManagedFiles.Any()) { -
- - @foreach (var f in Model.ManagedFiles) { - - - - @if (f.IsValid) { - - - } else { - - - } - +
+
+
+ + @if (Model.GitData != null) { +
Commit @Model.GitData.Commit.Substring(0,7)
+
@Model.GitData.PullTime
+ } +
+
+ @Model.ManagedFiles.Count XML-Dateien +
+
+ + @* Syntax-Check cached? We provide the results. *@ + @if (Model.SyntaxCheck != null) { +
+ @foreach (var f in Model.ManagedFiles) { +
+ @if (Model.SyntaxCheck.ContainsKey(f.FileName) && Model.SyntaxCheck[f.FileName].Errors == null) { +
+
@f.FileName
+
@f.GetLastModified()
+
+ check-bold +
+
+ } else if (Model.SyntaxCheck.ContainsKey(f.FileName)) { + +
+
@f.FileName@f.GetLastModified()Valid! @f.GetLog() - @if (Model.SyntaxCheck[f.FileName] != null && Model.SyntaxCheck[f.FileName].Errors != null) { -
    - @foreach(var e in Model.SyntaxCheck[f.FileName]?.Errors) { -
  • @e.Line @e.Column @e.Message
  • - } -
- } -
@f.GetLog()
+ + + + + + @foreach (var e in Model.SyntaxCheck[f.FileName]!.Errors) { + + + + + + } +
ZeileSpalteFehler
@e.Line@e.Column@e.Message
+
+ } else { + +
+ @f.GetLog() +
+ } +
+ } +
+ } + + @* No SyntaxCheck? We provide the data + a button to load *@ + else { +
+ @foreach (var f in Model.ManagedFiles) { +
+ @if (f.IsValid) { +
+
@f.FileName
+
@f.GetLastModified()
+
+ check-bold +
+
+ } else { + + } +
+ @f.GetLog() +
+
+ } +
+ + @if (Model.ValidState) { +
+ +
} - +
+ } } else { -
+ +
Keine Dateien im Repository gefunden!
} - - - -
- Verfügbare Dateien + +
+
Auswahl verfügbarer Dateien
@if(Model.HamannFiles != null && Model.HamannFiles.Any()) { -
+
+ @if (!Model.ValidState) { +
+
Aktuelle Datei kann nicht geladen werden.
+
+
Fehler
+
+
+ } @foreach (var file in Model.HamannFiles) {
@if (Model.ActiveFile != null) { @@ -66,7 +146,7 @@
@file.Name
@if (Model.ActiveFile != null && file.Name == Model.ActiveFile!.Name) {
-
in Verwendung
+
geladen
} @* // TODO Metadata @@ -75,11 +155,6 @@
}
- @if (!Model.ValidState) { -
- Status nicht validiert! Daten können nicht auf der Webseite angezeigt werden! -
- }
\ No newline at end of file +
+ + \ No newline at end of file diff --git a/HaWeb/Views/HKB/Dynamic/Index.cshtml b/HaWeb/Views/HKB/Dynamic/Index.cshtml index 44d0310..5452cad 100644 --- a/HaWeb/Views/HKB/Dynamic/Index.cshtml +++ b/HaWeb/Views/HKB/Dynamic/Index.cshtml @@ -18,7 +18,7 @@
- Briefe von und an   + Briefwechsel mit   ← Alle Briefe
@Html.Raw(Model.PersonComment.ParsedComment) @@ -131,7 +131,7 @@
@if (Model.ActivePerson != null && Model.AvailablePersons.Where(x => x.Key == Model.ActivePerson).Any()) {
- Briefe von und an @Model.AvailablePersons.Where(x => x.Key == Model.ActivePerson).First().Name.  + Briefwechsel mit @Model.AvailablePersons.Where(x => x.Key == Model.ActivePerson).First().Name.  ← Auswahl aufheben
} diff --git a/HaWeb/Views/Shared/_HKBLayout.cshtml b/HaWeb/Views/Shared/_HKBLayout.cshtml index e5d9239..b4c5611 100644 --- a/HaWeb/Views/Shared/_HKBLayout.cshtml +++ b/HaWeb/Views/Shared/_HKBLayout.cshtml @@ -16,6 +16,9 @@
@await Html.PartialAsync("/Views/Shared/_ScrollButton.cshtml") + + @await Html.PartialAsync("/Views/Shared/_Notifications.cshtml") + @await RenderSectionAsync("JavaScript", false) diff --git a/HaWeb/Views/Shared/_Javascript.cshtml b/HaWeb/Views/Shared/_Javascript.cshtml index 9719b19..97493a4 100644 --- a/HaWeb/Views/Shared/_Javascript.cshtml +++ b/HaWeb/Views/Shared/_Javascript.cshtml @@ -1,9 +1,12 @@ @* Global Scripts -- These are not inside .cshtml to not loose deferred execution posibility *@ + + + + - diff --git a/HaWeb/Views/Shared/_Notifications.cshtml b/HaWeb/Views/Shared/_Notifications.cshtml new file mode 100644 index 0000000..73cc403 --- /dev/null +++ b/HaWeb/Views/Shared/_Notifications.cshtml @@ -0,0 +1,9 @@ +
+
+
+
+ + @* circle-small *@ +
+
+
diff --git a/HaWeb/WebSockets/WebSocketMiddleware.cs b/HaWeb/WebSockets/WebSocketMiddleware.cs new file mode 100644 index 0000000..feb2f4d --- /dev/null +++ b/HaWeb/WebSockets/WebSocketMiddleware.cs @@ -0,0 +1,126 @@ +using System.Net.WebSockets; +using System.Text; +using System.Text.Json; +using HaWeb; +using HaWeb.FileHelpers; +using HaWeb.Models; +using HaWeb.XMLParser; +using Microsoft.FeatureManagement; + +public class WebSocketMiddleware : IMiddleware { + internal enum ValidationState { + False, + Parsing, + True + } + + internal class FileState { + public ValidationState ValidationState { get; private set; } + + public FileState(ValidationState state) { + this.ValidationState = state; + } + + public FileState(XMLParsingState? state) { + if (state == null) ValidationState = ValidationState.Parsing; + else if (state.ValidState == true) ValidationState = ValidationState.True; + else ValidationState = ValidationState.False; + } + } + + private readonly IFeatureManager _featureManager; + private readonly IXMLInteractionService _xmlService; + private readonly IXMLFileProvider _xmlProvider; + + private List? _openSockets; + + public WebSocketMiddleware(IXMLFileProvider xmlprovider, IXMLInteractionService xmlservice, IFeatureManager featuremanager){ + this._xmlProvider = xmlprovider; + this._xmlService = xmlservice; + this._featureManager = featuremanager; + if (_openSockets == null) _openSockets = new List(); + _Subscribe(); + } + + public async Task InvokeAsync(HttpContext context, RequestDelegate requestDelegate) { + if (!context.WebSockets.IsWebSocketRequest || context.Request.Path != "/WS") { + // this case works perfectly fine for regular REST, middleware gets called. + await requestDelegate.Invoke(context); + return; + } + + if (await _featureManager.IsEnabledAsync(Features.Notifications)) { + using (WebSocket webSocket = await context.WebSockets.AcceptWebSocketAsync()) { + await HandleConnection(context, webSocket); + } + } + } + + private void _Subscribe() { + _xmlProvider.FileChange += _HandleFileChange; + _xmlProvider.NewState += _HandleNewState; + _xmlProvider.NewData += _HandleNewData; + _xmlProvider.ConfigReload += _HandleConfigReload; + _xmlService.SyntaxCheck += _HandleSyntaxCheck; + } + + private async Task HandleConnection(HttpContext context, WebSocket webSocket) { + var buffer = new byte[1024 * 4]; + _openSockets!.Add(webSocket); + WebSocketReceiveResult result = await webSocket.ReceiveAsync(new ArraySegment(buffer), CancellationToken.None); + while (!result.CloseStatus.HasValue) { + var state = _xmlProvider.GetGitState(); + await webSocket.SendAsync(_SerializeToBytes(state), WebSocketMessageType.Text, true, CancellationToken.None); + await webSocket.SendAsync(_SerializeToBytes(new FileState(_xmlService.GetState())), result.MessageType, true, CancellationToken.None); + result = await webSocket.ReceiveAsync(new ArraySegment(buffer), CancellationToken.None); + } + await webSocket.CloseAsync(result.CloseStatus.Value, result.CloseStatusDescription, CancellationToken.None); + _openSockets!.Remove(webSocket); + } + + private async void _HandleFileChange(object? sender, GitState? state) { + await _SendToAll(state); + await _SendToAll(new FileState(ValidationState.Parsing)); + } + + private async void _HandleNewState(object? sender, XMLParsingState? state) { + if (state == null || !state.ValidState) + await _SendToAll(new FileState(state)); + } + + private async void _HandleNewData(object? sender, EventArgs _) { + await _SendToAll(new { reload = true }); + } + + private async void _HandleConfigReload(object? sender, EventArgs _) { + await _SendToAll(new { configreload = true }); + } + + private async void _HandleSyntaxCheck(object? sender, Dictionary? state) { + if (state != null && state.Any()) { + foreach (var c in state) + if (c.Value.Errors != null) { + await _SendToAll(new { SC = false }); + return; + } + await _SendToAll(new { SC = true }); + } + await _SendToAll(new { SC = (String?)null }); + } + + private async Task _SendToAll(T msg) { + if (_openSockets == null) return; + foreach (var socket in _openSockets) { + await socket.SendAsync(_SerializeToBytes(msg), WebSocketMessageType.Text, true, CancellationToken.None); + } + } + + private ArraySegment _SerializeToBytes(T o) { + var json = JsonSerializer.Serialize(o); + if (String.IsNullOrWhiteSpace(json)) { + return new ArraySegment(new byte[] { }, 0, 0); + } + var bytes = Encoding.UTF8.GetBytes(json); + return new ArraySegment(bytes, 0, bytes.Length); + } +} \ No newline at end of file diff --git a/HaWeb/XMLParser/IXMLInteractionService.cs b/HaWeb/XMLParser/IXMLInteractionService.cs index 02a0c27..d46c91b 100644 --- a/HaWeb/XMLParser/IXMLInteractionService.cs +++ b/HaWeb/XMLParser/IXMLInteractionService.cs @@ -8,15 +8,18 @@ using HaXMLReader.Interfaces; using Microsoft.Extensions.FileProviders; public interface IXMLInteractionService { - public XElement? TryCreate(); - public bool GetValidState(); - public void Collect(List Files); - public Dictionary? GetLoaded(); - public IXMLRoot? GetRoot(string name); - public List? GetRootsList(); - public void CreateSearchables(XDocument document); - public List? GetManagedFiles(); - public Dictionary? Test(); + public event EventHandler?> SyntaxCheck; + public XElement? TryCreate(XMLParsingState? state); + public XMLParsingState? GetState(); + public void SetState(XMLParsingState? state); + public Dictionary? GetRootDefs(); + public Dictionary? GetSCCache(); + public void SetSCCache(Dictionary? cache); + public XMLParsingState? Collect(List Files, Dictionary? rootDefs); // XMLFileProvider + public void CreateSearchables(XDocument document); // XMLFileProvider + public Dictionary? Test(XMLParsingState? state, string gitcommit); // XMLFileProvider (optimal), Controller (right now) + // Controller public List<(string Index, List<(string Page, string Line, string Preview, string Identifier)> Results)>? SearchCollection(string collection, string searchword, IReaderService reader, ILibrary? lib); + // Controller public List<(string Index, List<(string Page, string Line, string Preview, string Identifier)> Results)>? GetPreviews(List<(string, List)> places, IReaderService reader, ILibrary lib); } \ No newline at end of file diff --git a/HaWeb/XMLParser/XMLInteractionService.cs b/HaWeb/XMLParser/XMLInteractionService.cs index 6b0c893..bbf7c0b 100644 --- a/HaWeb/XMLParser/XMLInteractionService.cs +++ b/HaWeb/XMLParser/XMLInteractionService.cs @@ -36,12 +36,13 @@ public class XMLInteractionService : IXMLInteractionService { private Dictionary? _RootDefs; private Dictionary? _CollectionDefs; - - private List? _ManagedFiles; - private Dictionary? _Loaded; private Dictionary? _Collection; - private bool _ValidState = false; + public event EventHandler?> SyntaxCheck; + + private XMLParsingState? _State; + + private Dictionary? _SCCache; public XMLInteractionService(IConfiguration config, IXMLTestService testService) { _testService = testService; @@ -68,38 +69,30 @@ public class XMLInteractionService : IXMLInteractionService { } // Getters and Setters - public Dictionary? GetLoaded() => this._Loaded; + public XMLParsingState? GetState() => this._State; - public List? GetManagedFiles() => this._ManagedFiles; + public void SetState(XMLParsingState? state) => this._State = state; - public List? GetRootsList() => this._RootDefs == null ? null : this._RootDefs.Values.ToList(); + public Dictionary? GetRootDefs() => this._RootDefs; - public bool GetValidState() => this._ValidState; - - public IXMLRoot? GetRoot(string name) { - if (_RootDefs == null) return null; - _RootDefs.TryGetValue(name, out var root); - return root; - } + public Dictionary? GetSCCache() => this._SCCache; + + public void SetSCCache(Dictionary? cache) => this._SCCache = cache; // Functions - public void Collect(List files) { - if (files == null || !files.Any()) return; - _ValidState = true; - Dictionary? lF = new Dictionary(); - List fM = new List(); + public XMLParsingState? Collect(List files, Dictionary? rootDefs) { + if (files == null || !files.Any() || rootDefs == null || !rootDefs.Any()) return null; + var _state = new XMLParsingState() { + ValidState = true + }; foreach (var f in files) { - var sb = new StringBuilder(); var m = _CreateFileModel(f, null); - fM.Add(m); + _state.ManagedFiles!.Add(m); // 1. Open File for Reading try { using (Stream file = f.CreateReadStream()) { // 2. Some security checks, if file empty, wrong start, wrong extension, too big - if (!XMLFileHelpers.ProcessFile(file, f.Name, sb, _allowedExtensions, _fileSizeLimit)) { - m.Log(sb.ToString()); - continue; - } + if (!XMLFileHelpers.ProcessFile(file, f.Name, m.Log, _allowedExtensions, _fileSizeLimit)) continue; } } catch { m.Log( "Datei konnte nicht geöffnet werden."); @@ -113,14 +106,14 @@ public class XMLInteractionService : IXMLInteractionService { // 4. Check if opus-Document // TODO: Unter der HOOD werden in ProbeFiles noch eigene Files gebaut! - var docs = _ProbeFile(doc, m); + var docs = _ProbeFile(doc, m, rootDefs); if (docs == null || !docs.Any()) continue; // Success! File can be recognized and parsed. m.Validate(); foreach (var d in docs) { - if (!lF.ContainsKey(d.Prefix)) lF.Add(d.Prefix, new FileList(d.XMLRoot)); - lF[d.Prefix]!.Add(d); + if (!_state.Loaded!.ContainsKey(d.Prefix)) _state.Loaded.Add(d.Prefix, new FileList(d.XMLRoot)); + _state.Loaded[d.Prefix]!.Add(d); } } } catch (Exception ex) { @@ -129,32 +122,38 @@ public class XMLInteractionService : IXMLInteractionService { } } - // Set data - this._ManagedFiles = fM; - this._Loaded = lF; - foreach (var f in _ManagedFiles) { - if (!f.IsValid) this._ValidState = false; - break; + foreach (var f in _state.ManagedFiles!) { + if (!f.IsValid) { + _state.ValidState = false; + break; + } } + return _state; } - public Dictionary? Test() { - if (_Loaded == null) return null; + // Every caller shoud ask the cache above first + public Dictionary? Test(XMLParsingState? state, string gitcommit) { + if (state == null || state.Loaded == null) return null; // TODO: Speed up this, move it into a background task: var sw = new Stopwatch(); sw.Start(); - var res = this._Loaded?.SelectMany(x => x.Value?.GetFileList()?.Select(x => x.File)).Distinct().Select(x => x.FileName); - var ret = _testService.Test(this._Loaded, res.ToDictionary(x => x, y => new SyntaxCheckModel(y))); + var res = state.Loaded?.SelectMany(x => x.Value?.GetFileList()?.Select(x => x.File)).Distinct().Select(x => x.FileName); + var ret = _testService.Test(state.Loaded, res.ToDictionary(x => x, y => new SyntaxCheckModel(y, gitcommit))); + if (ret != null) + foreach (var r in ret) { + r.Value.SortErrors(); + } sw.Stop(); Console.WriteLine("Syntaxcheck " + sw.ElapsedMilliseconds.ToString() + " ms"); + OnSyntaxCheck(ret); return ret; } - public XElement? TryCreate() { - if (_Loaded == null || !_Loaded.Any() || _RootDefs == null || !_RootDefs.Any() || !_ValidState) return null; + public XElement? TryCreate(XMLParsingState state) { + if (state.Loaded == null || !state.Loaded.Any() || _RootDefs == null || !_RootDefs.Any() || !state.ValidState) return null; var opus = new XElement("opus"); // TODO: Workaround for bug in HaDocument: roots have to be added in a specific order - var used = _Loaded.OrderByDescending(x => x.Key); + var used = state.Loaded.OrderByDescending(x => x.Key); foreach (var category in used) { if (category.Value == null || category.Value.GetFileList() == null || !category.Value.GetFileList()!.Any()) { return null; @@ -302,15 +301,15 @@ public class XMLInteractionService : IXMLInteractionService { .Where(type => typeof(T).IsAssignableFrom(type) && !type.IsInterface); } - private List? _ProbeFile(XDocument document, FileModel file) { + private List? _ProbeFile(XDocument document, FileModel file, Dictionary? rootDefs) { if (document.Root!.Name != "opus") { file.Log("Ein gültiges Dokument muss mit beginnen."); return null; } List? res = null; - if (document.Root != null && _RootDefs != null) { - foreach (var (_, root) in _RootDefs) { + if (document.Root != null && rootDefs != null) { + foreach (var (_, root) in rootDefs) { var elements = root.IsTypeOf(document.Root); if (elements != null && elements.Any()) foreach (var elem in elements) { @@ -337,5 +336,8 @@ public class XMLInteractionService : IXMLInteractionService { return m; } - + protected virtual void OnSyntaxCheck(Dictionary? state) { + EventHandler?> eh = SyntaxCheck; + eh?.Invoke(this, state); + } } \ No newline at end of file diff --git a/HaWeb/appsettings.Development.json b/HaWeb/appsettings.Development.json deleted file mode 100644 index ff66ba6..0000000 --- a/HaWeb/appsettings.Development.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft.AspNetCore": "Warning" - } - } -} diff --git a/HaWeb/appsettings.json b/HaWeb/appsettings.json index 001eab3..e8aff17 100644 --- a/HaWeb/appsettings.json +++ b/HaWeb/appsettings.json @@ -8,16 +8,19 @@ "FeatureManagement": { "AdminService": true, "LocalPublishService": true, - "SyntaxCheck": true + "SyntaxCheck": true, + "Notifications": true }, + "AllowedWebSocketConnections": "*", "AllowedHosts": "*", - "HamannFileStoreLinux": "/home/simon/Downloads/test/", + "HamannFileStoreLinux": "/var/www/vhosts/test.hamann-ausgabe.de/httpdocs/Hamann/", "HamannFileStoreWindows": "C:/Users/simon/Downloads/test/", - "BareRepositoryPathLinux": "/home/simon/Downloads/test/", + "BareRepositoryPathLinux": "/var/www/vhosts/test.hamann-ausgabe.de/httpdocs/Bare/", "BareRepositoryPathWindows": "C:/Users/simon/source/hamann-xml/.git/", - "WorkingTreePathLinux": "/home/simon/Downloads/test/", + "WorkingTreePathLinux": "/var/www/vhosts/test.hamann-ausgabe.de/httpdocs/Repo/", "WorkingTreePathWindows": "C:/Users/simon/source/hamann-xml/", - "RepositoryBranch": "main", + "RepositoryBranch": "testdata", + "RepositoryURL": "https://github.com/Theodor-Springmann-Stiftung/hamann-xml", "StoredPDFPathWindows": "", "StoredPDFPathLinux": "", "FileSizeLimit": 52428800, diff --git a/HaWeb/uniqenamesattributes.txt b/HaWeb/uniqenamesattributes.txt deleted file mode 100644 index c6d86d8..0000000 --- a/HaWeb/uniqenamesattributes.txt +++ /dev/null @@ -1,357 +0,0 @@ -opus -opus/data -opus/data/definitions -opus/data/definitions/handDefs -opus/data/definitions/locationDefs -opus/data/definitions/personDefs -opus/data/definitions/structureDefs -opus/data/descriptions -opus/document -opus/document/letterText/added/anchor -opus/document/letterText/added/anchor/@ref -opus/document/letterText/address/aq/del/ul -opus/document/letterText/address/aq/line/@type -opus/document/letterText/address/aq/ul/aq -opus/document/letterText/address/aq/ul/line -opus/document/letterText/address/aq/ul/line/@autopsic -opus/document/letterText/address/aq/ul/line/@index -opus/document/letterText/address/del/aq/line -opus/document/letterText/address/del/aq/line/@autopsic -opus/document/letterText/address/del/aq/line/@index -opus/document/letterText/address/del/ul -opus/document/letterText/address/edit/aq/dul -opus/document/letterText/address/edit/aq/hand -opus/document/letterText/address/edit/aq/hand/@ref -opus/document/letterText/address/edit/aq/ul/super -opus/document/letterText/address/edit/hand -opus/document/letterText/address/edit/hand/aq -opus/document/letterText/address/edit/hand/aq/super -opus/document/letterText/address/edit/hand/@ref -opus/document/letterText/address/hand/aq -opus/document/letterText/address/hand/aq/ul -opus/document/letterText/address/hand/super/ul -opus/document/letterText/address/line/@type -opus/document/letterText/address/note -opus/document/letterText/address/nr -opus/document/letterText/address/page -opus/document/letterText/address/page/@autopsic -opus/document/letterText/address/page/@index -opus/document/letterText/align/address/aq -opus/document/letterText/align/aq/del -opus/document/letterText/align/aq/edit -opus/document/letterText/align/aq/edit/@ref -opus/document/letterText/align/aq/super -opus/document/letterText/align/datum/del/aq -opus/document/letterText/align/datum/edit/gr -opus/document/letterText/align/datum/nr -opus/document/letterText/align/datum/sub/aq -opus/document/letterText/align/del/gr -opus/document/letterText/align/edit/aq/super -opus/document/letterText/align/edit/datum/del -opus/document/letterText/align/edit/datum/del/nr -opus/document/letterText/align/edit/datum/super -opus/document/letterText/align/edit/gr -opus/document/letterText/align/edit/gr/del -opus/document/letterText/align/edit/sig/aq -opus/document/letterText/align/edit/super -opus/document/letterText/align/hand/datum/super -opus/document/letterText/align/hand/datum/ul -opus/document/letterText/align/hand/del -opus/document/letterText/align/hand/sig -opus/document/letterText/align/hand/sig/aq -opus/document/letterText/align/sig/datum -opus/document/letterText/align/sig/nr/aq -opus/document/letterText/align/up/aq -opus/document/letterText/anchor/added -opus/document/letterText/anchor/note -opus/document/letterText/aq/address/del -opus/document/letterText/aq/address/edit -opus/document/letterText/aq/address/edit/@ref -opus/document/letterText/aq/address/edit/ul -opus/document/letterText/aq/align/ul -opus/document/letterText/aq/del/edit -opus/document/letterText/aq/del/edit/@ref -opus/document/letterText/aq/dul/line -opus/document/letterText/aq/dul/line/@autopsic -opus/document/letterText/aq/dul/line/@index -opus/document/letterText/aq/edit/del -opus/document/letterText/aq/edit/del/nr -opus/document/letterText/aq/super/ul -opus/document/letterText/aq/ul/added -opus/document/letterText/aq/ul/del -opus/document/letterText/aq/ul/super -opus/document/letterText/datum/align/added -opus/document/letterText/datum/align/datum -opus/document/letterText/datum/align/del -opus/document/letterText/datum/aq/line -opus/document/letterText/datum/aq/line/@autopsic -opus/document/letterText/datum/aq/line/@index -opus/document/letterText/datum/edit/super -opus/document/letterText/datum/edit/ul -opus/document/letterText/datum/gr -opus/document/letterText/datum/hand -opus/document/letterText/datum/hand/@ref -opus/document/letterText/datum/super/aq -opus/document/letterText/del/added -opus/document/letterText/del/aq/del -opus/document/letterText/del/del/nr -opus/document/letterText/del/edit/nr -opus/document/letterText/del/gr -opus/document/letterText/del/gr/edit -opus/document/letterText/del/gr/edit/@ref -opus/document/letterText/del/gr/line -opus/document/letterText/del/gr/line/@autopsic -opus/document/letterText/del/gr/line/@index -opus/document/letterText/del/super -opus/document/letterText/del/super/aq -opus/document/letterText/del/ul/line -opus/document/letterText/del/ul/line/@autopsic -opus/document/letterText/del/ul/line/@index -opus/document/letterText/dul/super -opus/document/letterText/edit/added/nr -opus/document/letterText/edit/added/ul -opus/document/letterText/edit/address/hand -opus/document/letterText/edit/address/hand/@ref -opus/document/letterText/edit/address/hand/ul -opus/document/letterText/edit/address/line -opus/document/letterText/edit/address/line/@autopsic -opus/document/letterText/edit/address/line/@index -opus/document/letterText/edit/address/ul/aq -opus/document/letterText/edit/align/aq/ul -opus/document/letterText/edit/align/datum/aq -opus/document/letterText/edit/align/edit -opus/document/letterText/edit/align/edit/aq -opus/document/letterText/edit/align/edit/@ref -opus/document/letterText/edit/anchor -opus/document/letterText/edit/anchor/@ref -opus/document/letterText/edit/aq/dul -opus/document/letterText/edit/aq/edit -opus/document/letterText/edit/aq/edit/@ref -opus/document/letterText/edit/aq/line/@tab -opus/document/letterText/edit/aq/ul/del -opus/document/letterText/edit/aq/ul/line -opus/document/letterText/edit/aq/ul/line/@autopsic -opus/document/letterText/edit/aq/ul/line/@index -opus/document/letterText/edit/del/aq/del -opus/document/letterText/edit/del/del/line -opus/document/letterText/edit/del/del/line/@autopsic -opus/document/letterText/edit/del/del/line/@index -opus/document/letterText/edit/del/page -opus/document/letterText/edit/del/page/@autopsic -opus/document/letterText/edit/del/page/@index -opus/document/letterText/edit/edit/aq/del -opus/document/letterText/edit/edit/del/aq -opus/document/letterText/edit/edit/edit/aq -opus/document/letterText/edit/edit/page -opus/document/letterText/edit/edit/page/@autopsic -opus/document/letterText/edit/edit/page/@index -opus/document/letterText/edit/edit/super -opus/document/letterText/edit/gr/del/nr -opus/document/letterText/edit/hand/align/aq -opus/document/letterText/edit/hand/aq/del -opus/document/letterText/edit/hand/aq/del/ul -opus/document/letterText/edit/hand/aq/nr -opus/document/letterText/edit/hand/del/aq -opus/document/letterText/edit/hand/super -opus/document/letterText/edit/hand/ul -opus/document/letterText/edit/nr/aq/del -opus/document/letterText/edit/sig/aq -opus/document/letterText/edit/sig/aq/ul -opus/document/letterText/edit/sig/line -opus/document/letterText/edit/sig/line/@autopsic -opus/document/letterText/edit/sig/line/@index -opus/document/letterText/edit/ul/del/nr -opus/document/letterText/edit/ul/edit -opus/document/letterText/edit/ul/edit/@ref -opus/document/letterText/edit/ul/nr -opus/document/letterText/edit/ul/ul -opus/document/letterText/fn/added/aq -opus/document/letterText/fn/del -opus/document/letterText/fn/hand/aq -opus/document/letterText/fn/line/@type -opus/document/letterText/fn/note/ul -opus/document/letterText/ful/aq -opus/document/letterText/gr/del -opus/document/letterText/gr/edit/del -opus/document/letterText/gr/line/@tab -opus/document/letterText/hand/address/aq/del -opus/document/letterText/hand/address/aq/del/nr -opus/document/letterText/hand/address/aq/del/nr/ul -opus/document/letterText/hand/address/aq/line -opus/document/letterText/hand/address/aq/line/@autopsic -opus/document/letterText/hand/address/aq/line/@index -opus/document/letterText/hand/address/aq/line/@tab -opus/document/letterText/hand/address/edit -opus/document/letterText/hand/address/edit/@ref -opus/document/letterText/hand/address/edit/ul -opus/document/letterText/hand/address/edit/ul/aq -opus/document/letterText/hand/align/datum/edit -opus/document/letterText/hand/align/datum/edit/@ref -opus/document/letterText/hand/align/datum/edit/super -opus/document/letterText/hand/aq/address -opus/document/letterText/hand/aq/address/line -opus/document/letterText/hand/aq/address/line/@autopsic -opus/document/letterText/hand/aq/address/line/@index -opus/document/letterText/hand/aq/address/ul -opus/document/letterText/hand/datum/align -opus/document/letterText/hand/datum/align/@pos -opus/document/letterText/hand/datum/edit -opus/document/letterText/hand/datum/edit/aq -opus/document/letterText/hand/datum/edit/@ref -opus/document/letterText/hand/del/aq -opus/document/letterText/hand/del/line -opus/document/letterText/hand/del/line/@autopsic -opus/document/letterText/hand/del/line/@index -opus/document/letterText/hand/del/line/@tab -opus/document/letterText/hand/del/nr -opus/document/letterText/hand/edit/added -opus/document/letterText/hand/edit/aq/ul -opus/document/letterText/hand/edit/del/nr -opus/document/letterText/hand/edit/line -opus/document/letterText/hand/edit/line/@autopsic -opus/document/letterText/hand/edit/line/@index -opus/document/letterText/hand/edit/nr -opus/document/letterText/hand/edit/ul/aq -opus/document/letterText/hand/gr/del -opus/document/letterText/hand/gr/line -opus/document/letterText/hand/gr/line/@autopsic -opus/document/letterText/hand/gr/line/@index -opus/document/letterText/hand/ps -opus/document/letterText/hand/ps/aq -opus/document/letterText/hand/ps/datum -opus/document/letterText/hand/ps/datum/aq -opus/document/letterText/hand/ul/aq -opus/document/letterText/hand/ul/nr -opus/document/letterText/note/aq/ul -opus/document/letterText/note/line/@tab -opus/document/letterText/note/ul -opus/document/letterText/nr/del -opus/document/letterText/ps/added -opus/document/letterText/ps/align -opus/document/letterText/ps/align/aq -opus/document/letterText/ps/align/@pos -opus/document/letterText/ps/aq/line -opus/document/letterText/ps/aq/line/@autopsic -opus/document/letterText/ps/aq/line/@index -opus/document/letterText/ps/aq/super -opus/document/letterText/ps/del/line -opus/document/letterText/ps/del/line/@autopsic -opus/document/letterText/ps/del/line/@index -opus/document/letterText/ps/edit/dul -opus/document/letterText/ps/edit/dul/aq -opus/document/letterText/ps/ps -opus/document/letterText/ps/ps/del -opus/document/letterText/ps/ul/aq -opus/document/letterText/sig/align/ul -opus/document/letterText/sig/datum -opus/document/letterText/super/del -opus/document/letterText/tab/ful -opus/document/letterText/tabs/align/aq -opus/document/letterText/tabs/align/edit -opus/document/letterText/tabs/align/edit/aq -opus/document/letterText/tabs/align/edit/@ref -opus/document/letterText/tabs/aq/ul -opus/document/letterText/tabs/edit -opus/document/letterText/tabs/edit/page -opus/document/letterText/tabs/edit/page/@autopsic -opus/document/letterText/tabs/edit/page/@index -opus/document/letterText/tabs/edit/@ref -opus/document/letterText/tabs/edit/tab/del -opus/document/letterText/tabs/edit/tab/dul -opus/document/letterText/tabs/edit/tab/edit/tul -opus/document/letterText/tabs/edit/tab/ul -opus/document/letterText/tabs/line/@type -opus/document/letterText/tabs/tab/aq/added -opus/document/letterText/tabs/tab/aq/super -opus/document/letterText/tabs/tab/aq/ul -opus/document/letterText/tabs/tab/datum/aq -opus/document/letterText/tabs/tab/edit/aq -opus/document/letterText/tabs/tab/ful/aq -opus/document/letterText/tabs/tab/ful/del -opus/document/letterText/tabs/tab/ful/del/nr -opus/document/letterText/tabs/tab/nr -opus/document/letterText/tabs/tab/nr/aq -opus/document/letterText/tabs/tab/tab -opus/document/letterText/tabs/tab/tab/@value -opus/document/letterText/tabs/tab/up/edit -opus/document/letterText/tabs/tab/up/edit/aq -opus/document/letterText/tabs/tab/up/edit/@ref -opus/document/letterText/tab/ul -opus/document/letterText/ul/aq/added -opus/document/letterText/ul/edit/added -opus/document/letterText/ul/edit/del -opus/document/letterText/ul/edit/ul -opus/document/letterText/ul/super -opus/document/letterText/up -opus/edits -opus/edits/editreason/aq/del -opus/edits/editreason/aq/nr -opus/edits/editreason/aq/ul -opus/edits/editreason/del/added -opus/edits/editreason/nr -opus/edits/editreason/zh/added/aq -opus/edits/editreason/zh/address/hand -opus/edits/editreason/zh/address/hand/@ref -opus/edits/editreason/zh/address/ul -opus/edits/editreason/zh/aq/del -opus/edits/editreason/zh/aq/dul -opus/edits/editreason/zh/aq/nr -opus/edits/editreason/zh/del/note -opus/edits/editreason/zh/dul/aq -opus/edits/editreason/zh/note -opus/edits/editreason/zh/sig/ul -opus/edits/editreason/zh/ul/added -opus/edits/editreason/zh/ul/del -opus/kommentare -opus/kommentare/kommcat/kommentar/eintrag/titel/link -opus/kommentare/kommcat/kommentar/eintrag/titel/link/@linktext -opus/kommentare/kommcat/kommentar/eintrag/titel/link/@ref -opus/kommentare/kommcat/kommentar/lemma/titel -opus/kommentare/kommcat/kommentar/lemma/wwwlink -opus/kommentare/kommcat/kommentar/lemma/wwwlink/@address -opus/kommentare/kommcat/kommentar/subsection/wwwlink -opus/kommentare/kommcat/kommentar/subsection/wwwlink/@address -opus/marginalien -opus/marginalien/marginal/eintrag -opus/traditions -opus/traditions/letterTradition/align/note -opus/traditions/letterTradition/del -opus/traditions/letterTradition/del/aq -opus/traditions/letterTradition/note/ul -opus/traditions/letterTradition/nr -opus/traditions/letterTradition/ZHText/align/aq/del -opus/traditions/letterTradition/ZHText/align/aq/ul -opus/traditions/letterTradition/ZHText/align/datum -opus/traditions/letterTradition/ZHText/align/del/aq -opus/traditions/letterTradition/ZHText/aq/line/@type -opus/traditions/letterTradition/ZHText/aq/nr -opus/traditions/letterTradition/ZHText/aq/ul/line -opus/traditions/letterTradition/ZHText/aq/ul/line/@autopsic -opus/traditions/letterTradition/ZHText/aq/ul/line/@index -opus/traditions/letterTradition/ZHText/edit/align/aq -opus/traditions/letterTradition/ZHText/edit/aq/line -opus/traditions/letterTradition/ZHText/edit/aq/line/@autopsic -opus/traditions/letterTradition/ZHText/edit/aq/line/@index -opus/traditions/letterTradition/ZHText/edit/dul -opus/traditions/letterTradition/ZHText/edit/edit/ul -opus/traditions/letterTradition/ZHText/edit/nr -opus/traditions/letterTradition/ZHText/edit/super -opus/traditions/letterTradition/ZHText/hand/align/super -opus/traditions/letterTradition/ZHText/hand/aq/line -opus/traditions/letterTradition/ZHText/hand/aq/line/@autopsic -opus/traditions/letterTradition/ZHText/hand/aq/line/@index -opus/traditions/letterTradition/ZHText/hand/aq/ul -opus/traditions/letterTradition/ZHText/hand/edit/aq -opus/traditions/letterTradition/ZHText/hand/edit/dul -opus/traditions/letterTradition/ZHText/hand/ul/aq -opus/traditions/letterTradition/ZHText/hb -opus/traditions/letterTradition/ZHText/note/align -opus/traditions/letterTradition/ZHText/note/align/@pos -opus/traditions/letterTradition/ZHText/nr/aq -opus/traditions/letterTradition/ZHText/tabs -opus/traditions/letterTradition/ZHText/tabs/tab/aq -opus/traditions/letterTradition/ZHText/tabs/tab/del -opus/traditions/letterTradition/ZHText/tabs/tab/ful -opus/traditions/letterTradition/ZHText/tabs/tab/ful/del -opus/traditions/letterTradition/ZHText/tabs/tab/ful/del/nr -opus/traditions/letterTradition/ZHText/ul/super/aq diff --git a/HaWeb/uniqenamesattributesvalues.txt b/HaWeb/uniqenamesattributesvalues.txt deleted file mode 100644 index 488c853..0000000 --- a/HaWeb/uniqenamesattributesvalues.txt +++ /dev/null @@ -1,38262 +0,0 @@ -opus -opus/data -opus/data/definitions -opus/data/definitions/handDefs -opus/data/definitions/handDefs/handDef[@index='10' and @name='Johann Gottlieb Kreutzfeld'] -opus/data/definitions/handDefs/handDef[@index='11' and @name='Johann Caspar Lavater'] -opus/data/definitions/handDefs/handDef[@index='12' and @name='Christoph Kaufmann'] -opus/data/definitions/handDefs/handDef[@index='13' and @name='Elise Kaufmann, geb. Ziegler'] -opus/data/definitions/handDefs/handDef[@index='14' and @name='Johann Gottfried Herder'] -opus/data/definitions/handDefs/handDef[@index='15' and @name='Caroline Herder'] -opus/data/definitions/handDefs/handDef[@index='16' and @name='Johann Ehrmann'] -opus/data/definitions/handDefs/handDef[@index='17' and @name='Matthias Claudius'] -opus/data/definitions/handDefs/handDef[@index='18' and @name='Johann Friedrich Kleuker'] -opus/data/definitions/handDefs/handDef[@index='19' and @name='Friedrich Heinrich Jacobi'] -opus/data/definitions/handDefs/handDef[@index='1' and @name='Johann Christoph Hamann (Bruder)'] -opus/data/definitions/handDefs/handDef[@index='-1' and @name='Unbekannt'] -opus/data/definitions/handDefs/handDef[@index='20' and @name='Friedrich Nicolai'] -opus/data/definitions/handDefs/handDef[@index='21' and @name='Daniel Pegelow'] -opus/data/definitions/handDefs/handDef[@index='22' and @name='Johann Ehrmann oder eine Schreibhilfe Johann Caspar Lavaters'] -opus/data/definitions/handDefs/handDef[@index='23' and @name='Johann Michael Hamann (Sohn)'] -opus/data/definitions/handDefs/handDef[@index='24' and @name='Arnold Corman'] -opus/data/definitions/handDefs/handDef[@index='25' and @name='Franz Kaspar Bucholtz'] -opus/data/definitions/handDefs/handDef[@index='26' and @name='vermutlich George Bassa'] -opus/data/definitions/handDefs/handDef[@index='27' and @name='Sophie Marianne Courtan'] -opus/data/definitions/handDefs/handDef[@index='28' and @name='Christian Jakob Kraus'] -opus/data/definitions/handDefs/handDef[@index='29' and @name='Helene Jacobi'] -opus/data/definitions/handDefs/handDef[@index='2' and @name='Johann Christoph Hamann (Vater)'] -opus/data/definitions/handDefs/handDef[@index='30' and @name='David Friedländer'] -opus/data/definitions/handDefs/handDef[@index='31' and @name='August Herder'] -opus/data/definitions/handDefs/handDef[@index='32' and @name='Heinrich Schenk'] -opus/data/definitions/handDefs/handDef[@index='3' and @name='Gottlob Immanuel Lindner'] -opus/data/definitions/handDefs/handDef[@index='4' and @name='Johann Christoph Berens'] -opus/data/definitions/handDefs/handDef[@index='5' and @name='Georg David Kypke'] -opus/data/definitions/handDefs/handDef[@index='6' and @name='Moses Mendelssohn'] -opus/data/definitions/handDefs/handDef[@index='7' and @name='Johann Friedrich Hartknoch'] -opus/data/definitions/handDefs/handDef[@index='8' and @name='Johann Georg Hamann'] -opus/data/definitions/handDefs/handDef[@index='9' and @name='Johann Jakob Kanter'] -opus/data/definitions/locationDefs -opus/data/definitions/locationDefs/locationDef[@index='10' and @name='London'] -opus/data/definitions/locationDefs/locationDef[@index='11' and @name='Berenshof'] -opus/data/definitions/locationDefs/locationDef[@index='12' and @name='Trutenau'] -opus/data/definitions/locationDefs/locationDef[@index='13' and @name='Elbing'] -opus/data/definitions/locationDefs/locationDef[@index='14' and @name='Frankfurt am Main'] -opus/data/definitions/locationDefs/locationDef[@index='15' and @name='Lübeck'] -opus/data/definitions/locationDefs/locationDef[@index='16' and @name='Warschau'] -opus/data/definitions/locationDefs/locationDef[@index='17' and @name='St. Petersburg'] -opus/data/definitions/locationDefs/locationDef[@index='18' and @name='Nantes'] -opus/data/definitions/locationDefs/locationDef[@index='19' and @name='Zürich'] -opus/data/definitions/locationDefs/locationDef[@index='1' and @name='Berlin'] -opus/data/definitions/locationDefs/locationDef[@index='-1' and @name='unbekannt'] -opus/data/definitions/locationDefs/locationDef[@index='20' and @name='Mohrungen'] -opus/data/definitions/locationDefs/locationDef[@index='21' and @name='Schloß Hegi bei Winterthur'] -opus/data/definitions/locationDefs/locationDef[@index='22' and @name='Weimar'] -opus/data/definitions/locationDefs/locationDef[@index='23' and @name='Bückeburg'] -opus/data/definitions/locationDefs/locationDef[@index='24' and @name='Potsdam'] -opus/data/definitions/locationDefs/locationDef[@index='25' and @name='Hamburg'] -opus/data/definitions/locationDefs/locationDef[@index='26' and @name='Darmstadt'] -opus/data/definitions/locationDefs/locationDef[@index='27' and @name='Narva'] -opus/data/definitions/locationDefs/locationDef[@index='28' and @name='Dessau'] -opus/data/definitions/locationDefs/locationDef[@index='29' and @name='Wandsbeck'] -opus/data/definitions/locationDefs/locationDef[@index='2' and @name='Königsberg'] -opus/data/definitions/locationDefs/locationDef[@index='30' and @name='Krappitz'] -opus/data/definitions/locationDefs/locationDef[@index='31' and @name='Leipzig'] -opus/data/definitions/locationDefs/locationDef[@index='32' and @name='Drubenalken'] -opus/data/definitions/locationDefs/locationDef[@index='33' and @name='Eutin'] -opus/data/definitions/locationDefs/locationDef[@index='34' and @name='Pempelfort'] -opus/data/definitions/locationDefs/locationDef[@index='35' and @name='Kapstadt'] -opus/data/definitions/locationDefs/locationDef[@index='36' and @name='Richterswil'] -opus/data/definitions/locationDefs/locationDef[@index='37' and @name='Düsseldorf'] -opus/data/definitions/locationDefs/locationDef[@index='38' and @name='Schaffhausen'] -opus/data/definitions/locationDefs/locationDef[@index='39' and @name='Münster'] -opus/data/definitions/locationDefs/locationDef[@index='3' and @name='Memel'] -opus/data/definitions/locationDefs/locationDef[@index='40' and @name='Osnabrück'] -opus/data/definitions/locationDefs/locationDef[@index='41' and @name='Richmont'] -opus/data/definitions/locationDefs/locationDef[@index='42' and @name='Magdeburg'] -opus/data/definitions/locationDefs/locationDef[@index='43' and @name='Welbergen'] -opus/data/definitions/locationDefs/locationDef[@index='4' and @name='Mitau'] -opus/data/definitions/locationDefs/locationDef[@index='5' and @name='Kegeln'] -opus/data/definitions/locationDefs/locationDef[@index='6' and @name='Riga'] -opus/data/definitions/locationDefs/locationDef[@index='7' and @name='Grünhof'] -opus/data/definitions/locationDefs/locationDef[@index='8' and @name='Meyhof'] -opus/data/definitions/locationDefs/locationDef[@index='9' and @name='Berlin'] -opus/data/definitions/personDefs -opus/data/definitions/personDefs/personDef[@index='100' and @name='Dirk Graf van Hogendorp' and @vorname='Hogendorp' and @nachname='Dirk Graf van'] -opus/data/definitions/personDefs/personDef[@index='101' and @name='Samuel Wolff Friedländer' and @vorname='Samuel Wolff' and @nachname='Friedländer'] -opus/data/definitions/personDefs/personDef[@index='102' and @name=''] -opus/data/definitions/personDefs/personDef[@index='103' and @name='Susanne Elisabeth Scheffner' and @vorname='Susanne Elisabeth' and @nachname='Scheffner'] -opus/data/definitions/personDefs/personDef[@index='104' and @name='Eberhard Gaupp' and @vorname='Eberhard' and @nachname='Gaupp'] -opus/data/definitions/personDefs/personDef[@index='105' and @name='Christian Hill' and @vorname='Christian' and @nachname='Hill'] -opus/data/definitions/personDefs/personDef[@index='106' and @name='Franz Kaspar Bucholtz' and @vorname='Franz Kaspar' and @nachname='Bucholtz'] -opus/data/definitions/personDefs/personDef[@index='107' and @name='Elisabeth Regina Hamann (Tochter)' and @vorname='Elisabeth Regina' and @nachname='Hamann'] -opus/data/definitions/personDefs/personDef[@index='108' and @name='Die Provinzial-Direktion' and @nachname='Provinzial-Direktion'] -opus/data/definitions/personDefs/personDef[@index='109' and @name=''] -opus/data/definitions/personDefs/personDef[@index='10' and @name='Johann Christoph Hamann (Bruder)' and @vorname='Johann Christoph' and @nachname='Hamann'] -opus/data/definitions/personDefs/personDef[@index='110' and @name='Elisa von der Recke' and @vorname='Elisa von der' and @nachname='Recke'] -opus/data/definitions/personDefs/personDef[@index='111' and @name='Die Königliche General-Accise- und Zoll-Administration' and @nachname='General-Accise- und Zoll-Administration'] -opus/data/definitions/personDefs/personDef[@index='112' and @name='Heinrich Schenk' and @vorname='Heinrich' and @nachname='Schenk'] -opus/data/definitions/personDefs/personDef[@index='113' and @name=''] -opus/data/definitions/personDefs/personDef[@index='114' and @name='Thomas Wizenmann' and @vorname='Thomas' and @nachname='Wizenmann'] -opus/data/definitions/personDefs/personDef[@index='115' and @name=''] -opus/data/definitions/personDefs/personDef[@index='116' and @name='Gottfried Leberecht Masius' and @vorname='Gottfried Leberecht' and @nachname='Masius'] -opus/data/definitions/personDefs/personDef[@index='117' and @name=''] -opus/data/definitions/personDefs/personDef[@index='118' and @name='Finanzrat von Köpke' and @nachname='Köpke'] -opus/data/definitions/personDefs/personDef[@index='119' and @name='Minister von Werder' and @nachname='Werder'] -opus/data/definitions/personDefs/personDef[@index='11' and @name='Barbara Helena von Budberg, geb. von Zimmermann' and @vorname='Barbara Helena von' and @nachname='Budberg'] -opus/data/definitions/personDefs/personDef[@index='120' and @name='Johann Ernst von Druffel' and @vorname='Johann Ernst von' and @nachname='Druffel'] -opus/data/definitions/personDefs/personDef[@index='121' and @name='Finanzbeamter Gomm' and @nachname='Gomm'] -opus/data/definitions/personDefs/personDef[@index='122' and @name='Fürstin Amalia von Gallitzin' and @vorname='Fürstin Amalia von' and @nachname='Gallitzin'] -opus/data/definitions/personDefs/personDef[@index='123' and @name=''] -opus/data/definitions/personDefs/personDef[@index='124' and @name=''] -opus/data/definitions/personDefs/personDef[@index='125' and @name='Johann Gottlieb Steudel' and @vorname='Johann Gottlieb' and @nachname='Steudel'] -opus/data/definitions/personDefs/personDef[@index='126' and @name=''] -opus/data/definitions/personDefs/personDef[@index='127' and @name='Abraham Jakob Penzel' and @vorname='Abraham Jakob' and @nachname='Penzel'] -opus/data/definitions/personDefs/personDef[@index='128' and @name='Johann Ludwig Garbe' and @vorname='Johann Ludwig' and @nachname='Garbe'] -opus/data/definitions/personDefs/personDef[@index='12' and @name='Marianne Lindner, geb. Courtan' and @vorname='Marianne' and @nachname='Lindner'] -opus/data/definitions/personDefs/personDef[@index='13' and @name='Arnold Corman' and @vorname='Arnold' and @nachname='Corman'] -opus/data/definitions/personDefs/personDef[@index='14' and @name='George Bassa' and @vorname='George' and @nachname='Bassa'] -opus/data/definitions/personDefs/personDef[@index='15' and @name='Johann Ehregott Friedrich Lindner' and @vorname='Johann Ehregott Friedrich' and @nachname='Lindner'] -opus/data/definitions/personDefs/personDef[@index='16' and @name='Johann Christoph Berens' and @vorname='Johann Christoph' and @nachname='Berens'] -opus/data/definitions/personDefs/personDef[@index='17' and @name='Arend Berens' and @vorname='Arend' and @nachname='Berens'] -opus/data/definitions/personDefs/personDef[@index='18' and @name='Johann Christoph Ruprecht' and @vorname='Johann Christoph' and @nachname='Ruprecht'] -opus/data/definitions/personDefs/personDef[@index='19' and @name='Senel' and @vorname='[unbek. Vorname]' and @nachname='Senel'] -opus/data/definitions/personDefs/personDef[@index='1' and @name='Johann Georg Hamann' and @vorname='Johann Georg' and @nachname='Hamann'] -opus/data/definitions/personDefs/personDef[@index='-1' and @name='Unbekannt'] -opus/data/definitions/personDefs/personDef[@index='20' and @name=''] -opus/data/definitions/personDefs/personDef[@index='21' and @name='Gottlob Immanuel Lindner' and @vorname='Gottlob Immanuel' and @nachname='Lindner'] -opus/data/definitions/personDefs/personDef[@index='22' and @name='Peter Christoph Baron von Witten' and @vorname='Peter Christoph Baron von' and @nachname='Witten'] -opus/data/definitions/personDefs/personDef[@index='23' and @name='Joseph Johann Baron von Witten' and @vorname='Joseph Johann Baron von' and @nachname='Witten'] -opus/data/definitions/personDefs/personDef[@index='24' and @name=''] -opus/data/definitions/personDefs/personDef[@index='25' and @name=''] -opus/data/definitions/personDefs/personDef[@index='26' and @name=''] -opus/data/definitions/personDefs/personDef[@index='27' and @name=''] -opus/data/definitions/personDefs/personDef[@index='28' and @name=''] -opus/data/definitions/personDefs/personDef[@index='29' and @name=''] -opus/data/definitions/personDefs/personDef[@index='2' and @name='Gottlob Jacob Sahme' and @vorname='Gottlob Jacob' and @nachname='Sahme'] -opus/data/definitions/personDefs/personDef[@index='30' and @name=''] -opus/data/definitions/personDefs/personDef[@index='31' and @name='Immanuel Kant' and @vorname='Immanuel' and @nachname='Kant'] -opus/data/definitions/personDefs/personDef[@index='32' and @name=','] -opus/data/definitions/personDefs/personDef[@index='33' and @name='Georg David Kypke' and @vorname='Georg David' and @nachname='Kypke'] -opus/data/definitions/personDefs/personDef[@index='34' and @name=''] -opus/data/definitions/personDefs/personDef[@index='35' and @name='Christ Anton Tottien' and @vorname='Christ Anton' and @nachname='Tottien'] -opus/data/definitions/personDefs/personDef[@index='36' and @name='Moses Mendelssohn' and @vorname='Moses' and @nachname='Mendelssohn'] -opus/data/definitions/personDefs/personDef[@index='37' and @name='Friedrich Nicolai' and @vorname='Friedrich' and @nachname='Nicolai'] -opus/data/definitions/personDefs/personDef[@index='38' and @name='Sebastian Friedrich Trescho' and @vorname='Sebastian Friedrich' and @nachname='Trescho'] -opus/data/definitions/personDefs/personDef[@index='39' and @name='Friedrich Carl von Moser' and @vorname='Friedrich Carl von' and @nachname='Moser'] -opus/data/definitions/personDefs/personDef[@index='3' and @name='Philipp Belger' and @vorname='Philipp' and @nachname='Belger'] -opus/data/definitions/personDefs/personDef[@index='40' and @name='Die Königlich Preußische Kriegs- und Domänen-Kammer zu Königsberg i. Pr.' and @nachname='Kriegs- und Domänenkammer'] -opus/data/definitions/personDefs/personDef[@index='41' and @name='Johann Gottfried Herder' and @vorname='Johann Gottfried' and @nachname='Herder'] -opus/data/definitions/personDefs/personDef[@index='42' and @name='Die Königlich Preußische Regierung zu Königsberg in Preußen' and @nachname='Regierung'] -opus/data/definitions/personDefs/personDef[@index='43' and @name=''] -opus/data/definitions/personDefs/personDef[@index='44' and @name='Christian Gottlieb Arndt' and @vorname='Christian Gottlieb' and @nachname='Arndt'] -opus/data/definitions/personDefs/personDef[@index='45' and @name='Johann Christian Buchholtz' and @vorname='Johann Christian' and @nachname='Buchholtz'] -opus/data/definitions/personDefs/personDef[@index='46' and @name='Das Königliche Pupillen-Kollegium' and @nachname='Pupillen-Kollegium'] -opus/data/definitions/personDefs/personDef[@index='47' and @name='Friedrich II. (Preußen)' and @nachname='Friedrich II.'] -opus/data/definitions/personDefs/personDef[@index='48' and @name='Kriegsrat Hindersin' and @nachname='Hindersin'] -opus/data/definitions/personDefs/personDef[@index='49' and @name='Johann Friedrich Hartknoch' and @vorname='Johann Friedrich' and @nachname='Hartknoch'] -opus/data/definitions/personDefs/personDef[@index='4' and @name='Ein Studienfreund' and @nachname='Studienfreund'] -opus/data/definitions/personDefs/personDef[@index='50' and @name='Johann August Eberhard' and @vorname='Johann August' and @nachname='Eberhard'] -opus/data/definitions/personDefs/personDef[@index='51' and @name='Johann Jakob Kanter' and @vorname='Johann Jakob' and @nachname='Kanter'] -opus/data/definitions/personDefs/personDef[@index='52' and @name='Der Geheime Ausschuß der G. v. V. Frey Mäurer Loge zu Königsberg in Preußen' and @nachname='Frey Mäurer Loge'] -opus/data/definitions/personDefs/personDef[@index='53' and @name='Jacob Friedrich Hinz' and @vorname='Jacob Friedrich' and @nachname='Hinz'] -opus/data/definitions/personDefs/personDef[@index='54' and @name='Carl Theophilus Guichard' and @vorname='Carl Theophilus' and @nachname='Guichard'] -opus/data/definitions/personDefs/personDef[@index='55' and @name='Johann Joachim Christoph Bode' and @vorname='Johann Joachim Christoph' and @nachname='Bode'] -opus/data/definitions/personDefs/personDef[@index='56' and @name='Accise und Zoll-Direktor Stockmar' and @nachname='Stockmar'] -opus/data/definitions/personDefs/personDef[@index='57' and @name=''] -opus/data/definitions/personDefs/personDef[@index='58' and @name=''] -opus/data/definitions/personDefs/personDef[@index='59' and @name='Albertine Hartknoch, geb. Toussaint' and @vorname='Albertine' and @nachname='Hartknoch'] -opus/data/definitions/personDefs/personDef[@index='5' and @name='Johann Christoph Hamann (Vater)' and @vorname='Johann Christoph' and @nachname='Hamann'] -opus/data/definitions/personDefs/personDef[@index='60' and @name='Johann Friedrich Reichardt' and @vorname='Johann Friedrich' and @nachname='Reichardt'] -opus/data/definitions/personDefs/personDef[@index='61' and @name='Matthias Claudius' and @vorname='Matthias' and @nachname='Claudius'] -opus/data/definitions/personDefs/personDef[@index='62' and @name='Johann August Starck' and @vorname='Johann August' and @nachname='Starck'] -opus/data/definitions/personDefs/personDef[@index='63' and @name='Catharina Dorothea Güldenhorn, geb. Herder' and @vorname='Catharina Dorothea' and @nachname='Güldenhorn'] -opus/data/definitions/personDefs/personDef[@index='64' and @name='Rebecca Claudius' and @vorname='Rebecca' and @nachname='Claudius'] -opus/data/definitions/personDefs/personDef[@index='65' and @name=''] -opus/data/definitions/personDefs/personDef[@index='66' and @name=''] -opus/data/definitions/personDefs/personDef[@index='67' and @name='Sophie Marianne Courtan, geb. Toussaint' and @vorname='Sophie Marianne' and @nachname='Courtan'] -opus/data/definitions/personDefs/personDef[@index='68' and @name='Die General-Administration' and @nachname='General-Administration'] -opus/data/definitions/personDefs/personDef[@index='69' and @name='Witwe Blom' and @nachname='Blom'] -opus/data/definitions/personDefs/personDef[@index='6' and @name='Maria Magdalena Hamann (Mutter)' and @vorname='Maria Magdalena' and @nachname='Hamann'] -opus/data/definitions/personDefs/personDef[@index='70' and @name=''] -opus/data/definitions/personDefs/personDef[@index='71' and @name='Dr. Laubmeyer' and @nachname='Laubmeyer'] -opus/data/definitions/personDefs/personDef[@index='72' and @name='Christoph Kaufmann' and @vorname='Christoph' and @nachname='Kaufmann'] -opus/data/definitions/personDefs/personDef[@index='73' and @name='Johann Ehrmann' and @vorname='Johann' and @nachname='Ehrmann'] -opus/data/definitions/personDefs/personDef[@index='74' and @name=''] -opus/data/definitions/personDefs/personDef[@index='75' and @name='vmtl. Samuel Lippmann Löwen' and @vorname='Samuel Lippmann' and @nachname='Löwen'] -opus/data/definitions/personDefs/personDef[@index='76' and @name='Johann Caspar Lavater' and @vorname='Johann Caspar' and @nachname='Lavater'] -opus/data/definitions/personDefs/personDef[@index='77' and @name='Elise Kaufmann, geb. Ziegler' and @vorname='Elise' and @nachname='Kaufmann'] -opus/data/definitions/personDefs/personDef[@index='78' and @name='Caroline Charlotte Amalie Reichsgräfin von Keyserling, geb. von Truchseß-Waldburg' and @vorname='Caroline Charlotte Amalie Reichsgräfin von' and @nachname='Keyserling'] -opus/data/definitions/personDefs/personDef[@index='79' and @name=''] -opus/data/definitions/personDefs/personDef[@index='7' and @name='Johann Gottlieb Kreutzfeld' and @vorname='Johann Gottlieb' and @nachname='Kreutzfeld'] -opus/data/definitions/personDefs/personDef[@index='80' and @name=''] -opus/data/definitions/personDefs/personDef[@index='81' and @name=''] -opus/data/definitions/personDefs/personDef[@index='82' and @name=''] -opus/data/definitions/personDefs/personDef[@index='83' and @name='Hans Jacob von Auerswald' and @vorname='Hans Jacob von' and @nachname='Auerswald'] -opus/data/definitions/personDefs/personDef[@index='84' and @name=''] -opus/data/definitions/personDefs/personDef[@index='85' and @name='Caroline Stoltz' and @vorname='Caroline' and @nachname='Stoltz'] -opus/data/definitions/personDefs/personDef[@index='86' and @name='Johann Caspar Häfeli' and @vorname='Johann Caspar' and @nachname='Häfeli'] -opus/data/definitions/personDefs/personDef[@index='87' and @name='Christian Jakob Kraus' and @vorname='Christian Jakob' and @nachname='Kraus'] -opus/data/definitions/personDefs/personDef[@index='88' and @name='Friedrich Gottlieb Klopstock' and @vorname='Friedrich Gottlieb' and @nachname='Klopstock'] -opus/data/definitions/personDefs/personDef[@index='89' and @name='Caroline Herder, geb. Flachsland' and @vorname='Caroline' and @nachname='Herder'] -opus/data/definitions/personDefs/personDef[@index='8' and @name='Johann Gotthelf Lindner' and @vorname='Johann Gotthelf' and @nachname='Lindner'] -opus/data/definitions/personDefs/personDef[@index='90' and @name='Johann Friedrich Kleuker' and @vorname='Johann Friedrich' and @nachname='Kleuker'] -opus/data/definitions/personDefs/personDef[@index='91' and @name='Heinrich Christian Reichsgraf von Keyserling' and @vorname='Heinrich Christian Reichsgraf von' and @nachname='Keyserling'] -opus/data/definitions/personDefs/personDef[@index='92' and @name='Johann Heinrich Voß' and @vorname='Johann Heinrich' and @nachname='Voß'] -opus/data/definitions/personDefs/personDef[@index='93' and @name='August Herder' and @vorname='August' and @nachname='Herder'] -opus/data/definitions/personDefs/personDef[@index='94' and @name='Johann Georg Müller' and @vorname='Johann Georg' and @nachname='Müller'] -opus/data/definitions/personDefs/personDef[@index='95' and @name='Friedrich Heinrich Jacobi' and @vorname='Friedrich Heinrich' and @nachname='Jacobi'] -opus/data/definitions/personDefs/personDef[@index='96' and @name=''] -opus/data/definitions/personDefs/personDef[@index='97' and @name='Johann George Scheffner' and @vorname='Johann George' and @nachname='Scheffner'] -opus/data/definitions/personDefs/personDef[@index='98' and @name='Johann Michael Hamann (Sohn)' and @vorname='Johann Michael' and @nachname='Hamann'] -opus/data/definitions/personDefs/personDef[@index='99' and @name=''] -opus/data/definitions/personDefs/personDef[@index='9' and @name='Daniel Pegelow' and @vorname='Daniel' and @nachname='Pegelow'] -opus/data/definitions/structureDefs -opus/data/definitions/structureDefs/structureDef[@index='1' and @level='1' and @type='volume' and @friendlyName='Band {1}'] -opus/data/definitions/structureDefs/structureDef[@index='2' and @level='2' and @type='letter' and @friendlyName='Brief {2}'] -opus/data/definitions/structureDefs/structureDef[@index='3' and @level='3' and @type='letterSection' and @friendlyName='Abschnitt {3}'] -opus/data/descriptions -opus/data/descriptions/letterDesc/autopsic[@value='1'] -opus/data/descriptions/letterDesc/autopsic[@value='10'] -opus/data/descriptions/letterDesc/autopsic[@value='100'] -opus/data/descriptions/letterDesc/autopsic[@value='1000'] -opus/data/descriptions/letterDesc/autopsic[@value='1001'] -opus/data/descriptions/letterDesc/autopsic[@value='1002'] -opus/data/descriptions/letterDesc/autopsic[@value='1003'] -opus/data/descriptions/letterDesc/autopsic[@value='1004'] -opus/data/descriptions/letterDesc/autopsic[@value='1005'] -opus/data/descriptions/letterDesc/autopsic[@value='1006'] -opus/data/descriptions/letterDesc/autopsic[@value='1007'] -opus/data/descriptions/letterDesc/autopsic[@value='1008'] -opus/data/descriptions/letterDesc/autopsic[@value='1009'] -opus/data/descriptions/letterDesc/autopsic[@value='101'] -opus/data/descriptions/letterDesc/autopsic[@value='1010'] -opus/data/descriptions/letterDesc/autopsic[@value='1011'] -opus/data/descriptions/letterDesc/autopsic[@value='1012'] -opus/data/descriptions/letterDesc/autopsic[@value='1013'] -opus/data/descriptions/letterDesc/autopsic[@value='1014'] -opus/data/descriptions/letterDesc/autopsic[@value='1015'] -opus/data/descriptions/letterDesc/autopsic[@value='1016'] -opus/data/descriptions/letterDesc/autopsic[@value='1017'] -opus/data/descriptions/letterDesc/autopsic[@value='1018'] -opus/data/descriptions/letterDesc/autopsic[@value='1019'] -opus/data/descriptions/letterDesc/autopsic[@value='102'] -opus/data/descriptions/letterDesc/autopsic[@value='1020'] -opus/data/descriptions/letterDesc/autopsic[@value='1021'] -opus/data/descriptions/letterDesc/autopsic[@value='1022'] -opus/data/descriptions/letterDesc/autopsic[@value='1023'] -opus/data/descriptions/letterDesc/autopsic[@value='1024'] -opus/data/descriptions/letterDesc/autopsic[@value='1025'] -opus/data/descriptions/letterDesc/autopsic[@value='1026'] -opus/data/descriptions/letterDesc/autopsic[@value='1027'] -opus/data/descriptions/letterDesc/autopsic[@value='1028'] -opus/data/descriptions/letterDesc/autopsic[@value='1029'] -opus/data/descriptions/letterDesc/autopsic[@value='103'] -opus/data/descriptions/letterDesc/autopsic[@value='1030'] -opus/data/descriptions/letterDesc/autopsic[@value='1031'] -opus/data/descriptions/letterDesc/autopsic[@value='1032'] -opus/data/descriptions/letterDesc/autopsic[@value='1033'] -opus/data/descriptions/letterDesc/autopsic[@value='1034'] -opus/data/descriptions/letterDesc/autopsic[@value='1035'] -opus/data/descriptions/letterDesc/autopsic[@value='1036'] -opus/data/descriptions/letterDesc/autopsic[@value='1037'] -opus/data/descriptions/letterDesc/autopsic[@value='1038'] -opus/data/descriptions/letterDesc/autopsic[@value='1039'] -opus/data/descriptions/letterDesc/autopsic[@value='104'] -opus/data/descriptions/letterDesc/autopsic[@value='1040'] -opus/data/descriptions/letterDesc/autopsic[@value='1041'] -opus/data/descriptions/letterDesc/autopsic[@value='1042'] -opus/data/descriptions/letterDesc/autopsic[@value='1043'] -opus/data/descriptions/letterDesc/autopsic[@value='1044'] -opus/data/descriptions/letterDesc/autopsic[@value='1045'] -opus/data/descriptions/letterDesc/autopsic[@value='1046'] -opus/data/descriptions/letterDesc/autopsic[@value='1047'] -opus/data/descriptions/letterDesc/autopsic[@value='1048'] -opus/data/descriptions/letterDesc/autopsic[@value='1049'] -opus/data/descriptions/letterDesc/autopsic[@value='105'] -opus/data/descriptions/letterDesc/autopsic[@value='1050'] -opus/data/descriptions/letterDesc/autopsic[@value='1051'] -opus/data/descriptions/letterDesc/autopsic[@value='1052'] -opus/data/descriptions/letterDesc/autopsic[@value='1053'] -opus/data/descriptions/letterDesc/autopsic[@value='1054'] -opus/data/descriptions/letterDesc/autopsic[@value='1055'] -opus/data/descriptions/letterDesc/autopsic[@value='1056'] -opus/data/descriptions/letterDesc/autopsic[@value='1057'] -opus/data/descriptions/letterDesc/autopsic[@value='1058'] -opus/data/descriptions/letterDesc/autopsic[@value='1059'] -opus/data/descriptions/letterDesc/autopsic[@value='106'] -opus/data/descriptions/letterDesc/autopsic[@value='1060'] -opus/data/descriptions/letterDesc/autopsic[@value='1061'] -opus/data/descriptions/letterDesc/autopsic[@value='1062'] -opus/data/descriptions/letterDesc/autopsic[@value='1063'] -opus/data/descriptions/letterDesc/autopsic[@value='1064'] -opus/data/descriptions/letterDesc/autopsic[@value='1065'] -opus/data/descriptions/letterDesc/autopsic[@value='1066'] -opus/data/descriptions/letterDesc/autopsic[@value='1067'] -opus/data/descriptions/letterDesc/autopsic[@value='1068'] -opus/data/descriptions/letterDesc/autopsic[@value='1069'] -opus/data/descriptions/letterDesc/autopsic[@value='107'] -opus/data/descriptions/letterDesc/autopsic[@value='1070'] -opus/data/descriptions/letterDesc/autopsic[@value='1071'] -opus/data/descriptions/letterDesc/autopsic[@value='1072'] -opus/data/descriptions/letterDesc/autopsic[@value='1073'] -opus/data/descriptions/letterDesc/autopsic[@value='1074'] -opus/data/descriptions/letterDesc/autopsic[@value='1075'] -opus/data/descriptions/letterDesc/autopsic[@value='1076'] -opus/data/descriptions/letterDesc/autopsic[@value='1077'] -opus/data/descriptions/letterDesc/autopsic[@value='1078'] -opus/data/descriptions/letterDesc/autopsic[@value='1079'] -opus/data/descriptions/letterDesc/autopsic[@value='108'] -opus/data/descriptions/letterDesc/autopsic[@value='1080'] -opus/data/descriptions/letterDesc/autopsic[@value='1081'] -opus/data/descriptions/letterDesc/autopsic[@value='1082'] -opus/data/descriptions/letterDesc/autopsic[@value='1083'] -opus/data/descriptions/letterDesc/autopsic[@value='1084'] -opus/data/descriptions/letterDesc/autopsic[@value='1085'] -opus/data/descriptions/letterDesc/autopsic[@value='1086'] -opus/data/descriptions/letterDesc/autopsic[@value='1087'] -opus/data/descriptions/letterDesc/autopsic[@value='1088'] -opus/data/descriptions/letterDesc/autopsic[@value='1089'] -opus/data/descriptions/letterDesc/autopsic[@value='109'] -opus/data/descriptions/letterDesc/autopsic[@value='1090'] -opus/data/descriptions/letterDesc/autopsic[@value='1091'] -opus/data/descriptions/letterDesc/autopsic[@value='1092'] -opus/data/descriptions/letterDesc/autopsic[@value='1093'] -opus/data/descriptions/letterDesc/autopsic[@value='1094'] -opus/data/descriptions/letterDesc/autopsic[@value='1095'] -opus/data/descriptions/letterDesc/autopsic[@value='1096'] -opus/data/descriptions/letterDesc/autopsic[@value='1097'] -opus/data/descriptions/letterDesc/autopsic[@value='1098'] -opus/data/descriptions/letterDesc/autopsic[@value='1099'] -opus/data/descriptions/letterDesc/autopsic[@value='11'] -opus/data/descriptions/letterDesc/autopsic[@value='110'] -opus/data/descriptions/letterDesc/autopsic[@value='1100'] -opus/data/descriptions/letterDesc/autopsic[@value='1101'] -opus/data/descriptions/letterDesc/autopsic[@value='1102'] -opus/data/descriptions/letterDesc/autopsic[@value='1103'] -opus/data/descriptions/letterDesc/autopsic[@value='1104'] -opus/data/descriptions/letterDesc/autopsic[@value='1105'] -opus/data/descriptions/letterDesc/autopsic[@value='1106'] -opus/data/descriptions/letterDesc/autopsic[@value='1107'] -opus/data/descriptions/letterDesc/autopsic[@value='1108'] -opus/data/descriptions/letterDesc/autopsic[@value='1109'] -opus/data/descriptions/letterDesc/autopsic[@value='111'] -opus/data/descriptions/letterDesc/autopsic[@value='1110'] -opus/data/descriptions/letterDesc/autopsic[@value='1111'] -opus/data/descriptions/letterDesc/autopsic[@value='1112'] -opus/data/descriptions/letterDesc/autopsic[@value='1113'] -opus/data/descriptions/letterDesc/autopsic[@value='1114'] -opus/data/descriptions/letterDesc/autopsic[@value='1115'] -opus/data/descriptions/letterDesc/autopsic[@value='1116'] -opus/data/descriptions/letterDesc/autopsic[@value='1117'] -opus/data/descriptions/letterDesc/autopsic[@value='1118'] -opus/data/descriptions/letterDesc/autopsic[@value='1119'] -opus/data/descriptions/letterDesc/autopsic[@value='112'] -opus/data/descriptions/letterDesc/autopsic[@value='1120'] -opus/data/descriptions/letterDesc/autopsic[@value='1121'] -opus/data/descriptions/letterDesc/autopsic[@value='1122'] -opus/data/descriptions/letterDesc/autopsic[@value='1123'] -opus/data/descriptions/letterDesc/autopsic[@value='1124'] -opus/data/descriptions/letterDesc/autopsic[@value='1125'] -opus/data/descriptions/letterDesc/autopsic[@value='1126'] -opus/data/descriptions/letterDesc/autopsic[@value='1127'] -opus/data/descriptions/letterDesc/autopsic[@value='1128'] -opus/data/descriptions/letterDesc/autopsic[@value='1129'] -opus/data/descriptions/letterDesc/autopsic[@value='113'] -opus/data/descriptions/letterDesc/autopsic[@value='1130'] -opus/data/descriptions/letterDesc/autopsic[@value='1131'] -opus/data/descriptions/letterDesc/autopsic[@value='1132'] -opus/data/descriptions/letterDesc/autopsic[@value='1133'] -opus/data/descriptions/letterDesc/autopsic[@value='1134'] -opus/data/descriptions/letterDesc/autopsic[@value='1135'] -opus/data/descriptions/letterDesc/autopsic[@value='1136'] -opus/data/descriptions/letterDesc/autopsic[@value='1137'] -opus/data/descriptions/letterDesc/autopsic[@value='1138'] -opus/data/descriptions/letterDesc/autopsic[@value='1139'] -opus/data/descriptions/letterDesc/autopsic[@value='114'] -opus/data/descriptions/letterDesc/autopsic[@value='1140'] -opus/data/descriptions/letterDesc/autopsic[@value='1141'] -opus/data/descriptions/letterDesc/autopsic[@value='1142'] -opus/data/descriptions/letterDesc/autopsic[@value='1143'] -opus/data/descriptions/letterDesc/autopsic[@value='1144'] -opus/data/descriptions/letterDesc/autopsic[@value='1145'] -opus/data/descriptions/letterDesc/autopsic[@value='1146'] -opus/data/descriptions/letterDesc/autopsic[@value='1147'] -opus/data/descriptions/letterDesc/autopsic[@value='1148'] -opus/data/descriptions/letterDesc/autopsic[@value='1149'] -opus/data/descriptions/letterDesc/autopsic[@value='115'] -opus/data/descriptions/letterDesc/autopsic[@value='1150'] -opus/data/descriptions/letterDesc/autopsic[@value='1151'] -opus/data/descriptions/letterDesc/autopsic[@value='1152'] -opus/data/descriptions/letterDesc/autopsic[@value='1153'] -opus/data/descriptions/letterDesc/autopsic[@value='1154'] -opus/data/descriptions/letterDesc/autopsic[@value='1155'] -opus/data/descriptions/letterDesc/autopsic[@value='1156'] -opus/data/descriptions/letterDesc/autopsic[@value='1157'] -opus/data/descriptions/letterDesc/autopsic[@value='1158'] -opus/data/descriptions/letterDesc/autopsic[@value='1159'] -opus/data/descriptions/letterDesc/autopsic[@value='116'] -opus/data/descriptions/letterDesc/autopsic[@value='1160'] -opus/data/descriptions/letterDesc/autopsic[@value='1161'] -opus/data/descriptions/letterDesc/autopsic[@value='1162'] -opus/data/descriptions/letterDesc/autopsic[@value='1163'] -opus/data/descriptions/letterDesc/autopsic[@value='1164'] -opus/data/descriptions/letterDesc/autopsic[@value='1165'] -opus/data/descriptions/letterDesc/autopsic[@value='1166'] -opus/data/descriptions/letterDesc/autopsic[@value='1167'] -opus/data/descriptions/letterDesc/autopsic[@value='1168'] -opus/data/descriptions/letterDesc/autopsic[@value='1169'] -opus/data/descriptions/letterDesc/autopsic[@value='117'] -opus/data/descriptions/letterDesc/autopsic[@value='1170'] -opus/data/descriptions/letterDesc/autopsic[@value='1171'] -opus/data/descriptions/letterDesc/autopsic[@value='1172'] -opus/data/descriptions/letterDesc/autopsic[@value='1173'] -opus/data/descriptions/letterDesc/autopsic[@value='1174'] -opus/data/descriptions/letterDesc/autopsic[@value='1175'] -opus/data/descriptions/letterDesc/autopsic[@value='118'] -opus/data/descriptions/letterDesc/autopsic[@value='119'] -opus/data/descriptions/letterDesc/autopsic[@value='12'] -opus/data/descriptions/letterDesc/autopsic[@value='120'] -opus/data/descriptions/letterDesc/autopsic[@value='121'] -opus/data/descriptions/letterDesc/autopsic[@value='122'] -opus/data/descriptions/letterDesc/autopsic[@value='123'] -opus/data/descriptions/letterDesc/autopsic[@value='124'] -opus/data/descriptions/letterDesc/autopsic[@value='125'] -opus/data/descriptions/letterDesc/autopsic[@value='126'] -opus/data/descriptions/letterDesc/autopsic[@value='127'] -opus/data/descriptions/letterDesc/autopsic[@value='128'] -opus/data/descriptions/letterDesc/autopsic[@value='129'] -opus/data/descriptions/letterDesc/autopsic[@value='13'] -opus/data/descriptions/letterDesc/autopsic[@value='130'] -opus/data/descriptions/letterDesc/autopsic[@value='131'] -opus/data/descriptions/letterDesc/autopsic[@value='132'] -opus/data/descriptions/letterDesc/autopsic[@value='133'] -opus/data/descriptions/letterDesc/autopsic[@value='134'] -opus/data/descriptions/letterDesc/autopsic[@value='135'] -opus/data/descriptions/letterDesc/autopsic[@value='136'] -opus/data/descriptions/letterDesc/autopsic[@value='137'] -opus/data/descriptions/letterDesc/autopsic[@value='138'] -opus/data/descriptions/letterDesc/autopsic[@value='139'] -opus/data/descriptions/letterDesc/autopsic[@value='14'] -opus/data/descriptions/letterDesc/autopsic[@value='140'] -opus/data/descriptions/letterDesc/autopsic[@value='141'] -opus/data/descriptions/letterDesc/autopsic[@value='142'] -opus/data/descriptions/letterDesc/autopsic[@value='143'] -opus/data/descriptions/letterDesc/autopsic[@value='144'] -opus/data/descriptions/letterDesc/autopsic[@value='145'] -opus/data/descriptions/letterDesc/autopsic[@value='146'] -opus/data/descriptions/letterDesc/autopsic[@value='147'] -opus/data/descriptions/letterDesc/autopsic[@value='148'] -opus/data/descriptions/letterDesc/autopsic[@value='149'] -opus/data/descriptions/letterDesc/autopsic[@value='15'] -opus/data/descriptions/letterDesc/autopsic[@value='150'] -opus/data/descriptions/letterDesc/autopsic[@value='151'] -opus/data/descriptions/letterDesc/autopsic[@value='152'] -opus/data/descriptions/letterDesc/autopsic[@value='153'] -opus/data/descriptions/letterDesc/autopsic[@value='154'] -opus/data/descriptions/letterDesc/autopsic[@value='155'] -opus/data/descriptions/letterDesc/autopsic[@value='156'] -opus/data/descriptions/letterDesc/autopsic[@value='157'] -opus/data/descriptions/letterDesc/autopsic[@value='158'] -opus/data/descriptions/letterDesc/autopsic[@value='159'] -opus/data/descriptions/letterDesc/autopsic[@value='16'] -opus/data/descriptions/letterDesc/autopsic[@value='160'] -opus/data/descriptions/letterDesc/autopsic[@value='161'] -opus/data/descriptions/letterDesc/autopsic[@value='162'] -opus/data/descriptions/letterDesc/autopsic[@value='163'] -opus/data/descriptions/letterDesc/autopsic[@value='164'] -opus/data/descriptions/letterDesc/autopsic[@value='165'] -opus/data/descriptions/letterDesc/autopsic[@value='166'] -opus/data/descriptions/letterDesc/autopsic[@value='167'] -opus/data/descriptions/letterDesc/autopsic[@value='168'] -opus/data/descriptions/letterDesc/autopsic[@value='169'] -opus/data/descriptions/letterDesc/autopsic[@value='17'] -opus/data/descriptions/letterDesc/autopsic[@value='170'] -opus/data/descriptions/letterDesc/autopsic[@value='171'] -opus/data/descriptions/letterDesc/autopsic[@value='172'] -opus/data/descriptions/letterDesc/autopsic[@value='173'] -opus/data/descriptions/letterDesc/autopsic[@value='174'] -opus/data/descriptions/letterDesc/autopsic[@value='175'] -opus/data/descriptions/letterDesc/autopsic[@value='176'] -opus/data/descriptions/letterDesc/autopsic[@value='177'] -opus/data/descriptions/letterDesc/autopsic[@value='178'] -opus/data/descriptions/letterDesc/autopsic[@value='179'] -opus/data/descriptions/letterDesc/autopsic[@value='18'] -opus/data/descriptions/letterDesc/autopsic[@value='180'] -opus/data/descriptions/letterDesc/autopsic[@value='181'] -opus/data/descriptions/letterDesc/autopsic[@value='182'] -opus/data/descriptions/letterDesc/autopsic[@value='183'] -opus/data/descriptions/letterDesc/autopsic[@value='184'] -opus/data/descriptions/letterDesc/autopsic[@value='185'] -opus/data/descriptions/letterDesc/autopsic[@value='186'] -opus/data/descriptions/letterDesc/autopsic[@value='187'] -opus/data/descriptions/letterDesc/autopsic[@value='188'] -opus/data/descriptions/letterDesc/autopsic[@value='189'] -opus/data/descriptions/letterDesc/autopsic[@value='19'] -opus/data/descriptions/letterDesc/autopsic[@value='190'] -opus/data/descriptions/letterDesc/autopsic[@value='190a'] -opus/data/descriptions/letterDesc/autopsic[@value='191'] -opus/data/descriptions/letterDesc/autopsic[@value='192'] -opus/data/descriptions/letterDesc/autopsic[@value='193'] -opus/data/descriptions/letterDesc/autopsic[@value='194'] -opus/data/descriptions/letterDesc/autopsic[@value='195'] -opus/data/descriptions/letterDesc/autopsic[@value='196'] -opus/data/descriptions/letterDesc/autopsic[@value='197'] -opus/data/descriptions/letterDesc/autopsic[@value='198'] -opus/data/descriptions/letterDesc/autopsic[@value='199'] -opus/data/descriptions/letterDesc/autopsic[@value='2'] -opus/data/descriptions/letterDesc/autopsic[@value='20'] -opus/data/descriptions/letterDesc/autopsic[@value='200'] -opus/data/descriptions/letterDesc/autopsic[@value='201'] -opus/data/descriptions/letterDesc/autopsic[@value='202'] -opus/data/descriptions/letterDesc/autopsic[@value='203'] -opus/data/descriptions/letterDesc/autopsic[@value='204'] -opus/data/descriptions/letterDesc/autopsic[@value='205'] -opus/data/descriptions/letterDesc/autopsic[@value='206'] -opus/data/descriptions/letterDesc/autopsic[@value='207'] -opus/data/descriptions/letterDesc/autopsic[@value='208'] -opus/data/descriptions/letterDesc/autopsic[@value='209'] -opus/data/descriptions/letterDesc/autopsic[@value='21'] -opus/data/descriptions/letterDesc/autopsic[@value='210'] -opus/data/descriptions/letterDesc/autopsic[@value='211'] -opus/data/descriptions/letterDesc/autopsic[@value='212'] -opus/data/descriptions/letterDesc/autopsic[@value='213'] -opus/data/descriptions/letterDesc/autopsic[@value='214'] -opus/data/descriptions/letterDesc/autopsic[@value='215'] -opus/data/descriptions/letterDesc/autopsic[@value='216'] -opus/data/descriptions/letterDesc/autopsic[@value='217'] -opus/data/descriptions/letterDesc/autopsic[@value='218'] -opus/data/descriptions/letterDesc/autopsic[@value='219'] -opus/data/descriptions/letterDesc/autopsic[@value='22'] -opus/data/descriptions/letterDesc/autopsic[@value='220'] -opus/data/descriptions/letterDesc/autopsic[@value='221'] -opus/data/descriptions/letterDesc/autopsic[@value='222'] -opus/data/descriptions/letterDesc/autopsic[@value='223'] -opus/data/descriptions/letterDesc/autopsic[@value='224'] -opus/data/descriptions/letterDesc/autopsic[@value='225'] -opus/data/descriptions/letterDesc/autopsic[@value='226'] -opus/data/descriptions/letterDesc/autopsic[@value='227'] -opus/data/descriptions/letterDesc/autopsic[@value='228'] -opus/data/descriptions/letterDesc/autopsic[@value='229'] -opus/data/descriptions/letterDesc/autopsic[@value='23'] -opus/data/descriptions/letterDesc/autopsic[@value='230'] -opus/data/descriptions/letterDesc/autopsic[@value='231'] -opus/data/descriptions/letterDesc/autopsic[@value='232'] -opus/data/descriptions/letterDesc/autopsic[@value='233'] -opus/data/descriptions/letterDesc/autopsic[@value='234'] -opus/data/descriptions/letterDesc/autopsic[@value='235'] -opus/data/descriptions/letterDesc/autopsic[@value='236'] -opus/data/descriptions/letterDesc/autopsic[@value='237'] -opus/data/descriptions/letterDesc/autopsic[@value='238'] -opus/data/descriptions/letterDesc/autopsic[@value='239'] -opus/data/descriptions/letterDesc/autopsic[@value='24'] -opus/data/descriptions/letterDesc/autopsic[@value='240'] -opus/data/descriptions/letterDesc/autopsic[@value='241'] -opus/data/descriptions/letterDesc/autopsic[@value='242'] -opus/data/descriptions/letterDesc/autopsic[@value='243'] -opus/data/descriptions/letterDesc/autopsic[@value='244'] -opus/data/descriptions/letterDesc/autopsic[@value='245'] -opus/data/descriptions/letterDesc/autopsic[@value='246'] -opus/data/descriptions/letterDesc/autopsic[@value='247'] -opus/data/descriptions/letterDesc/autopsic[@value='248'] -opus/data/descriptions/letterDesc/autopsic[@value='249'] -opus/data/descriptions/letterDesc/autopsic[@value='25'] -opus/data/descriptions/letterDesc/autopsic[@value='250'] -opus/data/descriptions/letterDesc/autopsic[@value='251'] -opus/data/descriptions/letterDesc/autopsic[@value='252'] -opus/data/descriptions/letterDesc/autopsic[@value='253'] -opus/data/descriptions/letterDesc/autopsic[@value='254'] -opus/data/descriptions/letterDesc/autopsic[@value='254a'] -opus/data/descriptions/letterDesc/autopsic[@value='255'] -opus/data/descriptions/letterDesc/autopsic[@value='255a'] -opus/data/descriptions/letterDesc/autopsic[@value='256'] -opus/data/descriptions/letterDesc/autopsic[@value='257'] -opus/data/descriptions/letterDesc/autopsic[@value='258'] -opus/data/descriptions/letterDesc/autopsic[@value='259'] -opus/data/descriptions/letterDesc/autopsic[@value='26'] -opus/data/descriptions/letterDesc/autopsic[@value='260'] -opus/data/descriptions/letterDesc/autopsic[@value='261'] -opus/data/descriptions/letterDesc/autopsic[@value='262'] -opus/data/descriptions/letterDesc/autopsic[@value='263'] -opus/data/descriptions/letterDesc/autopsic[@value='264'] -opus/data/descriptions/letterDesc/autopsic[@value='265'] -opus/data/descriptions/letterDesc/autopsic[@value='266'] -opus/data/descriptions/letterDesc/autopsic[@value='267'] -opus/data/descriptions/letterDesc/autopsic[@value='268'] -opus/data/descriptions/letterDesc/autopsic[@value='269'] -opus/data/descriptions/letterDesc/autopsic[@value='27'] -opus/data/descriptions/letterDesc/autopsic[@value='270'] -opus/data/descriptions/letterDesc/autopsic[@value='271'] -opus/data/descriptions/letterDesc/autopsic[@value='272'] -opus/data/descriptions/letterDesc/autopsic[@value='272a'] -opus/data/descriptions/letterDesc/autopsic[@value='273'] -opus/data/descriptions/letterDesc/autopsic[@value='274'] -opus/data/descriptions/letterDesc/autopsic[@value='275'] -opus/data/descriptions/letterDesc/autopsic[@value='276'] -opus/data/descriptions/letterDesc/autopsic[@value='277'] -opus/data/descriptions/letterDesc/autopsic[@value='278'] -opus/data/descriptions/letterDesc/autopsic[@value='279'] -opus/data/descriptions/letterDesc/autopsic[@value='28'] -opus/data/descriptions/letterDesc/autopsic[@value='280'] -opus/data/descriptions/letterDesc/autopsic[@value='281'] -opus/data/descriptions/letterDesc/autopsic[@value='282'] -opus/data/descriptions/letterDesc/autopsic[@value='283'] -opus/data/descriptions/letterDesc/autopsic[@value='284'] -opus/data/descriptions/letterDesc/autopsic[@value='285'] -opus/data/descriptions/letterDesc/autopsic[@value='286'] -opus/data/descriptions/letterDesc/autopsic[@value='287'] -opus/data/descriptions/letterDesc/autopsic[@value='288'] -opus/data/descriptions/letterDesc/autopsic[@value='289'] -opus/data/descriptions/letterDesc/autopsic[@value='29'] -opus/data/descriptions/letterDesc/autopsic[@value='290'] -opus/data/descriptions/letterDesc/autopsic[@value='291'] -opus/data/descriptions/letterDesc/autopsic[@value='292'] -opus/data/descriptions/letterDesc/autopsic[@value='293'] -opus/data/descriptions/letterDesc/autopsic[@value='294'] -opus/data/descriptions/letterDesc/autopsic[@value='295'] -opus/data/descriptions/letterDesc/autopsic[@value='296'] -opus/data/descriptions/letterDesc/autopsic[@value='297'] -opus/data/descriptions/letterDesc/autopsic[@value='298'] -opus/data/descriptions/letterDesc/autopsic[@value='299'] -opus/data/descriptions/letterDesc/autopsic[@value='3'] -opus/data/descriptions/letterDesc/autopsic[@value='30'] -opus/data/descriptions/letterDesc/autopsic[@value='300'] -opus/data/descriptions/letterDesc/autopsic[@value='301'] -opus/data/descriptions/letterDesc/autopsic[@value='302'] -opus/data/descriptions/letterDesc/autopsic[@value='303'] -opus/data/descriptions/letterDesc/autopsic[@value='304'] -opus/data/descriptions/letterDesc/autopsic[@value='305'] -opus/data/descriptions/letterDesc/autopsic[@value='306'] -opus/data/descriptions/letterDesc/autopsic[@value='307'] -opus/data/descriptions/letterDesc/autopsic[@value='308'] -opus/data/descriptions/letterDesc/autopsic[@value='309'] -opus/data/descriptions/letterDesc/autopsic[@value='31'] -opus/data/descriptions/letterDesc/autopsic[@value='310'] -opus/data/descriptions/letterDesc/autopsic[@value='311'] -opus/data/descriptions/letterDesc/autopsic[@value='312'] -opus/data/descriptions/letterDesc/autopsic[@value='313'] -opus/data/descriptions/letterDesc/autopsic[@value='314'] -opus/data/descriptions/letterDesc/autopsic[@value='315'] -opus/data/descriptions/letterDesc/autopsic[@value='316'] -opus/data/descriptions/letterDesc/autopsic[@value='317'] -opus/data/descriptions/letterDesc/autopsic[@value='318'] -opus/data/descriptions/letterDesc/autopsic[@value='319'] -opus/data/descriptions/letterDesc/autopsic[@value='32'] -opus/data/descriptions/letterDesc/autopsic[@value='320'] -opus/data/descriptions/letterDesc/autopsic[@value='321'] -opus/data/descriptions/letterDesc/autopsic[@value='322'] -opus/data/descriptions/letterDesc/autopsic[@value='323'] -opus/data/descriptions/letterDesc/autopsic[@value='324'] -opus/data/descriptions/letterDesc/autopsic[@value='325'] -opus/data/descriptions/letterDesc/autopsic[@value='326'] -opus/data/descriptions/letterDesc/autopsic[@value='327'] -opus/data/descriptions/letterDesc/autopsic[@value='328'] -opus/data/descriptions/letterDesc/autopsic[@value='329'] -opus/data/descriptions/letterDesc/autopsic[@value='33'] -opus/data/descriptions/letterDesc/autopsic[@value='330'] -opus/data/descriptions/letterDesc/autopsic[@value='331'] -opus/data/descriptions/letterDesc/autopsic[@value='332'] -opus/data/descriptions/letterDesc/autopsic[@value='333'] -opus/data/descriptions/letterDesc/autopsic[@value='334'] -opus/data/descriptions/letterDesc/autopsic[@value='335'] -opus/data/descriptions/letterDesc/autopsic[@value='336'] -opus/data/descriptions/letterDesc/autopsic[@value='337'] -opus/data/descriptions/letterDesc/autopsic[@value='338'] -opus/data/descriptions/letterDesc/autopsic[@value='339'] -opus/data/descriptions/letterDesc/autopsic[@value='34'] -opus/data/descriptions/letterDesc/autopsic[@value='340'] -opus/data/descriptions/letterDesc/autopsic[@value='341'] -opus/data/descriptions/letterDesc/autopsic[@value='342'] -opus/data/descriptions/letterDesc/autopsic[@value='343'] -opus/data/descriptions/letterDesc/autopsic[@value='344'] -opus/data/descriptions/letterDesc/autopsic[@value='345'] -opus/data/descriptions/letterDesc/autopsic[@value='346'] -opus/data/descriptions/letterDesc/autopsic[@value='347'] -opus/data/descriptions/letterDesc/autopsic[@value='348'] -opus/data/descriptions/letterDesc/autopsic[@value='349'] -opus/data/descriptions/letterDesc/autopsic[@value='35'] -opus/data/descriptions/letterDesc/autopsic[@value='350'] -opus/data/descriptions/letterDesc/autopsic[@value='351'] -opus/data/descriptions/letterDesc/autopsic[@value='352'] -opus/data/descriptions/letterDesc/autopsic[@value='353'] -opus/data/descriptions/letterDesc/autopsic[@value='354'] -opus/data/descriptions/letterDesc/autopsic[@value='355'] -opus/data/descriptions/letterDesc/autopsic[@value='356'] -opus/data/descriptions/letterDesc/autopsic[@value='357'] -opus/data/descriptions/letterDesc/autopsic[@value='358'] -opus/data/descriptions/letterDesc/autopsic[@value='359'] -opus/data/descriptions/letterDesc/autopsic[@value='36'] -opus/data/descriptions/letterDesc/autopsic[@value='360'] -opus/data/descriptions/letterDesc/autopsic[@value='361'] -opus/data/descriptions/letterDesc/autopsic[@value='362'] -opus/data/descriptions/letterDesc/autopsic[@value='363'] -opus/data/descriptions/letterDesc/autopsic[@value='364'] -opus/data/descriptions/letterDesc/autopsic[@value='365'] -opus/data/descriptions/letterDesc/autopsic[@value='366'] -opus/data/descriptions/letterDesc/autopsic[@value='367'] -opus/data/descriptions/letterDesc/autopsic[@value='368'] -opus/data/descriptions/letterDesc/autopsic[@value='368a'] -opus/data/descriptions/letterDesc/autopsic[@value='369'] -opus/data/descriptions/letterDesc/autopsic[@value='37'] -opus/data/descriptions/letterDesc/autopsic[@value='370'] -opus/data/descriptions/letterDesc/autopsic[@value='371'] -opus/data/descriptions/letterDesc/autopsic[@value='372'] -opus/data/descriptions/letterDesc/autopsic[@value='373'] -opus/data/descriptions/letterDesc/autopsic[@value='374'] -opus/data/descriptions/letterDesc/autopsic[@value='375'] -opus/data/descriptions/letterDesc/autopsic[@value='376'] -opus/data/descriptions/letterDesc/autopsic[@value='377'] -opus/data/descriptions/letterDesc/autopsic[@value='378'] -opus/data/descriptions/letterDesc/autopsic[@value='379'] -opus/data/descriptions/letterDesc/autopsic[@value='38'] -opus/data/descriptions/letterDesc/autopsic[@value='380'] -opus/data/descriptions/letterDesc/autopsic[@value='381'] -opus/data/descriptions/letterDesc/autopsic[@value='382'] -opus/data/descriptions/letterDesc/autopsic[@value='383'] -opus/data/descriptions/letterDesc/autopsic[@value='384'] -opus/data/descriptions/letterDesc/autopsic[@value='385'] -opus/data/descriptions/letterDesc/autopsic[@value='386'] -opus/data/descriptions/letterDesc/autopsic[@value='387'] -opus/data/descriptions/letterDesc/autopsic[@value='388'] -opus/data/descriptions/letterDesc/autopsic[@value='389'] -opus/data/descriptions/letterDesc/autopsic[@value='39'] -opus/data/descriptions/letterDesc/autopsic[@value='390'] -opus/data/descriptions/letterDesc/autopsic[@value='391'] -opus/data/descriptions/letterDesc/autopsic[@value='392'] -opus/data/descriptions/letterDesc/autopsic[@value='393'] -opus/data/descriptions/letterDesc/autopsic[@value='394'] -opus/data/descriptions/letterDesc/autopsic[@value='395'] -opus/data/descriptions/letterDesc/autopsic[@value='396'] -opus/data/descriptions/letterDesc/autopsic[@value='397'] -opus/data/descriptions/letterDesc/autopsic[@value='398'] -opus/data/descriptions/letterDesc/autopsic[@value='398a'] -opus/data/descriptions/letterDesc/autopsic[@value='399'] -opus/data/descriptions/letterDesc/autopsic[@value='4'] -opus/data/descriptions/letterDesc/autopsic[@value='40'] -opus/data/descriptions/letterDesc/autopsic[@value='400'] -opus/data/descriptions/letterDesc/autopsic[@value='401'] -opus/data/descriptions/letterDesc/autopsic[@value='402'] -opus/data/descriptions/letterDesc/autopsic[@value='403'] -opus/data/descriptions/letterDesc/autopsic[@value='404'] -opus/data/descriptions/letterDesc/autopsic[@value='405'] -opus/data/descriptions/letterDesc/autopsic[@value='406'] -opus/data/descriptions/letterDesc/autopsic[@value='407'] -opus/data/descriptions/letterDesc/autopsic[@value='408'] -opus/data/descriptions/letterDesc/autopsic[@value='409'] -opus/data/descriptions/letterDesc/autopsic[@value='41'] -opus/data/descriptions/letterDesc/autopsic[@value='410'] -opus/data/descriptions/letterDesc/autopsic[@value='411'] -opus/data/descriptions/letterDesc/autopsic[@value='412'] -opus/data/descriptions/letterDesc/autopsic[@value='413'] -opus/data/descriptions/letterDesc/autopsic[@value='414'] -opus/data/descriptions/letterDesc/autopsic[@value='415'] -opus/data/descriptions/letterDesc/autopsic[@value='416'] -opus/data/descriptions/letterDesc/autopsic[@value='417'] -opus/data/descriptions/letterDesc/autopsic[@value='418'] -opus/data/descriptions/letterDesc/autopsic[@value='419'] -opus/data/descriptions/letterDesc/autopsic[@value='42'] -opus/data/descriptions/letterDesc/autopsic[@value='420'] -opus/data/descriptions/letterDesc/autopsic[@value='421'] -opus/data/descriptions/letterDesc/autopsic[@value='422'] -opus/data/descriptions/letterDesc/autopsic[@value='423'] -opus/data/descriptions/letterDesc/autopsic[@value='424'] -opus/data/descriptions/letterDesc/autopsic[@value='425'] -opus/data/descriptions/letterDesc/autopsic[@value='426'] -opus/data/descriptions/letterDesc/autopsic[@value='427'] -opus/data/descriptions/letterDesc/autopsic[@value='428'] -opus/data/descriptions/letterDesc/autopsic[@value='429'] -opus/data/descriptions/letterDesc/autopsic[@value='43'] -opus/data/descriptions/letterDesc/autopsic[@value='430'] -opus/data/descriptions/letterDesc/autopsic[@value='431'] -opus/data/descriptions/letterDesc/autopsic[@value='432'] -opus/data/descriptions/letterDesc/autopsic[@value='433'] -opus/data/descriptions/letterDesc/autopsic[@value='434'] -opus/data/descriptions/letterDesc/autopsic[@value='435'] -opus/data/descriptions/letterDesc/autopsic[@value='436'] -opus/data/descriptions/letterDesc/autopsic[@value='437'] -opus/data/descriptions/letterDesc/autopsic[@value='438'] -opus/data/descriptions/letterDesc/autopsic[@value='439'] -opus/data/descriptions/letterDesc/autopsic[@value='44'] -opus/data/descriptions/letterDesc/autopsic[@value='440'] -opus/data/descriptions/letterDesc/autopsic[@value='441'] -opus/data/descriptions/letterDesc/autopsic[@value='442'] -opus/data/descriptions/letterDesc/autopsic[@value='443'] -opus/data/descriptions/letterDesc/autopsic[@value='444'] -opus/data/descriptions/letterDesc/autopsic[@value='445'] -opus/data/descriptions/letterDesc/autopsic[@value='446'] -opus/data/descriptions/letterDesc/autopsic[@value='447'] -opus/data/descriptions/letterDesc/autopsic[@value='448'] -opus/data/descriptions/letterDesc/autopsic[@value='449'] -opus/data/descriptions/letterDesc/autopsic[@value='45'] -opus/data/descriptions/letterDesc/autopsic[@value='450'] -opus/data/descriptions/letterDesc/autopsic[@value='451'] -opus/data/descriptions/letterDesc/autopsic[@value='452'] -opus/data/descriptions/letterDesc/autopsic[@value='453'] -opus/data/descriptions/letterDesc/autopsic[@value='454'] -opus/data/descriptions/letterDesc/autopsic[@value='455'] -opus/data/descriptions/letterDesc/autopsic[@value='456'] -opus/data/descriptions/letterDesc/autopsic[@value='457'] -opus/data/descriptions/letterDesc/autopsic[@value='458'] -opus/data/descriptions/letterDesc/autopsic[@value='459'] -opus/data/descriptions/letterDesc/autopsic[@value='46'] -opus/data/descriptions/letterDesc/autopsic[@value='460'] -opus/data/descriptions/letterDesc/autopsic[@value='461'] -opus/data/descriptions/letterDesc/autopsic[@value='462'] -opus/data/descriptions/letterDesc/autopsic[@value='463'] -opus/data/descriptions/letterDesc/autopsic[@value='464'] -opus/data/descriptions/letterDesc/autopsic[@value='465'] -opus/data/descriptions/letterDesc/autopsic[@value='465a'] -opus/data/descriptions/letterDesc/autopsic[@value='466'] -opus/data/descriptions/letterDesc/autopsic[@value='467'] -opus/data/descriptions/letterDesc/autopsic[@value='468'] -opus/data/descriptions/letterDesc/autopsic[@value='469'] -opus/data/descriptions/letterDesc/autopsic[@value='47'] -opus/data/descriptions/letterDesc/autopsic[@value='470'] -opus/data/descriptions/letterDesc/autopsic[@value='470a'] -opus/data/descriptions/letterDesc/autopsic[@value='471'] -opus/data/descriptions/letterDesc/autopsic[@value='472'] -opus/data/descriptions/letterDesc/autopsic[@value='473'] -opus/data/descriptions/letterDesc/autopsic[@value='474'] -opus/data/descriptions/letterDesc/autopsic[@value='475'] -opus/data/descriptions/letterDesc/autopsic[@value='476'] -opus/data/descriptions/letterDesc/autopsic[@value='477'] -opus/data/descriptions/letterDesc/autopsic[@value='478'] -opus/data/descriptions/letterDesc/autopsic[@value='479'] -opus/data/descriptions/letterDesc/autopsic[@value='48'] -opus/data/descriptions/letterDesc/autopsic[@value='480'] -opus/data/descriptions/letterDesc/autopsic[@value='481'] -opus/data/descriptions/letterDesc/autopsic[@value='482'] -opus/data/descriptions/letterDesc/autopsic[@value='483'] -opus/data/descriptions/letterDesc/autopsic[@value='484'] -opus/data/descriptions/letterDesc/autopsic[@value='485'] -opus/data/descriptions/letterDesc/autopsic[@value='486'] -opus/data/descriptions/letterDesc/autopsic[@value='487'] -opus/data/descriptions/letterDesc/autopsic[@value='488'] -opus/data/descriptions/letterDesc/autopsic[@value='489'] -opus/data/descriptions/letterDesc/autopsic[@value='49'] -opus/data/descriptions/letterDesc/autopsic[@value='490'] -opus/data/descriptions/letterDesc/autopsic[@value='491'] -opus/data/descriptions/letterDesc/autopsic[@value='491a'] -opus/data/descriptions/letterDesc/autopsic[@value='492'] -opus/data/descriptions/letterDesc/autopsic[@value='493'] -opus/data/descriptions/letterDesc/autopsic[@value='494'] -opus/data/descriptions/letterDesc/autopsic[@value='495'] -opus/data/descriptions/letterDesc/autopsic[@value='496'] -opus/data/descriptions/letterDesc/autopsic[@value='497'] -opus/data/descriptions/letterDesc/autopsic[@value='498'] -opus/data/descriptions/letterDesc/autopsic[@value='499'] -opus/data/descriptions/letterDesc/autopsic[@value='5'] -opus/data/descriptions/letterDesc/autopsic[@value='50'] -opus/data/descriptions/letterDesc/autopsic[@value='500'] -opus/data/descriptions/letterDesc/autopsic[@value='501'] -opus/data/descriptions/letterDesc/autopsic[@value='502'] -opus/data/descriptions/letterDesc/autopsic[@value='503'] -opus/data/descriptions/letterDesc/autopsic[@value='504'] -opus/data/descriptions/letterDesc/autopsic[@value='505'] -opus/data/descriptions/letterDesc/autopsic[@value='506'] -opus/data/descriptions/letterDesc/autopsic[@value='507'] -opus/data/descriptions/letterDesc/autopsic[@value='507a'] -opus/data/descriptions/letterDesc/autopsic[@value='508'] -opus/data/descriptions/letterDesc/autopsic[@value='509'] -opus/data/descriptions/letterDesc/autopsic[@value='509a'] -opus/data/descriptions/letterDesc/autopsic[@value='51'] -opus/data/descriptions/letterDesc/autopsic[@value='510'] -opus/data/descriptions/letterDesc/autopsic[@value='511'] -opus/data/descriptions/letterDesc/autopsic[@value='512'] -opus/data/descriptions/letterDesc/autopsic[@value='513'] -opus/data/descriptions/letterDesc/autopsic[@value='514'] -opus/data/descriptions/letterDesc/autopsic[@value='515'] -opus/data/descriptions/letterDesc/autopsic[@value='516'] -opus/data/descriptions/letterDesc/autopsic[@value='516a'] -opus/data/descriptions/letterDesc/autopsic[@value='517'] -opus/data/descriptions/letterDesc/autopsic[@value='518'] -opus/data/descriptions/letterDesc/autopsic[@value='519'] -opus/data/descriptions/letterDesc/autopsic[@value='52'] -opus/data/descriptions/letterDesc/autopsic[@value='520'] -opus/data/descriptions/letterDesc/autopsic[@value='521'] -opus/data/descriptions/letterDesc/autopsic[@value='522'] -opus/data/descriptions/letterDesc/autopsic[@value='523'] -opus/data/descriptions/letterDesc/autopsic[@value='524'] -opus/data/descriptions/letterDesc/autopsic[@value='525'] -opus/data/descriptions/letterDesc/autopsic[@value='526'] -opus/data/descriptions/letterDesc/autopsic[@value='527'] -opus/data/descriptions/letterDesc/autopsic[@value='528'] -opus/data/descriptions/letterDesc/autopsic[@value='529'] -opus/data/descriptions/letterDesc/autopsic[@value='53'] -opus/data/descriptions/letterDesc/autopsic[@value='530'] -opus/data/descriptions/letterDesc/autopsic[@value='531'] -opus/data/descriptions/letterDesc/autopsic[@value='532'] -opus/data/descriptions/letterDesc/autopsic[@value='532a'] -opus/data/descriptions/letterDesc/autopsic[@value='533'] -opus/data/descriptions/letterDesc/autopsic[@value='534'] -opus/data/descriptions/letterDesc/autopsic[@value='535'] -opus/data/descriptions/letterDesc/autopsic[@value='536'] -opus/data/descriptions/letterDesc/autopsic[@value='537'] -opus/data/descriptions/letterDesc/autopsic[@value='538'] -opus/data/descriptions/letterDesc/autopsic[@value='539'] -opus/data/descriptions/letterDesc/autopsic[@value='54'] -opus/data/descriptions/letterDesc/autopsic[@value='540'] -opus/data/descriptions/letterDesc/autopsic[@value='541'] -opus/data/descriptions/letterDesc/autopsic[@value='542'] -opus/data/descriptions/letterDesc/autopsic[@value='543'] -opus/data/descriptions/letterDesc/autopsic[@value='544'] -opus/data/descriptions/letterDesc/autopsic[@value='545'] -opus/data/descriptions/letterDesc/autopsic[@value='546'] -opus/data/descriptions/letterDesc/autopsic[@value='547'] -opus/data/descriptions/letterDesc/autopsic[@value='548'] -opus/data/descriptions/letterDesc/autopsic[@value='549'] -opus/data/descriptions/letterDesc/autopsic[@value='55'] -opus/data/descriptions/letterDesc/autopsic[@value='550'] -opus/data/descriptions/letterDesc/autopsic[@value='551'] -opus/data/descriptions/letterDesc/autopsic[@value='552'] -opus/data/descriptions/letterDesc/autopsic[@value='552a'] -opus/data/descriptions/letterDesc/autopsic[@value='553'] -opus/data/descriptions/letterDesc/autopsic[@value='554'] -opus/data/descriptions/letterDesc/autopsic[@value='555'] -opus/data/descriptions/letterDesc/autopsic[@value='556'] -opus/data/descriptions/letterDesc/autopsic[@value='557'] -opus/data/descriptions/letterDesc/autopsic[@value='558'] -opus/data/descriptions/letterDesc/autopsic[@value='559'] -opus/data/descriptions/letterDesc/autopsic[@value='56'] -opus/data/descriptions/letterDesc/autopsic[@value='560'] -opus/data/descriptions/letterDesc/autopsic[@value='561'] -opus/data/descriptions/letterDesc/autopsic[@value='562'] -opus/data/descriptions/letterDesc/autopsic[@value='563'] -opus/data/descriptions/letterDesc/autopsic[@value='564'] -opus/data/descriptions/letterDesc/autopsic[@value='565'] -opus/data/descriptions/letterDesc/autopsic[@value='566'] -opus/data/descriptions/letterDesc/autopsic[@value='567'] -opus/data/descriptions/letterDesc/autopsic[@value='568'] -opus/data/descriptions/letterDesc/autopsic[@value='569'] -opus/data/descriptions/letterDesc/autopsic[@value='57'] -opus/data/descriptions/letterDesc/autopsic[@value='570'] -opus/data/descriptions/letterDesc/autopsic[@value='571'] -opus/data/descriptions/letterDesc/autopsic[@value='572'] -opus/data/descriptions/letterDesc/autopsic[@value='573'] -opus/data/descriptions/letterDesc/autopsic[@value='574'] -opus/data/descriptions/letterDesc/autopsic[@value='575'] -opus/data/descriptions/letterDesc/autopsic[@value='576'] -opus/data/descriptions/letterDesc/autopsic[@value='577'] -opus/data/descriptions/letterDesc/autopsic[@value='578'] -opus/data/descriptions/letterDesc/autopsic[@value='579'] -opus/data/descriptions/letterDesc/autopsic[@value='58'] -opus/data/descriptions/letterDesc/autopsic[@value='580'] -opus/data/descriptions/letterDesc/autopsic[@value='581'] -opus/data/descriptions/letterDesc/autopsic[@value='582'] -opus/data/descriptions/letterDesc/autopsic[@value='583'] -opus/data/descriptions/letterDesc/autopsic[@value='584'] -opus/data/descriptions/letterDesc/autopsic[@value='585'] -opus/data/descriptions/letterDesc/autopsic[@value='586'] -opus/data/descriptions/letterDesc/autopsic[@value='587'] -opus/data/descriptions/letterDesc/autopsic[@value='588'] -opus/data/descriptions/letterDesc/autopsic[@value='589'] -opus/data/descriptions/letterDesc/autopsic[@value='59'] -opus/data/descriptions/letterDesc/autopsic[@value='590'] -opus/data/descriptions/letterDesc/autopsic[@value='591'] -opus/data/descriptions/letterDesc/autopsic[@value='592'] -opus/data/descriptions/letterDesc/autopsic[@value='593'] -opus/data/descriptions/letterDesc/autopsic[@value='594'] -opus/data/descriptions/letterDesc/autopsic[@value='595'] -opus/data/descriptions/letterDesc/autopsic[@value='596'] -opus/data/descriptions/letterDesc/autopsic[@value='597'] -opus/data/descriptions/letterDesc/autopsic[@value='598'] -opus/data/descriptions/letterDesc/autopsic[@value='599'] -opus/data/descriptions/letterDesc/autopsic[@value='6'] -opus/data/descriptions/letterDesc/autopsic[@value='60'] -opus/data/descriptions/letterDesc/autopsic[@value='600'] -opus/data/descriptions/letterDesc/autopsic[@value='601'] -opus/data/descriptions/letterDesc/autopsic[@value='602'] -opus/data/descriptions/letterDesc/autopsic[@value='603'] -opus/data/descriptions/letterDesc/autopsic[@value='604'] -opus/data/descriptions/letterDesc/autopsic[@value='605'] -opus/data/descriptions/letterDesc/autopsic[@value='606'] -opus/data/descriptions/letterDesc/autopsic[@value='607'] -opus/data/descriptions/letterDesc/autopsic[@value='608'] -opus/data/descriptions/letterDesc/autopsic[@value='609'] -opus/data/descriptions/letterDesc/autopsic[@value='61'] -opus/data/descriptions/letterDesc/autopsic[@value='610'] -opus/data/descriptions/letterDesc/autopsic[@value='611'] -opus/data/descriptions/letterDesc/autopsic[@value='612'] -opus/data/descriptions/letterDesc/autopsic[@value='613'] -opus/data/descriptions/letterDesc/autopsic[@value='614'] -opus/data/descriptions/letterDesc/autopsic[@value='615'] -opus/data/descriptions/letterDesc/autopsic[@value='616'] -opus/data/descriptions/letterDesc/autopsic[@value='617'] -opus/data/descriptions/letterDesc/autopsic[@value='618'] -opus/data/descriptions/letterDesc/autopsic[@value='619'] -opus/data/descriptions/letterDesc/autopsic[@value='62'] -opus/data/descriptions/letterDesc/autopsic[@value='620'] -opus/data/descriptions/letterDesc/autopsic[@value='621'] -opus/data/descriptions/letterDesc/autopsic[@value='622'] -opus/data/descriptions/letterDesc/autopsic[@value='623'] -opus/data/descriptions/letterDesc/autopsic[@value='624'] -opus/data/descriptions/letterDesc/autopsic[@value='625'] -opus/data/descriptions/letterDesc/autopsic[@value='626'] -opus/data/descriptions/letterDesc/autopsic[@value='627'] -opus/data/descriptions/letterDesc/autopsic[@value='628'] -opus/data/descriptions/letterDesc/autopsic[@value='629'] -opus/data/descriptions/letterDesc/autopsic[@value='63'] -opus/data/descriptions/letterDesc/autopsic[@value='630'] -opus/data/descriptions/letterDesc/autopsic[@value='631'] -opus/data/descriptions/letterDesc/autopsic[@value='632'] -opus/data/descriptions/letterDesc/autopsic[@value='633'] -opus/data/descriptions/letterDesc/autopsic[@value='634'] -opus/data/descriptions/letterDesc/autopsic[@value='635'] -opus/data/descriptions/letterDesc/autopsic[@value='636'] -opus/data/descriptions/letterDesc/autopsic[@value='637'] -opus/data/descriptions/letterDesc/autopsic[@value='638'] -opus/data/descriptions/letterDesc/autopsic[@value='639'] -opus/data/descriptions/letterDesc/autopsic[@value='64'] -opus/data/descriptions/letterDesc/autopsic[@value='640'] -opus/data/descriptions/letterDesc/autopsic[@value='641'] -opus/data/descriptions/letterDesc/autopsic[@value='642'] -opus/data/descriptions/letterDesc/autopsic[@value='643'] -opus/data/descriptions/letterDesc/autopsic[@value='644'] -opus/data/descriptions/letterDesc/autopsic[@value='645'] -opus/data/descriptions/letterDesc/autopsic[@value='646'] -opus/data/descriptions/letterDesc/autopsic[@value='647'] -opus/data/descriptions/letterDesc/autopsic[@value='648'] -opus/data/descriptions/letterDesc/autopsic[@value='649'] -opus/data/descriptions/letterDesc/autopsic[@value='65'] -opus/data/descriptions/letterDesc/autopsic[@value='650'] -opus/data/descriptions/letterDesc/autopsic[@value='651'] -opus/data/descriptions/letterDesc/autopsic[@value='652'] -opus/data/descriptions/letterDesc/autopsic[@value='653'] -opus/data/descriptions/letterDesc/autopsic[@value='654'] -opus/data/descriptions/letterDesc/autopsic[@value='655'] -opus/data/descriptions/letterDesc/autopsic[@value='656'] -opus/data/descriptions/letterDesc/autopsic[@value='657'] -opus/data/descriptions/letterDesc/autopsic[@value='658'] -opus/data/descriptions/letterDesc/autopsic[@value='659'] -opus/data/descriptions/letterDesc/autopsic[@value='66'] -opus/data/descriptions/letterDesc/autopsic[@value='660'] -opus/data/descriptions/letterDesc/autopsic[@value='661'] -opus/data/descriptions/letterDesc/autopsic[@value='662'] -opus/data/descriptions/letterDesc/autopsic[@value='663'] -opus/data/descriptions/letterDesc/autopsic[@value='664'] -opus/data/descriptions/letterDesc/autopsic[@value='665'] -opus/data/descriptions/letterDesc/autopsic[@value='666'] -opus/data/descriptions/letterDesc/autopsic[@value='667'] -opus/data/descriptions/letterDesc/autopsic[@value='668'] -opus/data/descriptions/letterDesc/autopsic[@value='669'] -opus/data/descriptions/letterDesc/autopsic[@value='67'] -opus/data/descriptions/letterDesc/autopsic[@value='670'] -opus/data/descriptions/letterDesc/autopsic[@value='671'] -opus/data/descriptions/letterDesc/autopsic[@value='672'] -opus/data/descriptions/letterDesc/autopsic[@value='673'] -opus/data/descriptions/letterDesc/autopsic[@value='674'] -opus/data/descriptions/letterDesc/autopsic[@value='675'] -opus/data/descriptions/letterDesc/autopsic[@value='676'] -opus/data/descriptions/letterDesc/autopsic[@value='677'] -opus/data/descriptions/letterDesc/autopsic[@value='678'] -opus/data/descriptions/letterDesc/autopsic[@value='679'] -opus/data/descriptions/letterDesc/autopsic[@value='68'] -opus/data/descriptions/letterDesc/autopsic[@value='680'] -opus/data/descriptions/letterDesc/autopsic[@value='681'] -opus/data/descriptions/letterDesc/autopsic[@value='682'] -opus/data/descriptions/letterDesc/autopsic[@value='683'] -opus/data/descriptions/letterDesc/autopsic[@value='684'] -opus/data/descriptions/letterDesc/autopsic[@value='685'] -opus/data/descriptions/letterDesc/autopsic[@value='686'] -opus/data/descriptions/letterDesc/autopsic[@value='687'] -opus/data/descriptions/letterDesc/autopsic[@value='688'] -opus/data/descriptions/letterDesc/autopsic[@value='689'] -opus/data/descriptions/letterDesc/autopsic[@value='69'] -opus/data/descriptions/letterDesc/autopsic[@value='690'] -opus/data/descriptions/letterDesc/autopsic[@value='691'] -opus/data/descriptions/letterDesc/autopsic[@value='692'] -opus/data/descriptions/letterDesc/autopsic[@value='693'] -opus/data/descriptions/letterDesc/autopsic[@value='694'] -opus/data/descriptions/letterDesc/autopsic[@value='695'] -opus/data/descriptions/letterDesc/autopsic[@value='696'] -opus/data/descriptions/letterDesc/autopsic[@value='697'] -opus/data/descriptions/letterDesc/autopsic[@value='698'] -opus/data/descriptions/letterDesc/autopsic[@value='699'] -opus/data/descriptions/letterDesc/autopsic[@value='7'] -opus/data/descriptions/letterDesc/autopsic[@value='70'] -opus/data/descriptions/letterDesc/autopsic[@value='700'] -opus/data/descriptions/letterDesc/autopsic[@value='701'] -opus/data/descriptions/letterDesc/autopsic[@value='702'] -opus/data/descriptions/letterDesc/autopsic[@value='703'] -opus/data/descriptions/letterDesc/autopsic[@value='704'] -opus/data/descriptions/letterDesc/autopsic[@value='705'] -opus/data/descriptions/letterDesc/autopsic[@value='706'] -opus/data/descriptions/letterDesc/autopsic[@value='707'] -opus/data/descriptions/letterDesc/autopsic[@value='708'] -opus/data/descriptions/letterDesc/autopsic[@value='709'] -opus/data/descriptions/letterDesc/autopsic[@value='71'] -opus/data/descriptions/letterDesc/autopsic[@value='710'] -opus/data/descriptions/letterDesc/autopsic[@value='711'] -opus/data/descriptions/letterDesc/autopsic[@value='712'] -opus/data/descriptions/letterDesc/autopsic[@value='713'] -opus/data/descriptions/letterDesc/autopsic[@value='714'] -opus/data/descriptions/letterDesc/autopsic[@value='715'] -opus/data/descriptions/letterDesc/autopsic[@value='715a'] -opus/data/descriptions/letterDesc/autopsic[@value='716'] -opus/data/descriptions/letterDesc/autopsic[@value='717'] -opus/data/descriptions/letterDesc/autopsic[@value='718'] -opus/data/descriptions/letterDesc/autopsic[@value='719'] -opus/data/descriptions/letterDesc/autopsic[@value='72'] -opus/data/descriptions/letterDesc/autopsic[@value='720'] -opus/data/descriptions/letterDesc/autopsic[@value='721'] -opus/data/descriptions/letterDesc/autopsic[@value='722'] -opus/data/descriptions/letterDesc/autopsic[@value='723'] -opus/data/descriptions/letterDesc/autopsic[@value='724'] -opus/data/descriptions/letterDesc/autopsic[@value='725'] -opus/data/descriptions/letterDesc/autopsic[@value='726'] -opus/data/descriptions/letterDesc/autopsic[@value='727'] -opus/data/descriptions/letterDesc/autopsic[@value='728'] -opus/data/descriptions/letterDesc/autopsic[@value='729'] -opus/data/descriptions/letterDesc/autopsic[@value='73'] -opus/data/descriptions/letterDesc/autopsic[@value='730'] -opus/data/descriptions/letterDesc/autopsic[@value='731'] -opus/data/descriptions/letterDesc/autopsic[@value='732'] -opus/data/descriptions/letterDesc/autopsic[@value='733'] -opus/data/descriptions/letterDesc/autopsic[@value='734'] -opus/data/descriptions/letterDesc/autopsic[@value='735'] -opus/data/descriptions/letterDesc/autopsic[@value='736'] -opus/data/descriptions/letterDesc/autopsic[@value='737'] -opus/data/descriptions/letterDesc/autopsic[@value='738'] -opus/data/descriptions/letterDesc/autopsic[@value='739'] -opus/data/descriptions/letterDesc/autopsic[@value='74'] -opus/data/descriptions/letterDesc/autopsic[@value='740'] -opus/data/descriptions/letterDesc/autopsic[@value='741'] -opus/data/descriptions/letterDesc/autopsic[@value='742'] -opus/data/descriptions/letterDesc/autopsic[@value='743'] -opus/data/descriptions/letterDesc/autopsic[@value='744'] -opus/data/descriptions/letterDesc/autopsic[@value='745'] -opus/data/descriptions/letterDesc/autopsic[@value='746'] -opus/data/descriptions/letterDesc/autopsic[@value='747'] -opus/data/descriptions/letterDesc/autopsic[@value='748'] -opus/data/descriptions/letterDesc/autopsic[@value='749'] -opus/data/descriptions/letterDesc/autopsic[@value='75'] -opus/data/descriptions/letterDesc/autopsic[@value='750'] -opus/data/descriptions/letterDesc/autopsic[@value='751'] -opus/data/descriptions/letterDesc/autopsic[@value='752'] -opus/data/descriptions/letterDesc/autopsic[@value='753'] -opus/data/descriptions/letterDesc/autopsic[@value='754'] -opus/data/descriptions/letterDesc/autopsic[@value='755'] -opus/data/descriptions/letterDesc/autopsic[@value='756'] -opus/data/descriptions/letterDesc/autopsic[@value='757'] -opus/data/descriptions/letterDesc/autopsic[@value='758'] -opus/data/descriptions/letterDesc/autopsic[@value='759'] -opus/data/descriptions/letterDesc/autopsic[@value='76'] -opus/data/descriptions/letterDesc/autopsic[@value='760'] -opus/data/descriptions/letterDesc/autopsic[@value='761'] -opus/data/descriptions/letterDesc/autopsic[@value='762'] -opus/data/descriptions/letterDesc/autopsic[@value='763'] -opus/data/descriptions/letterDesc/autopsic[@value='764'] -opus/data/descriptions/letterDesc/autopsic[@value='765'] -opus/data/descriptions/letterDesc/autopsic[@value='766'] -opus/data/descriptions/letterDesc/autopsic[@value='767'] -opus/data/descriptions/letterDesc/autopsic[@value='768'] -opus/data/descriptions/letterDesc/autopsic[@value='769'] -opus/data/descriptions/letterDesc/autopsic[@value='77'] -opus/data/descriptions/letterDesc/autopsic[@value='770'] -opus/data/descriptions/letterDesc/autopsic[@value='771'] -opus/data/descriptions/letterDesc/autopsic[@value='772'] -opus/data/descriptions/letterDesc/autopsic[@value='773'] -opus/data/descriptions/letterDesc/autopsic[@value='774'] -opus/data/descriptions/letterDesc/autopsic[@value='775'] -opus/data/descriptions/letterDesc/autopsic[@value='776'] -opus/data/descriptions/letterDesc/autopsic[@value='777'] -opus/data/descriptions/letterDesc/autopsic[@value='778'] -opus/data/descriptions/letterDesc/autopsic[@value='779'] -opus/data/descriptions/letterDesc/autopsic[@value='78'] -opus/data/descriptions/letterDesc/autopsic[@value='780'] -opus/data/descriptions/letterDesc/autopsic[@value='781'] -opus/data/descriptions/letterDesc/autopsic[@value='782'] -opus/data/descriptions/letterDesc/autopsic[@value='783'] -opus/data/descriptions/letterDesc/autopsic[@value='784'] -opus/data/descriptions/letterDesc/autopsic[@value='785'] -opus/data/descriptions/letterDesc/autopsic[@value='786'] -opus/data/descriptions/letterDesc/autopsic[@value='787'] -opus/data/descriptions/letterDesc/autopsic[@value='788'] -opus/data/descriptions/letterDesc/autopsic[@value='789'] -opus/data/descriptions/letterDesc/autopsic[@value='79'] -opus/data/descriptions/letterDesc/autopsic[@value='790'] -opus/data/descriptions/letterDesc/autopsic[@value='791'] -opus/data/descriptions/letterDesc/autopsic[@value='792'] -opus/data/descriptions/letterDesc/autopsic[@value='793'] -opus/data/descriptions/letterDesc/autopsic[@value='794'] -opus/data/descriptions/letterDesc/autopsic[@value='795'] -opus/data/descriptions/letterDesc/autopsic[@value='796'] -opus/data/descriptions/letterDesc/autopsic[@value='797'] -opus/data/descriptions/letterDesc/autopsic[@value='798'] -opus/data/descriptions/letterDesc/autopsic[@value='799'] -opus/data/descriptions/letterDesc/autopsic[@value='8'] -opus/data/descriptions/letterDesc/autopsic[@value='80'] -opus/data/descriptions/letterDesc/autopsic[@value='800'] -opus/data/descriptions/letterDesc/autopsic[@value='801'] -opus/data/descriptions/letterDesc/autopsic[@value='802'] -opus/data/descriptions/letterDesc/autopsic[@value='803'] -opus/data/descriptions/letterDesc/autopsic[@value='804'] -opus/data/descriptions/letterDesc/autopsic[@value='805'] -opus/data/descriptions/letterDesc/autopsic[@value='806'] -opus/data/descriptions/letterDesc/autopsic[@value='807'] -opus/data/descriptions/letterDesc/autopsic[@value='808'] -opus/data/descriptions/letterDesc/autopsic[@value='809'] -opus/data/descriptions/letterDesc/autopsic[@value='81'] -opus/data/descriptions/letterDesc/autopsic[@value='810'] -opus/data/descriptions/letterDesc/autopsic[@value='811'] -opus/data/descriptions/letterDesc/autopsic[@value='812'] -opus/data/descriptions/letterDesc/autopsic[@value='813'] -opus/data/descriptions/letterDesc/autopsic[@value='814'] -opus/data/descriptions/letterDesc/autopsic[@value='815'] -opus/data/descriptions/letterDesc/autopsic[@value='816'] -opus/data/descriptions/letterDesc/autopsic[@value='817'] -opus/data/descriptions/letterDesc/autopsic[@value='818'] -opus/data/descriptions/letterDesc/autopsic[@value='819'] -opus/data/descriptions/letterDesc/autopsic[@value='82'] -opus/data/descriptions/letterDesc/autopsic[@value='820'] -opus/data/descriptions/letterDesc/autopsic[@value='821'] -opus/data/descriptions/letterDesc/autopsic[@value='822'] -opus/data/descriptions/letterDesc/autopsic[@value='823'] -opus/data/descriptions/letterDesc/autopsic[@value='824'] -opus/data/descriptions/letterDesc/autopsic[@value='825'] -opus/data/descriptions/letterDesc/autopsic[@value='826'] -opus/data/descriptions/letterDesc/autopsic[@value='827'] -opus/data/descriptions/letterDesc/autopsic[@value='828'] -opus/data/descriptions/letterDesc/autopsic[@value='829'] -opus/data/descriptions/letterDesc/autopsic[@value='83'] -opus/data/descriptions/letterDesc/autopsic[@value='830'] -opus/data/descriptions/letterDesc/autopsic[@value='831'] -opus/data/descriptions/letterDesc/autopsic[@value='832'] -opus/data/descriptions/letterDesc/autopsic[@value='833'] -opus/data/descriptions/letterDesc/autopsic[@value='834'] -opus/data/descriptions/letterDesc/autopsic[@value='835'] -opus/data/descriptions/letterDesc/autopsic[@value='836'] -opus/data/descriptions/letterDesc/autopsic[@value='837'] -opus/data/descriptions/letterDesc/autopsic[@value='838'] -opus/data/descriptions/letterDesc/autopsic[@value='839'] -opus/data/descriptions/letterDesc/autopsic[@value='84'] -opus/data/descriptions/letterDesc/autopsic[@value='840'] -opus/data/descriptions/letterDesc/autopsic[@value='841'] -opus/data/descriptions/letterDesc/autopsic[@value='842'] -opus/data/descriptions/letterDesc/autopsic[@value='843'] -opus/data/descriptions/letterDesc/autopsic[@value='844'] -opus/data/descriptions/letterDesc/autopsic[@value='845'] -opus/data/descriptions/letterDesc/autopsic[@value='846'] -opus/data/descriptions/letterDesc/autopsic[@value='847'] -opus/data/descriptions/letterDesc/autopsic[@value='848'] -opus/data/descriptions/letterDesc/autopsic[@value='849'] -opus/data/descriptions/letterDesc/autopsic[@value='85'] -opus/data/descriptions/letterDesc/autopsic[@value='850'] -opus/data/descriptions/letterDesc/autopsic[@value='851'] -opus/data/descriptions/letterDesc/autopsic[@value='852'] -opus/data/descriptions/letterDesc/autopsic[@value='853'] -opus/data/descriptions/letterDesc/autopsic[@value='854'] -opus/data/descriptions/letterDesc/autopsic[@value='855'] -opus/data/descriptions/letterDesc/autopsic[@value='856'] -opus/data/descriptions/letterDesc/autopsic[@value='857'] -opus/data/descriptions/letterDesc/autopsic[@value='858'] -opus/data/descriptions/letterDesc/autopsic[@value='859'] -opus/data/descriptions/letterDesc/autopsic[@value='86'] -opus/data/descriptions/letterDesc/autopsic[@value='860'] -opus/data/descriptions/letterDesc/autopsic[@value='861'] -opus/data/descriptions/letterDesc/autopsic[@value='862'] -opus/data/descriptions/letterDesc/autopsic[@value='863'] -opus/data/descriptions/letterDesc/autopsic[@value='864'] -opus/data/descriptions/letterDesc/autopsic[@value='865'] -opus/data/descriptions/letterDesc/autopsic[@value='866'] -opus/data/descriptions/letterDesc/autopsic[@value='867'] -opus/data/descriptions/letterDesc/autopsic[@value='868'] -opus/data/descriptions/letterDesc/autopsic[@value='869'] -opus/data/descriptions/letterDesc/autopsic[@value='87'] -opus/data/descriptions/letterDesc/autopsic[@value='870'] -opus/data/descriptions/letterDesc/autopsic[@value='871'] -opus/data/descriptions/letterDesc/autopsic[@value='872'] -opus/data/descriptions/letterDesc/autopsic[@value='873'] -opus/data/descriptions/letterDesc/autopsic[@value='874'] -opus/data/descriptions/letterDesc/autopsic[@value='875'] -opus/data/descriptions/letterDesc/autopsic[@value='876'] -opus/data/descriptions/letterDesc/autopsic[@value='877'] -opus/data/descriptions/letterDesc/autopsic[@value='878'] -opus/data/descriptions/letterDesc/autopsic[@value='879'] -opus/data/descriptions/letterDesc/autopsic[@value='88'] -opus/data/descriptions/letterDesc/autopsic[@value='880'] -opus/data/descriptions/letterDesc/autopsic[@value='881'] -opus/data/descriptions/letterDesc/autopsic[@value='882'] -opus/data/descriptions/letterDesc/autopsic[@value='883'] -opus/data/descriptions/letterDesc/autopsic[@value='884'] -opus/data/descriptions/letterDesc/autopsic[@value='885'] -opus/data/descriptions/letterDesc/autopsic[@value='886'] -opus/data/descriptions/letterDesc/autopsic[@value='887'] -opus/data/descriptions/letterDesc/autopsic[@value='888'] -opus/data/descriptions/letterDesc/autopsic[@value='889'] -opus/data/descriptions/letterDesc/autopsic[@value='89'] -opus/data/descriptions/letterDesc/autopsic[@value='890'] -opus/data/descriptions/letterDesc/autopsic[@value='891'] -opus/data/descriptions/letterDesc/autopsic[@value='892'] -opus/data/descriptions/letterDesc/autopsic[@value='893'] -opus/data/descriptions/letterDesc/autopsic[@value='894'] -opus/data/descriptions/letterDesc/autopsic[@value='895'] -opus/data/descriptions/letterDesc/autopsic[@value='896'] -opus/data/descriptions/letterDesc/autopsic[@value='897'] -opus/data/descriptions/letterDesc/autopsic[@value='898'] -opus/data/descriptions/letterDesc/autopsic[@value='899'] -opus/data/descriptions/letterDesc/autopsic[@value='9'] -opus/data/descriptions/letterDesc/autopsic[@value='90'] -opus/data/descriptions/letterDesc/autopsic[@value='900'] -opus/data/descriptions/letterDesc/autopsic[@value='901'] -opus/data/descriptions/letterDesc/autopsic[@value='902'] -opus/data/descriptions/letterDesc/autopsic[@value='903'] -opus/data/descriptions/letterDesc/autopsic[@value='904'] -opus/data/descriptions/letterDesc/autopsic[@value='905'] -opus/data/descriptions/letterDesc/autopsic[@value='906'] -opus/data/descriptions/letterDesc/autopsic[@value='907'] -opus/data/descriptions/letterDesc/autopsic[@value='908'] -opus/data/descriptions/letterDesc/autopsic[@value='909'] -opus/data/descriptions/letterDesc/autopsic[@value='91'] -opus/data/descriptions/letterDesc/autopsic[@value='910'] -opus/data/descriptions/letterDesc/autopsic[@value='911'] -opus/data/descriptions/letterDesc/autopsic[@value='912'] -opus/data/descriptions/letterDesc/autopsic[@value='913'] -opus/data/descriptions/letterDesc/autopsic[@value='914'] -opus/data/descriptions/letterDesc/autopsic[@value='915'] -opus/data/descriptions/letterDesc/autopsic[@value='916'] -opus/data/descriptions/letterDesc/autopsic[@value='917'] -opus/data/descriptions/letterDesc/autopsic[@value='918'] -opus/data/descriptions/letterDesc/autopsic[@value='919'] -opus/data/descriptions/letterDesc/autopsic[@value='92'] -opus/data/descriptions/letterDesc/autopsic[@value='920'] -opus/data/descriptions/letterDesc/autopsic[@value='921'] -opus/data/descriptions/letterDesc/autopsic[@value='922'] -opus/data/descriptions/letterDesc/autopsic[@value='923'] -opus/data/descriptions/letterDesc/autopsic[@value='924'] -opus/data/descriptions/letterDesc/autopsic[@value='925'] -opus/data/descriptions/letterDesc/autopsic[@value='926'] -opus/data/descriptions/letterDesc/autopsic[@value='927'] -opus/data/descriptions/letterDesc/autopsic[@value='928'] -opus/data/descriptions/letterDesc/autopsic[@value='929'] -opus/data/descriptions/letterDesc/autopsic[@value='93'] -opus/data/descriptions/letterDesc/autopsic[@value='930'] -opus/data/descriptions/letterDesc/autopsic[@value='931'] -opus/data/descriptions/letterDesc/autopsic[@value='932'] -opus/data/descriptions/letterDesc/autopsic[@value='933'] -opus/data/descriptions/letterDesc/autopsic[@value='934'] -opus/data/descriptions/letterDesc/autopsic[@value='935'] -opus/data/descriptions/letterDesc/autopsic[@value='936'] -opus/data/descriptions/letterDesc/autopsic[@value='937'] -opus/data/descriptions/letterDesc/autopsic[@value='938'] -opus/data/descriptions/letterDesc/autopsic[@value='939'] -opus/data/descriptions/letterDesc/autopsic[@value='94'] -opus/data/descriptions/letterDesc/autopsic[@value='940'] -opus/data/descriptions/letterDesc/autopsic[@value='941'] -opus/data/descriptions/letterDesc/autopsic[@value='942'] -opus/data/descriptions/letterDesc/autopsic[@value='943'] -opus/data/descriptions/letterDesc/autopsic[@value='944'] -opus/data/descriptions/letterDesc/autopsic[@value='945'] -opus/data/descriptions/letterDesc/autopsic[@value='946'] -opus/data/descriptions/letterDesc/autopsic[@value='947'] -opus/data/descriptions/letterDesc/autopsic[@value='948'] -opus/data/descriptions/letterDesc/autopsic[@value='948a'] -opus/data/descriptions/letterDesc/autopsic[@value='949'] -opus/data/descriptions/letterDesc/autopsic[@value='95'] -opus/data/descriptions/letterDesc/autopsic[@value='950'] -opus/data/descriptions/letterDesc/autopsic[@value='951'] -opus/data/descriptions/letterDesc/autopsic[@value='952'] -opus/data/descriptions/letterDesc/autopsic[@value='953'] -opus/data/descriptions/letterDesc/autopsic[@value='954'] -opus/data/descriptions/letterDesc/autopsic[@value='955'] -opus/data/descriptions/letterDesc/autopsic[@value='956'] -opus/data/descriptions/letterDesc/autopsic[@value='957'] -opus/data/descriptions/letterDesc/autopsic[@value='958'] -opus/data/descriptions/letterDesc/autopsic[@value='959'] -opus/data/descriptions/letterDesc/autopsic[@value='96'] -opus/data/descriptions/letterDesc/autopsic[@value='960'] -opus/data/descriptions/letterDesc/autopsic[@value='961'] -opus/data/descriptions/letterDesc/autopsic[@value='962'] -opus/data/descriptions/letterDesc/autopsic[@value='963'] -opus/data/descriptions/letterDesc/autopsic[@value='964'] -opus/data/descriptions/letterDesc/autopsic[@value='965'] -opus/data/descriptions/letterDesc/autopsic[@value='966'] -opus/data/descriptions/letterDesc/autopsic[@value='967'] -opus/data/descriptions/letterDesc/autopsic[@value='968'] -opus/data/descriptions/letterDesc/autopsic[@value='969'] -opus/data/descriptions/letterDesc/autopsic[@value='97'] -opus/data/descriptions/letterDesc/autopsic[@value='970'] -opus/data/descriptions/letterDesc/autopsic[@value='971'] -opus/data/descriptions/letterDesc/autopsic[@value='972'] -opus/data/descriptions/letterDesc/autopsic[@value='973'] -opus/data/descriptions/letterDesc/autopsic[@value='974'] -opus/data/descriptions/letterDesc/autopsic[@value='975'] -opus/data/descriptions/letterDesc/autopsic[@value='976'] -opus/data/descriptions/letterDesc/autopsic[@value='977'] -opus/data/descriptions/letterDesc/autopsic[@value='978'] -opus/data/descriptions/letterDesc/autopsic[@value='979'] -opus/data/descriptions/letterDesc/autopsic[@value='98'] -opus/data/descriptions/letterDesc/autopsic[@value='980'] -opus/data/descriptions/letterDesc/autopsic[@value='981'] -opus/data/descriptions/letterDesc/autopsic[@value='982'] -opus/data/descriptions/letterDesc/autopsic[@value='983'] -opus/data/descriptions/letterDesc/autopsic[@value='984'] -opus/data/descriptions/letterDesc/autopsic[@value='985'] -opus/data/descriptions/letterDesc/autopsic[@value='986'] -opus/data/descriptions/letterDesc/autopsic[@value='987'] -opus/data/descriptions/letterDesc/autopsic[@value='988'] -opus/data/descriptions/letterDesc/autopsic[@value='989'] -opus/data/descriptions/letterDesc/autopsic[@value='99'] -opus/data/descriptions/letterDesc/autopsic[@value='990'] -opus/data/descriptions/letterDesc/autopsic[@value='991'] -opus/data/descriptions/letterDesc/autopsic[@value='992'] -opus/data/descriptions/letterDesc/autopsic[@value='993'] -opus/data/descriptions/letterDesc/autopsic[@value='994'] -opus/data/descriptions/letterDesc/autopsic[@value='995'] -opus/data/descriptions/letterDesc/autopsic[@value='996'] -opus/data/descriptions/letterDesc/autopsic[@value='997'] -opus/data/descriptions/letterDesc/autopsic[@value='998'] -opus/data/descriptions/letterDesc/autopsic[@value='999'] -opus/data/descriptions/letterDesc/date[@value=''] -opus/data/descriptions/letterDesc/date[@value='10.–11. Juli 1785'] -opus/data/descriptions/letterDesc/date[@value='10. Dezember 1776'] -opus/data/descriptions/letterDesc/date[@value='10. September 1774'] -opus/data/descriptions/letterDesc/date[@value='11. Dezember 1780'] -opus/data/descriptions/letterDesc/date[@value='11. Dezember 1787'] -opus/data/descriptions/letterDesc/date[@value='11. Februar 1762'] -opus/data/descriptions/letterDesc/date[@value='11. Februar 1775'] -opus/data/descriptions/letterDesc/date[@value='11. Juli 1782'] -opus/data/descriptions/letterDesc/date[@value='11. Mai 1775'] -opus/data/descriptions/letterDesc/date[@value='11. und 25.–26. Juni 1780'] -opus/data/descriptions/letterDesc/date[@value='12. April 1756'] -opus/data/descriptions/letterDesc/date[@value='12. September 1760'] -opus/data/descriptions/letterDesc/date[@value='12. und 19. Februar 1760'] -opus/data/descriptions/letterDesc/date[@value='13. April 1777'] -opus/data/descriptions/letterDesc/date[@value='13. Februar 1775'] -opus/data/descriptions/letterDesc/date[@value='13. Januar 1775'] -opus/data/descriptions/letterDesc/date[@value='1.–3. Januar 1780'] -opus/data/descriptions/letterDesc/date[@value='13. Oktober 1772'] -opus/data/descriptions/letterDesc/date[@value='13. und 15. März 1775'] -opus/data/descriptions/letterDesc/date[@value='14.–15. Juni 1788'] -opus/data/descriptions/letterDesc/date[@value='14. November 1774'] -opus/data/descriptions/letterDesc/date[@value='16.–17. Juli 1775'] -opus/data/descriptions/letterDesc/date[@value='16. Dezember 1780'] -opus/data/descriptions/letterDesc/date[@value='1753'] -opus/data/descriptions/letterDesc/date[@value='1769'] -opus/data/descriptions/letterDesc/date[@value='17. März 1763'] -opus/data/descriptions/letterDesc/date[@value='18. Februar 1775'] -opus/data/descriptions/letterDesc/date[@value='18. Juli 1775'] -opus/data/descriptions/letterDesc/date[@value='18. und 19. Januar 1777'] -opus/data/descriptions/letterDesc/date[@value='19. August 1773'] -opus/data/descriptions/letterDesc/date[@value='19. Februar 1777'] -opus/data/descriptions/letterDesc/date[@value='19. Januar 1760'] -opus/data/descriptions/letterDesc/date[@value='1. August 1772'] -opus/data/descriptions/letterDesc/date[@value='1. Dezember 1773'] -opus/data/descriptions/letterDesc/date[@value='1. Juni 1777'] -opus/data/descriptions/letterDesc/date[@value='1. Mai 1777'] -opus/data/descriptions/letterDesc/date[@value='1. Oktober 1785'] -opus/data/descriptions/letterDesc/date[@value='21. Dezember 1787'] -opus/data/descriptions/letterDesc/date[@value='21. Mai 1760'] -opus/data/descriptions/letterDesc/date[@value='21. und 22. Mai 1775'] -opus/data/descriptions/letterDesc/date[@value='22. Juli 1781'] -opus/data/descriptions/letterDesc/date[@value='23. April 1786'] -opus/data/descriptions/letterDesc/date[@value='23. August 1760'] -opus/data/descriptions/letterDesc/date[@value='23. Januar 1779'] -opus/data/descriptions/letterDesc/date[@value='23. Oktober 1781'] -opus/data/descriptions/letterDesc/date[@value='24. August 1776'] -opus/data/descriptions/letterDesc/date[@value='24. Januar 1773'] -opus/data/descriptions/letterDesc/date[@value='24. Oktober 1776'] -opus/data/descriptions/letterDesc/date[@value='24. und 26. Januar 1777'] -opus/data/descriptions/letterDesc/date[@value='25.–26. August 1782'] -opus/data/descriptions/letterDesc/date[@value='25.–26. und 29.–30. Oktober 1780'] -opus/data/descriptions/letterDesc/date[@value='25. August 1775'] -opus/data/descriptions/letterDesc/date[@value='25. Dezember 1774'] -opus/data/descriptions/letterDesc/date[@value='25. Februar 1776'] -opus/data/descriptions/letterDesc/date[@value='25. Februar 1781'] -opus/data/descriptions/letterDesc/date[@value='25. März 1773'] -opus/data/descriptions/letterDesc/date[@value='25. März 1775'] -opus/data/descriptions/letterDesc/date[@value='25. November 1776'] -opus/data/descriptions/letterDesc/date[@value='25. und 27. März 1780'] -opus/data/descriptions/letterDesc/date[@value='26. August 1761'] -opus/data/descriptions/letterDesc/date[@value='27.–28. Oktober 1782'] -opus/data/descriptions/letterDesc/date[@value='27. Juli 1759'] -opus/data/descriptions/letterDesc/date[@value='27. und 29.–30. April sowie 1.–3. Mai 1787'] -opus/data/descriptions/letterDesc/date[@value='27. und 29. April 1781'] -opus/data/descriptions/letterDesc/date[@value='28. Februar 1775'] -opus/data/descriptions/letterDesc/date[@value='28. Mai 1787'] -opus/data/descriptions/letterDesc/date[@value='28. Oktober 1779'] -opus/data/descriptions/letterDesc/date[@value='29. April 1777'] -opus/data/descriptions/letterDesc/date[@value='29. November 1778'] -opus/data/descriptions/letterDesc/date[@value='29. November 1779'] -opus/data/descriptions/letterDesc/date[@value='29. und 31. Oktober sowie 1. November 1779'] -opus/data/descriptions/letterDesc/date[@value='2. April 1760'] -opus/data/descriptions/letterDesc/date[@value='2. Januar 1777'] -opus/data/descriptions/letterDesc/date[@value='2. Juli 1775'] -opus/data/descriptions/letterDesc/date[@value='2. März 1762'] -opus/data/descriptions/letterDesc/date[@value='2. März 1767'] -opus/data/descriptions/letterDesc/date[@value='30. April und 3. Mai 1786'] -opus/data/descriptions/letterDesc/date[@value='31. Dezember 1777'] -opus/data/descriptions/letterDesc/date[@value='31. Januar 1775'] -opus/data/descriptions/letterDesc/date[@value='31. Mai 1788'] -opus/data/descriptions/letterDesc/date[@value='3. April 1785'] -opus/data/descriptions/letterDesc/date[@value='3. April 1786'] -opus/data/descriptions/letterDesc/date[@value='3. August 1769'] -opus/data/descriptions/letterDesc/date[@value='3. Januar 1775'] -opus/data/descriptions/letterDesc/date[@value='3. März 1783'] -opus/data/descriptions/letterDesc/date[@value='3. und 4. Juni 1775'] -opus/data/descriptions/letterDesc/date[@value='4. August 1777'] -opus/data/descriptions/letterDesc/date[@value='4. Dezember 1777'] -opus/data/descriptions/letterDesc/date[@value='5. Juni 1759'] -opus/data/descriptions/letterDesc/date[@value='6. April 1774'] -opus/data/descriptions/letterDesc/date[@value='6. Dezember 1777'] -opus/data/descriptions/letterDesc/date[@value='6. und 21. Januar 1779'] -opus/data/descriptions/letterDesc/date[@value='8.–9. April 1787'] -opus/data/descriptions/letterDesc/date[@value='8. April 1774'] -opus/data/descriptions/letterDesc/date[@value='8. Januar 1775'] -opus/data/descriptions/letterDesc/date[@value='8. Juni 1775'] -opus/data/descriptions/letterDesc/date[@value='8. Juni 1779'] -opus/data/descriptions/letterDesc/date[@value='8. und 10. April 1781'] -opus/data/descriptions/letterDesc/date[@value='9.–10. Juni 1782'] -opus/data/descriptions/letterDesc/date[@value='9. Juni 1774'] -opus/data/descriptions/letterDesc/date[@value='April 1765'] -opus/data/descriptions/letterDesc/date[@value='April 1774'] -opus/data/descriptions/letterDesc/date[@value='April 1775'] -opus/data/descriptions/letterDesc/date[@value='Berenshof, 25. August 1758'] -opus/data/descriptions/letterDesc/date[@value='Berlin, 15. September 1777'] -opus/data/descriptions/letterDesc/date[@value='Berlin, 20. August 1751'] -opus/data/descriptions/letterDesc/date[@value='Berlin, 26. April 1787'] -opus/data/descriptions/letterDesc/date[@value='Berlin, 2. und 5. Juli 1787'] -opus/data/descriptions/letterDesc/date[@value='Berlin, 30. Juni 1787'] -opus/data/descriptions/letterDesc/date[@value='Berlin, 30. Oktober 1756'] -opus/data/descriptions/letterDesc/date[@value='Berlin, 3. Juli 1787'] -opus/data/descriptions/letterDesc/date[@value='Berlin, vor oder am 16. November 1782'] -opus/data/descriptions/letterDesc/date[@value='Bückeburg, 11. März 1773'] -opus/data/descriptions/letterDesc/date[@value='Bückeburg, 20. Juli 1776'] -opus/data/descriptions/letterDesc/date[@value='Bückeburg, 21. Juli 1773'] -opus/data/descriptions/letterDesc/date[@value='Bückeburg, 29. Juli 1775'] -opus/data/descriptions/letterDesc/date[@value='Bückeburg, 2. Januar 1773'] -opus/data/descriptions/letterDesc/date[@value='Darmstadt, 15. April 1777'] -opus/data/descriptions/letterDesc/date[@value='Datum unbekannt'] -opus/data/descriptions/letterDesc/date[@value='Dessau, vor und am 13. Juli 1777'] -opus/data/descriptions/letterDesc/date[@value='Dezember 1774'] -opus/data/descriptions/letterDesc/date[@value='Drubenalken, 18. Dezember 1780'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 10. Februar 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 10. März 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 11. November 1785'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 12. Februar 1787'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 13.–14. April 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 13. Januar 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 14. März 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 14. November 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 16. Dezember 1785'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 16. Januar 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 16. März 1788'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 16. November 1787'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 17.–18. November 1785'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 18. April 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 1. April 1787'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 1. Februar 1785'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 20.–21. November 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 20. Dezember 1785'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 21. April 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 21. Februar 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 21. März 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 21. März 1788'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 22. Dezember 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 22. Februar 1785'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 22. Februar 1788'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 22. März 1785'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 22. November 1785'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 23. Dezember 1785'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 2.–3. Februar 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 23. Januar 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 24. März 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 25. April 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 25. Dezember 1787'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 25. März 1788'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 26. April 1785'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 27. Februar 1787'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 27. März 1787'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 27. November 1787'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 28. Februar und 2.–3. März 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 29.–30. November 1787'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 2. November 1787'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 30. Dezember 1784'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 30. Dezember 1785'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 30. März 1788'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 5. Januar 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 7. April 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 7. Februar 1786'] -opus/data/descriptions/letterDesc/date[@value='Düsseldorf, 7. November 1786'] -opus/data/descriptions/letterDesc/date[@value='Elbing, 16. Juni 1762'] -opus/data/descriptions/letterDesc/date[@value='Elbing, 23. Juni 1762'] -opus/data/descriptions/letterDesc/date[@value='Ende April 1775'] -opus/data/descriptions/letterDesc/date[@value='Ende Dezember 1759'] -opus/data/descriptions/letterDesc/date[@value='Eutin, 31. Juli 1782'] -opus/data/descriptions/letterDesc/date[@value='Frankfurt, 30. August 1764'] -opus/data/descriptions/letterDesc/date[@value='Frankfurt, 30. März 1786'] -opus/data/descriptions/letterDesc/date[@value='Frankfurt am Main, 26. August 1763'] -opus/data/descriptions/letterDesc/date[@value='Frankfurt am Main, 27. August 1764'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 10. Juni 1755'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 11. Februar 1756'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 11. Januar 1754'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 12. Januar 1755'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 13. März 1756'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 15. Juni 1755'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 16. Dezember 1753'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 17. März 1755'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 17. März 1756'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 18. Dezember 1755'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 19. April 1756'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 19. Januar 1755'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 20. Mai 1756'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 21. Februar 1756'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 25. April 1756'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 27. März 1756'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 27. Oktober 1754'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 28. April 1755'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 28. April 1756'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 28. Februar 1754'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 28. Februar 1756'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 28. Mai 1755'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 28. und 29. Dezember 1755'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 29. August 1754'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 29. Dezember 1755'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 29. Februar 1756'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 3. Februar 1756'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 3. März 1756'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 4. Mai 1754'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 4. Mai 1755'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 5. Januar 1755'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 6. August 1754'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, 6. März 1754'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, Ende März oder Anfang April 1756'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, Mai 1756'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, vmtl. 19. Dezember 1755'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, vmtl. Anfang Januar 1754'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, vmtl. Mai 1756'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, vmtl. März 1756'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, vmtl. Mitte Februar 1756'] -opus/data/descriptions/letterDesc/date[@value='Grünhof, vmtl. Mitte März 1756'] -opus/data/descriptions/letterDesc/date[@value='Hamburg, 14. Febuar 1775'] -opus/data/descriptions/letterDesc/date[@value='Hamburg, 16. November 1773'] -opus/data/descriptions/letterDesc/date[@value='Hamburg, 9. November 1774'] -opus/data/descriptions/letterDesc/date[@value='Juni 1760'] -opus/data/descriptions/letterDesc/date[@value='Kapstadt, 8. September 1783'] -opus/data/descriptions/letterDesc/date[@value='Kegeln, 26. Februar 1753'] -opus/data/descriptions/letterDesc/date[@value='Kegeln, 9. Dezember 1752'] -opus/data/descriptions/letterDesc/date[@value='Klarensegg, 14. Februar 1780'] -opus/data/descriptions/letterDesc/date[@value='Klarensegg, nach dem 8. September 1779'] -opus/data/descriptions/letterDesc/date[@value='Köngisberg, 2. Januar 1765'] -opus/data/descriptions/letterDesc/date[@value='Köngisberg, 7. Februar 1761'] -opus/data/descriptions/letterDesc/date[@value='Königsber, 13. September 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10.–11. April 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10.–12. Januar 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10.–12. März 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10.–12. März 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10. August 1767'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10. August 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10. August 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10. Dezember 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10. Februar 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10. Juli 1762'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10. Juni 1767'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10. Mai 1781'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10. Mai 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10. März 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10. März 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10. November 1763'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10. November 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10. Oktober 1761'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10. Oktober 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 10. und 14. Dezember 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 11.–12. August 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 11.–12. März 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 11. April 1761'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 11. April 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 11. Februar 1763'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 11. Februar 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 11. Januar 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 11. Mai 1781'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 11. Mai 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 11. September 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 11. und 13. November 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 11. und 15. September 1763'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 11. und 18. September 1762'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 12.–13. November 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg,12.–14. Dezember 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 12.–14. November 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 12., 24.–25. und 30. April 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 12. April 1760'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 12. April 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 12. April 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 12. August 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 12. Dezember 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 12. Februar 1762'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 12. Januar 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 1.–2. Januar 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 12. Juni 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 1.–2. Juni 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 12. Mai 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 1.–2. März 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 12. November 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 12. Oktober 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 12. Oktober 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 12. September 1770'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 1.–2. und 4. Februar 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 13.–14. Mai 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 13.–15. Mai 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 13., 22. und 28. August 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 1., 3.–4. und 7. August 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 13. April 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 13. Februar 1765'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 13. Februar 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 13. Januar 1773'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 13. Juni 1760'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 13. März 1776'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 13. November 1773'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 13. Oktober 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 13. September 1770'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 13. und 14. Juli 1778'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 13. und 15. Dezember 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 13. und 15. März 1769'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 13. und 15. November 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 1., 3. und 6. Februar 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 14.–15. Dezember 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 14.–15. Juni 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 14.–15. März 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 14.–15. November 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 14.–15. Oktober 1776'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 14. April 1778'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 14. April 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 14. August 1775'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 14. Dezember 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 14. Juni 1772'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 14. Juni 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 14. Mai 1763'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 14. März 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 14. März 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 14. März 1775'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 14. März 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 14. Oktober 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 14. September 1781'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 15.–16. März 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 15. August 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 15. Dezember 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 15. Februar 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 15. Februar 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 15. Januar 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 15. Januar 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 15. Januar 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 15. Juni 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 15. Mai 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 15. März 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 15. November 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 15. Oktober 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 15. September 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 15. und 17. September 1781'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 15. und 20. Dezember 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16.–17. August 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16.–17. Februar 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16.–19. Februar 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. April 1762'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. August 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. Dezember 1776'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. Dezember 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. Februar 1765'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. Februar 1767'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. Februar 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. Januar 1765'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. Januar 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. Juli 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. Juni 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. Mai 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16 Mai 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. Mai 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. März 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. März 1765'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. Oktober 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. Oktober 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. September 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. September 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. und 23. Juli 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 16. und 24. November 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17.–18. November 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17.–18 und 28. September sowie 6.–7. Oktober 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17.–19. April 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17., 21. und 23. Mai 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 1771/1772'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17. April 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17. April 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17. Dezember 1781'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17. Februar 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17. Januar 1761'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17. Januar 1769'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17. Juli 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17. Juli 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17. Juni 1763'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17. Juni 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17. Mai 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17. März 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17. November 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17. November 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17. Oktober 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17. Oktober 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17. September 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17. September 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 17. und 20. Mai 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18.–19. April und 4. Mai 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18.–19. September 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18.–19. und 21. Dezember 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18., 20. und 23. April 1775'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. April 1776'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. August 1756'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. August 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. August 1776'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. August 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. August 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. August 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. August 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. Dezember 1762'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. Dezember 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. Februar 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. Februar 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. Januar 1778'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. Januar 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. Juli 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. Juli 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. Juni 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. Juni 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. Mai 1765'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. Mai 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. Mai 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. November 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. Oktober 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 18. Oktober 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 19.–20. Juni 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 19.–20. November 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 19.–20. September 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 19. April 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 19. August 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 19. Dezember 1761'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 19. Dezember 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 19. Februar 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 19. Januar 1765'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 19. Januar 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 19. Juli 1773'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 19. Juni 1781'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 19. Mai 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 19. Mai 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 19. März 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 19. Oktober 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 19. September 1778'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 19. September 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 1. April 1765'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 1. Dezember 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 1. Dezember 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 1. Juni 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 1. Juni 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 1. Mai 1765'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 1. Mai 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 1. März 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 1. November 1760'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 1. November 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 1. und 14.–15. Januar 1781'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 1. und 5. Dezember 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 20.–21. und 26. April 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 20.–22. April 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 20. August 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 20. Dezember 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 20. Februar 1765'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 20. Juli 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 20. Juni 1761'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 20. März 1773'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 20. November 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 20. November 1778'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 20. Oktober 1762'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 20. Oktober und 15. Dezember 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21.–22. Dezember 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21.–22. März 1760'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21.–22. November 1760'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21. April 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21. August 1773'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21. August 1774'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21. August 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21. Dezember 1762'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21. Dezember 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21. Januar 1765'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21. Juli 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21. Mai 1760'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21. März 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21. März 1761'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21. März 1762'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21. März 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21. März 1774'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21. März 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21. November 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21. September 1769'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 21. und 28. Februar sowie 1. März 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22.–23., 26. und 28.–30. Oktober 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22.–23. April 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22.–24. Februar 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. April 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. April 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. Dezember 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. Dezember 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. Dezember 1776'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. Februar 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. Januar 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. Juli 1781'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. Juli 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. Juni 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. Juni 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. Juni und 12. Juli 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. Mai 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. März 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. Oktober 1760'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. September 1771'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. September und 3. Oktober 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. und 25. Juli 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. und 26. Oktober 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 22. und 29.–30. Juni 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 23.–24. August 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 23.–24. Januar 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 23.–24. Januar 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 23.–24. Juni 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 23.–24. November 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2.–3. April 1774'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 23. August 1781'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 23. Februar 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 23. Januar 1765'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 23. Januar 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2.–3. Januar 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 23. Juni 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 23. Mai 1768'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 23. Mai 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 23. November 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 23. November 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 23. November 1781'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 23. September 1768'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 23. September 1774'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 24.–25. Juli 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 24.–25. Oktober 1774'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 24. August 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 24. Dezember 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 24. Januar 1769'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 24. Januar 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 24. Juli 1762'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 24. Juni 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 24. März 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 24. Oktober 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 24 Oktober 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 24. und 26. August 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 25.–26. Februar 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 25., 26. und 30. November 1778'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 25.–27. März 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 25. April 1775'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 25. August 1761'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 25. August 1781'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 25. August 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 25. August 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 25. Juli 1761'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 25. Juli 1763'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 25. Juni 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2.–5. Juni 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 25. Mai 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 25. September 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 26.–27. April 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 26. August 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 26. Dezember 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 26. Januar 1763'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 26. Januar 1765'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 26. Januar 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 26. Juli 1763'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 26. März 1762'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 26. März 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 26. November 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 26. und 28. August 1774'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 26. und 28. Januar 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 26. und 29. Juni 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 26. und 30. Januar sowie 8.–9. Februar 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 27.–28. Februar und 3. März 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 27.–28. März 1773'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 27.–29. Mai 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 27. April 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 27. April und 1. Mai 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 27. August 1769'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 27. August und 23.–25. September 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 27. Dezember 1778'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 27. Dezember 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 27. Dezemberg 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 27. Februar 1774'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 27. Februar 1775'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 27. Januar 1770'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 27. März 1776'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 27. Oktober 1762'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 27. Oktober 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 28.–29. Dezember 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 28.–29. Januar 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 28.–29. und 31. Juli 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 28. August 1761'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 28. August, 7. und 14. September 1768'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 28. Januar 1776'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 28. Juli 1756'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 28. Juli 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 28. Juni 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 28. März 1767'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 28. März 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 28. November 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 28. November 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 28. Oktober 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 28. September 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 28. September 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 28. September und 2.–3. Oktober 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 28. und 30.–31. Mai 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 28. und 31. März 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 29.–30. Januar 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 29. April 1761'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 29. August 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 29. August 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 29. Januar 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 29. Juli 1763'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 29. Juli 1767'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 29. Juli 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 29. Juli und 2. August 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 29. Juni 1763'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 29. Mai und 11. Juni 1762'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 29. März 1763'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 29. März 1776'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 29. November 1776'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 29. November 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 29. November und 27. Dezember 1767 sowie 3. Januar 1768'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 29. Oktober und 2. November 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 29. September 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 29. September 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2. April 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2. August 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2. Dezember 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2. Januar 1760'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2. Januar 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2. Januar 1778'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2. Januar 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2. Juli 1760'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2. Juli 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2. Juli 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2. Mai 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2. März 1765'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2. November 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2. oder 3. Februar 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2. Oktober 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2. September 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 2. und 22. November 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30.–31. Dezember 1760'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30.–31. Januar 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30.–31. Mai 1774'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30. April 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30. April und 2. Mai 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30. August 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30. August 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30. Januar 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30. Januar 1765'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30. Januar 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30. Juni 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30. Juni und 1. Juli 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30. Juni und 2. Juli 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30. Mai 1761'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30. Mai 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30. März 1776'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30. November 1774'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30. November 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30. November und 3.–4. Dezember 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 30. Oktober 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 31. August 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 31. Januar 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 31. Januar 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 31. Januar und 1. Februar 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 31. Juli 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 31. Juli und 1. August 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 31. Juli und 2.–3. August 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 31. Mai und 1. Juni 1781'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 31. März 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 31. März und 4. April 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 31. Oktober 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 31. Oktober 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 3.–4. Juni 1781'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 3.–4. Mai 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 3.–4. und 6. Februar 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 3.–5. und 7. Dezember 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 3. August 1762'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 3. August 1772'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 3. August 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 3. August 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 3. Januar 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 3. Januar 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 3. Juli 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 3. Juli 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 3. Mai 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 3. Oktober 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 3. Oktober 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4.–5. August 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4.–5. Januar 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4.–5. März 1762'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4.–5. und 8.–9. November 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4.–6. Februar 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4. April 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4. August 1756'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4. August 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4. August 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4. August 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4. Dezember 1774'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4. Mai 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4. März 1763'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4. März 1776'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4. November 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4. Oktober 1763'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4. Oktober 1774'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4. Oktober 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4. und 6. April 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 4. und 6. März 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5.–6. November 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. August 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. August 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. August 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. Dezember 1772'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. Januar 1760'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. Januar 1763'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. Juni 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. Mai 1752'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. Mai 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. Mai 1761'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. März 1763'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. November 1760'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. November 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. Oktober 1774'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. Oktober 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. September 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. und 12.–13. August 1781'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. und 25.–26. Oktober 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. und 7. Februar 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 5. und 7. Juli 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 6.–7. Januar 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 6.–7. und 22. September 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 6., 8. und 10. August 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 6. April 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 6. April 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 6. Dezember 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 6. Februar 1765'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 6. Februar 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 6. Juni 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 6. Mai 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 6. November 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 6. November 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 6. November 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 6. Oktober 1762'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 6. Oktober 1772'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 6. Oktober 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 6. und 7. Mai 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7.–8. Dezember 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7.–8. Juli 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7.–8. Juni 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7.–8. Oktober 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7. April 1768'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7. April 1774'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7. August 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7. August 1761'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7. August 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7. August 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7. Februar 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7. Juni 1773'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7. Juni 1781'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7. Mai 1762'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7. Mai 1781'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7. März 1761'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7. März 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7. November 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7. November 1761'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7. Oktober 1772'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7. Oktober 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7. September 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 7. und 13. Januar 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 8.–10. November 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 8.–9. Dezember 1781'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 8.–9. Mai 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 8. August 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 8. Dezember 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 8. Dezember 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 8. Dezember 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 8. Februar 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 8. Februar 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 8. Juni 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 8. Oktober 1782'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 8. und 10. Dezember 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 8. und 12. Juli 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 8. und 13.–14. Oktober 1777'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 8. und 9. August 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9.–10. April 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9.–10. Mai 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9.–10. März 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9.–10. November 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9.–10. und 12. Dezember 1781'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9.–10. und 13. August 1776'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9.–11. Juni 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9. April 1769'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9. August 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9. August 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9. Dezember 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9. Januar 1760'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9. Januar 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9. Juli 1763'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9. Juli 1786'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9. Juni 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9. Mai 1764'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9. Mai 1787'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9. März 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9. März 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, 9. Oktober 1751'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, April 1759'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, Ende Juni 1769'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, Ende September 1769'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, Juli 1769'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, Mitte April 1783'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, Mitte Februar 1779'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, Mitte Januar 1785'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, September 1769'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, vmtl. 15. Januar 1781'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, vmtl. 26. März 1780'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, vmtl. 4. Oktober 1774'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, vmtl. Dezember 1773'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, vmtl. nach 20. März 1762'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, vor und am 15. September 1784'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, vor und am 7. Februar 1788'] -opus/data/descriptions/letterDesc/date[@value='Königsberg, vor und am 9. September 1783'] -opus/data/descriptions/letterDesc/date[@value='Krappitz, 18. September 1777'] -opus/data/descriptions/letterDesc/date[@value='Leipzig, 11. Oktober 1777'] -opus/data/descriptions/letterDesc/date[@value='London, 14. Januar 1758'] -opus/data/descriptions/letterDesc/date[@value='Lübeck, 26. Juni 1764'] -opus/data/descriptions/letterDesc/date[@value='Lübeck, 27. Juni und 7. Juli 1764'] -opus/data/descriptions/letterDesc/date[@value='Magdeburg, 9. Juli 1787'] -opus/data/descriptions/letterDesc/date[@value='Mai 1777'] -opus/data/descriptions/letterDesc/date[@value='März 1767'] -opus/data/descriptions/letterDesc/date[@value='Memel, 15. November 1752'] -opus/data/descriptions/letterDesc/date[@value='Meyhof, 15. Juni 1756'] -opus/data/descriptions/letterDesc/date[@value='Meyhof, 1. Juni 1756'] -opus/data/descriptions/letterDesc/date[@value='Meyhof, 26. Juni 1754'] -opus/data/descriptions/letterDesc/date[@value='Meyhof, 5. April 1755'] -opus/data/descriptions/letterDesc/date[@value='Meyhof, Juni 1756'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 10. August 1766'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 11. Februar 1766'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 12. August 1766'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 13. September 1760'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 15. August 1765'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 15. Januar 1761'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 15. Mai 1766'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 16. August 1765'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 18. Juli 1765'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 19. April 1766'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 1. und 7. Juli 1755'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 20.–21. Februar 1766'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 20. Juni 1765'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 21. November 1766'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 22. Dezember 1766'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 22. Mai 1766'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 22. September 1760'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 24. März 1766'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 25. November 1752'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 28. August 1760'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 29. August 1765'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 29. Juni 1756'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 30. August 1766'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 30. Juni 1765'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 4. März 1766'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 4. September 1760'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 8. August 1760'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 8. Mai 1766'] -opus/data/descriptions/letterDesc/date[@value='Mitau, 9. Januar 1767'] -opus/data/descriptions/letterDesc/date[@value='Mitau, März 1766'] -opus/data/descriptions/letterDesc/date[@value='Mitte oder Ende November bis 18. Dezember 1780'] -opus/data/descriptions/letterDesc/date[@value='Mohrungen, 24. Februar 1778'] -opus/data/descriptions/letterDesc/date[@value='Mohrungen, 9. Januar 1776'] -opus/data/descriptions/letterDesc/date[@value='Münster, 10. Mai 1788'] -opus/data/descriptions/letterDesc/date[@value='Münster, 1.–2. Juni 1788'] -opus/data/descriptions/letterDesc/date[@value='Münster, 13.–14., 16.–17. und 24. November 1787'] -opus/data/descriptions/letterDesc/date[@value='Münster, 14. Mai 1788'] -opus/data/descriptions/letterDesc/date[@value='Münster, 15. Mai 1788'] -opus/data/descriptions/letterDesc/date[@value='Münster, 16.–18. Mai 1788'] -opus/data/descriptions/letterDesc/date[@value='Münster, 17. November 1787'] -opus/data/descriptions/letterDesc/date[@value='Münster, 18. Juni 1788'] -opus/data/descriptions/letterDesc/date[@value='Münster, 19.–24. November 1787'] -opus/data/descriptions/letterDesc/date[@value='Münster, 21. Dezember 1787'] -opus/data/descriptions/letterDesc/date[@value='Münster, 21. Mai 1788'] -opus/data/descriptions/letterDesc/date[@value='Münster, 22.–24. Mai 1788'] -opus/data/descriptions/letterDesc/date[@value='Münster, 22. Juli 1787'] -opus/data/descriptions/letterDesc/date[@value='Münster, 22. März 1788'] -opus/data/descriptions/letterDesc/date[@value='Münster, 2.–3. Dezember 1787'] -opus/data/descriptions/letterDesc/date[@value='Münster, 23. November 1787'] -opus/data/descriptions/letterDesc/date[@value='Münster, 24.–25. November 1787'] -opus/data/descriptions/letterDesc/date[@value='Münster, 25. November 1787'] -opus/data/descriptions/letterDesc/date[@value='Münster, 27. April 1788'] -opus/data/descriptions/letterDesc/date[@value='Münster, 2. April 1788'] -opus/data/descriptions/letterDesc/date[@value='Münster, 30.–31. Mai 1788'] -opus/data/descriptions/letterDesc/date[@value='Münster, 30. März 1788'] -opus/data/descriptions/letterDesc/date[@value='Münster, 31. Juli 1787'] -opus/data/descriptions/letterDesc/date[@value='Münster, 4. Juni 1788'] -opus/data/descriptions/letterDesc/date[@value='Münster, 4. Mai 1788'] -opus/data/descriptions/letterDesc/date[@value='Münster, 7. Januar 1785'] -opus/data/descriptions/letterDesc/date[@value='Münster, 7. Mai 1788'] -opus/data/descriptions/letterDesc/date[@value='Münster, 7. November 1787'] -opus/data/descriptions/letterDesc/date[@value='Münster, 8.–10. November 1787'] -opus/data/descriptions/letterDesc/date[@value='Münster, 8. August 1787'] -opus/data/descriptions/letterDesc/date[@value='Münster, 8. Juni 1788'] -opus/data/descriptions/letterDesc/date[@value='nach 17. April 1777'] -opus/data/descriptions/letterDesc/date[@value='nach dem 10. August 1764'] -opus/data/descriptions/letterDesc/date[@value='Nantes, August 1769'] -opus/data/descriptions/letterDesc/date[@value='November 1752'] -opus/data/descriptions/letterDesc/date[@value='Osnabrück, 9. Dezember 1785'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 11. August 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 11. Juli 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 12.–13. September 1785'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 12. Mai 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 1.–2. September 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 13.–14. August 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 13. Juni 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 13. Mai 1788'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 13. Oktober 1785'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 13. Oktober 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 14. Juli 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 15.–16. Mai 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 15. September 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 16.–18. September 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 16.–18. und 20. August 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 16. Juni 1783'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 16. Juni 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 16. Mai 1788'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 16. Oktober 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 17. Juni 1785'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 17. Juni 1788'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 18.–20. August 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 18. Mai 1785'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 18. Oktober 1784'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 20.–21. September 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 20. Juli 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 20. Juni 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 21.–23. September 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 21. August 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 21. Juli 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 22. April 1788'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 22. August 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 22. Juni 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 22. Mai 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 23.–24. September 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 23. April 1788'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 23. August 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 23. Mai 1788'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 25. April 1788'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 25. Juli 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 26. Mai 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 27. Mai 1788'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 27. und 30. August sowie 3. September 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 28. August 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 29. April 1788'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 29. Juli und 5. August 1785'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 29. Juni 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 2. Juni 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 30. April und 1. Mai 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 31. Oktober 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 3. Juni 1788'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 4.–5. September 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 4. August 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 5.–6. Oktober 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 5. Mai 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 5. September 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 6.–7. August 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 6. April 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 6. Juni 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 9. August 1787'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 9. Juni 1786'] -opus/data/descriptions/letterDesc/date[@value='Pempelfort, 9. Mai 1788'] -opus/data/descriptions/letterDesc/date[@value='Potsdam, 11. Oktober 1773'] -opus/data/descriptions/letterDesc/date[@value='Richmont, 28. Juni 1786'] -opus/data/descriptions/letterDesc/date[@value='Richterswil, 25. März 1784'] -opus/data/descriptions/letterDesc/date[@value='Riga, 10. Mai 1753'] -opus/data/descriptions/letterDesc/date[@value='Riga, 11. April 1753'] -opus/data/descriptions/letterDesc/date[@value='Riga, 12. Dezember 1758'] -opus/data/descriptions/letterDesc/date[@value='Riga, 16. Januar 1765'] -opus/data/descriptions/letterDesc/date[@value='Riga, 16. Juni 1754'] -opus/data/descriptions/letterDesc/date[@value='Riga, 16. September 1758'] -opus/data/descriptions/letterDesc/date[@value='Riga, 1753'] -opus/data/descriptions/letterDesc/date[@value='Riga, 1755'] -opus/data/descriptions/letterDesc/date[@value='Riga, 17. Oktober 1758'] -opus/data/descriptions/letterDesc/date[@value='Riga, 19. April 1753'] -opus/data/descriptions/letterDesc/date[@value='Riga, 19. Dezember 1758'] -opus/data/descriptions/letterDesc/date[@value='Riga, 19. März 1753'] -opus/data/descriptions/letterDesc/date[@value='Riga, 19. November 1755'] -opus/data/descriptions/letterDesc/date[@value='Riga, 1. Dezember 1758'] -opus/data/descriptions/letterDesc/date[@value='Riga, 20. Januar 1759'] -opus/data/descriptions/letterDesc/date[@value='Riga, 21. Mai 1765'] -opus/data/descriptions/letterDesc/date[@value='Riga, 22. und 25. Mai sowie 2. Juni 1769'] -opus/data/descriptions/letterDesc/date[@value='Riga, 24. Januar 1759'] -opus/data/descriptions/letterDesc/date[@value='Riga, 27. August 1766'] -opus/data/descriptions/letterDesc/date[@value='Riga, 28. April 1753'] -opus/data/descriptions/letterDesc/date[@value='Riga, 28. März 1753'] -opus/data/descriptions/letterDesc/date[@value='Riga, 28. Oktober 1758'] -opus/data/descriptions/letterDesc/date[@value='Riga, 31. März 1753'] -opus/data/descriptions/letterDesc/date[@value='Riga, 4. Mai 1765'] -opus/data/descriptions/letterDesc/date[@value='Riga, 5. August 1765'] -opus/data/descriptions/letterDesc/date[@value='Riga, 5. November 1755'] -opus/data/descriptions/letterDesc/date[@value='Riga, 5. Oktober 1758'] -opus/data/descriptions/letterDesc/date[@value='Riga, 5. September 1767'] -opus/data/descriptions/letterDesc/date[@value='Riga, 6. Mai 1777'] -opus/data/descriptions/letterDesc/date[@value='Riga, 8. März 1753'] -opus/data/descriptions/letterDesc/date[@value='Riga, 8. Oktober 1758'] -opus/data/descriptions/letterDesc/date[@value='Riga, Anfang Januar 1767'] -opus/data/descriptions/letterDesc/date[@value='Riga, April 1768'] -opus/data/descriptions/letterDesc/date[@value='Riga, August 1758'] -opus/data/descriptions/letterDesc/date[@value='Riga, Dezember 1766'] -opus/data/descriptions/letterDesc/date[@value='Riga, Ende Mai oder Anfang Juni 1753'] -opus/data/descriptions/letterDesc/date[@value='Riga, Ende Oktober oder Anfang November 1758'] -opus/data/descriptions/letterDesc/date[@value='Riga, Februar 1765'] -opus/data/descriptions/letterDesc/date[@value='Riga, Februar 1766'] -opus/data/descriptions/letterDesc/date[@value='Riga, Juli 1765'] -opus/data/descriptions/letterDesc/date[@value='Riga, Mai 1766'] -opus/data/descriptions/letterDesc/date[@value='Riga, März 1769'] -opus/data/descriptions/letterDesc/date[@value='Riga, November 1758'] -opus/data/descriptions/letterDesc/date[@value='Riga, November 1768'] -opus/data/descriptions/letterDesc/date[@value='Riga, vmtl. Ende Juni 1753'] -opus/data/descriptions/letterDesc/date[@value='Riga, vmtl. Juli 1766'] -opus/data/descriptions/letterDesc/date[@value='Riga, vmtl. November 1758'] -opus/data/descriptions/letterDesc/date[@value='Riga, vmtl. September oder Oktober 1758'] -opus/data/descriptions/letterDesc/date[@value='Schaffhausen, 4. Januar 1785'] -opus/data/descriptions/letterDesc/date[@value='Schloß Hegi bei Winterthur, 14. Mai 1778'] -opus/data/descriptions/letterDesc/date[@value='Schloss Hegi bei Winterthur, 16. März 1778'] -opus/data/descriptions/letterDesc/date[@value='Schloß Hegi bei Winterthur, 26. Oktober 1778'] -opus/data/descriptions/letterDesc/date[@value='Schloß Hegi bei Winterthur, 9. Juni 1779'] -opus/data/descriptions/letterDesc/date[@value='Schloß Hegi bei Winterthur, vmtl. 26. Oktober 1778'] -opus/data/descriptions/letterDesc/date[@value='Schloß Hegi bei Winterthur, vmtl. Mitte Mai 1778]'] -opus/data/descriptions/letterDesc/date[@value='September 1773'] -opus/data/descriptions/letterDesc/date[@value='St. Petersburg, 25. Dezember 1768'] -opus/data/descriptions/letterDesc/date[@value='Trutenau, 12. Juli 1759'] -opus/data/descriptions/letterDesc/date[@value='Trutenau, 16. und 20. Juli 1759'] -opus/data/descriptions/letterDesc/date[@value='Vaels bei Aachen, 11. Januar 1785'] -opus/data/descriptions/letterDesc/date[@value='Vmtl. 1759'] -opus/data/descriptions/letterDesc/date[@value='Vmtl. 1761'] -opus/data/descriptions/letterDesc/date[@value='Vmtl. 1762'] -opus/data/descriptions/letterDesc/date[@value='Vmtl. 20. Mai 1787'] -opus/data/descriptions/letterDesc/date[@value='Vmtl. August 1759'] -opus/data/descriptions/letterDesc/date[@value='Vmtl. Ende 1754'] -opus/data/descriptions/letterDesc/date[@value='Vmtl. Ende Juli 1760'] -opus/data/descriptions/letterDesc/date[@value='Vmtl. im Februar 1778'] -opus/data/descriptions/letterDesc/date[@value='Vmtl. Januar 1775'] -opus/data/descriptions/letterDesc/date[@value='Vmtl. Juni 1759'] -opus/data/descriptions/letterDesc/date[@value='Vmtl. Mai 1756'] -opus/data/descriptions/letterDesc/date[@value='Vmtl. Mitte oder Ende März 1779'] -opus/data/descriptions/letterDesc/date[@value='vor 13. August 1774'] -opus/data/descriptions/letterDesc/date[@value='vor 27. Mai 1774'] -opus/data/descriptions/letterDesc/date[@value='vor 27. September 1769'] -opus/data/descriptions/letterDesc/date[@value='vor 28. Juni 1775'] -opus/data/descriptions/letterDesc/date[@value='vor 30. November 1774'] -opus/data/descriptions/letterDesc/date[@value='vor 8. Juni 1764'] -opus/data/descriptions/letterDesc/date[@value='vor und am 20. Dezember 1774'] -opus/data/descriptions/letterDesc/date[@value='Wandsbeck, 8. August 1777'] -opus/data/descriptions/letterDesc/date[@value='Warschau, 10. November 1765'] -opus/data/descriptions/letterDesc/date[@value='Warschau, 14. Oktober 1765'] -opus/data/descriptions/letterDesc/date[@value='Warschau, 18. November 1765'] -opus/data/descriptions/letterDesc/date[@value='Warschau, 1. Dezember 1765'] -opus/data/descriptions/letterDesc/date[@value='Warschau, 26. März 1766'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 10. Mai 1784'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 13. Januar 1777'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 14. Februar 1785'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 17. Dezember 1787'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 17. Februar 1783'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 17. und 19.–-21. Mai 1779'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 20. März 1778'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 23. April 1785'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 23. August 1784'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 28. April 1787'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 28. Februar 1785'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 28. Oktober 1784'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 28. Oktober 1787'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 29. August 1779'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 29. Dezember 1778 und 2. Januar 1779'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 2. Januar 1786'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 31. Dezember 1781'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 3. März 1782'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 4. August 1785'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 4. November 1782'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 6. Mai 1779'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 9. April 1779'] -opus/data/descriptions/letterDesc/date[@value='Weimar, 9. September 1780'] -opus/data/descriptions/letterDesc/date[@value='Weimar, Anfang Juni 1780'] -opus/data/descriptions/letterDesc/date[@value='Weimar, Anfang März, 11., 17. und 21. Mai 1781'] -opus/data/descriptions/letterDesc/date[@value='Weimar, Anfang Oktober 1785'] -opus/data/descriptions/letterDesc/date[@value='Weimar, August 1777'] -opus/data/descriptions/letterDesc/date[@value='Weimar, Ende Januar 1787'] -opus/data/descriptions/letterDesc/date[@value='Weimar, Ende Oktober 1784'] -opus/data/descriptions/letterDesc/date[@value='Weimar, Ende Oktober 1785'] -opus/data/descriptions/letterDesc/date[@value='Weimar, Mai 1780'] -opus/data/descriptions/letterDesc/date[@value='Weimar, nach dem 20. und 24.–28. April 1782'] -opus/data/descriptions/letterDesc/date[@value='Weimar, vor 14. März 1782'] -opus/data/descriptions/letterDesc/date[@value='Welbergen, 10. Dezember 1787'] -opus/data/descriptions/letterDesc/date[@value='Welbergen, 11. Januar 1788'] -opus/data/descriptions/letterDesc/date[@value='Welbergen, 12. Dezember 1787'] -opus/data/descriptions/letterDesc/date[@value='Welbergen, 16. März 1788'] -opus/data/descriptions/letterDesc/date[@value='Welbergen, 17.–18. Dezember 1787'] -opus/data/descriptions/letterDesc/date[@value='Welbergen, 19. Februar 1788'] -opus/data/descriptions/letterDesc/date[@value='Welbergen, 24. Dezember 1787'] -opus/data/descriptions/letterDesc/date[@value='Welbergen, 27. Februar, 11.–12., 21. und 23. März 1788'] -opus/data/descriptions/letterDesc/date[@value='Welbergen, 27. und 29. Februar 1788'] -opus/data/descriptions/letterDesc/date[@value='Welbergen, 3. März 1788'] -opus/data/descriptions/letterDesc/date[@value='Welbergen, 4.–8. und 10. März 1788'] -opus/data/descriptions/letterDesc/date[@value='Welbergen, 4. Dezember 1787'] -opus/data/descriptions/letterDesc/date[@value='Welbergen, 6.–7. und 10.–11. Dezember 1787'] -opus/data/descriptions/letterDesc/date[@value='Welbergen, den 11. Dezember 1787'] -opus/data/descriptions/letterDesc/date[@value='Winter 1755/1756, vor Mitte März 1756'] -opus/data/descriptions/letterDesc/date[@value='Zürich, 20.–22. November 1780'] -opus/data/descriptions/letterDesc/date[@value='Zürich, 20. März 1780'] -opus/data/descriptions/letterDesc/date[@value='Zürich, 20. Oktober 1784'] -opus/data/descriptions/letterDesc/date[@value='Zürich, 26. Dezember 1777'] -opus/data/descriptions/letterDesc/date[@value='Zürich, 27. Oktober 1784'] -opus/data/descriptions/letterDesc/date[@value='Zürich, 29. Oktober 1785'] -opus/data/descriptions/letterDesc/date[@value='Zürich, 8. Mai 1785'] -opus/data/descriptions/letterDesc/date[@value='Zürich, vor 22. Februar, 22. Februar, 15. März, 2. und 14. April 1778'] -opus/data/descriptions/letterDesc/isDraft[@value=''] -opus/data/descriptions/letterDesc/isDraft[@value='431'] -opus/data/descriptions/letterDesc/location[@ref=''] -opus/data/descriptions/letterDesc/location[@ref='11'] -opus/data/descriptions/letterDesc/location[@ref='17'] -opus/data/descriptions/letterDesc/location[@ref='18'] -opus/data/descriptions/letterDesc/location[@ref='24'] -opus/data/descriptions/letterDesc/location[@ref='26'] -opus/data/descriptions/letterDesc/location[@ref='28'] -opus/data/descriptions/letterDesc/location[@ref='29'] -opus/data/descriptions/letterDesc/location[@ref='3'] -opus/data/descriptions/letterDesc/location[@ref='30'] -opus/data/descriptions/letterDesc/location[@ref='31'] -opus/data/descriptions/letterDesc/location[@ref='32'] -opus/data/descriptions/letterDesc/location[@ref='33'] -opus/data/descriptions/letterDesc/location[@ref='35'] -opus/data/descriptions/letterDesc/location[@ref='36'] -opus/data/descriptions/letterDesc/location[@ref='38'] -opus/data/descriptions/letterDesc/location[@ref='40'] -opus/data/descriptions/letterDesc/location[@ref='41'] -opus/data/descriptions/letterDesc/location[@ref='42'] -opus/data/descriptions/letterDesc/location[@ref='9'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref=''] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='101'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='103'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='104'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='108'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='11'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='111'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='114'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='116'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='118'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='125'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='127'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='128'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='16'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='3'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='33'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='38'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='4'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='42'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='44'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='45'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='46'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='48'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='52'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='55'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='56'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='59'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='62'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='71'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='72'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='73'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='75'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='78'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='88'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='90'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='91'] -opus/data/descriptions/letterDesc/receivers/receiver[@ref='92'] -opus/data/descriptions/letterDesc[@ref='1'] -opus/data/descriptions/letterDesc[@ref='10'] -opus/data/descriptions/letterDesc[@ref='100'] -opus/data/descriptions/letterDesc[@ref='1000'] -opus/data/descriptions/letterDesc[@ref='1001'] -opus/data/descriptions/letterDesc[@ref='1002'] -opus/data/descriptions/letterDesc[@ref='1003'] -opus/data/descriptions/letterDesc[@ref='1004'] -opus/data/descriptions/letterDesc[@ref='1005'] -opus/data/descriptions/letterDesc[@ref='1006'] -opus/data/descriptions/letterDesc[@ref='1007'] -opus/data/descriptions/letterDesc[@ref='1008'] -opus/data/descriptions/letterDesc[@ref='1009'] -opus/data/descriptions/letterDesc[@ref='101'] -opus/data/descriptions/letterDesc[@ref='1010'] -opus/data/descriptions/letterDesc[@ref='1011'] -opus/data/descriptions/letterDesc[@ref='1012'] -opus/data/descriptions/letterDesc[@ref='1013'] -opus/data/descriptions/letterDesc[@ref='1014'] -opus/data/descriptions/letterDesc[@ref='1015'] -opus/data/descriptions/letterDesc[@ref='1016'] -opus/data/descriptions/letterDesc[@ref='1017'] -opus/data/descriptions/letterDesc[@ref='1018'] -opus/data/descriptions/letterDesc[@ref='1019'] -opus/data/descriptions/letterDesc[@ref='102'] -opus/data/descriptions/letterDesc[@ref='1020'] -opus/data/descriptions/letterDesc[@ref='1021'] -opus/data/descriptions/letterDesc[@ref='1022'] -opus/data/descriptions/letterDesc[@ref='1023'] -opus/data/descriptions/letterDesc[@ref='1024'] -opus/data/descriptions/letterDesc[@ref='1025'] -opus/data/descriptions/letterDesc[@ref='1026'] -opus/data/descriptions/letterDesc[@ref='1027'] -opus/data/descriptions/letterDesc[@ref='1028'] -opus/data/descriptions/letterDesc[@ref='1029'] -opus/data/descriptions/letterDesc[@ref='103'] -opus/data/descriptions/letterDesc[@ref='1030'] -opus/data/descriptions/letterDesc[@ref='1031'] -opus/data/descriptions/letterDesc[@ref='1032'] -opus/data/descriptions/letterDesc[@ref='1033'] -opus/data/descriptions/letterDesc[@ref='1034'] -opus/data/descriptions/letterDesc[@ref='1035'] -opus/data/descriptions/letterDesc[@ref='1036'] -opus/data/descriptions/letterDesc[@ref='1037'] -opus/data/descriptions/letterDesc[@ref='1038'] -opus/data/descriptions/letterDesc[@ref='1039'] -opus/data/descriptions/letterDesc[@ref='104'] -opus/data/descriptions/letterDesc[@ref='1040'] -opus/data/descriptions/letterDesc[@ref='1041'] -opus/data/descriptions/letterDesc[@ref='1042'] -opus/data/descriptions/letterDesc[@ref='1043'] -opus/data/descriptions/letterDesc[@ref='1044'] -opus/data/descriptions/letterDesc[@ref='1045'] -opus/data/descriptions/letterDesc[@ref='1046'] -opus/data/descriptions/letterDesc[@ref='1047'] -opus/data/descriptions/letterDesc[@ref='1048'] -opus/data/descriptions/letterDesc[@ref='1049'] -opus/data/descriptions/letterDesc[@ref='105'] -opus/data/descriptions/letterDesc[@ref='1050'] -opus/data/descriptions/letterDesc[@ref='1051'] -opus/data/descriptions/letterDesc[@ref='1052'] -opus/data/descriptions/letterDesc[@ref='1053'] -opus/data/descriptions/letterDesc[@ref='1054'] -opus/data/descriptions/letterDesc[@ref='1055'] -opus/data/descriptions/letterDesc[@ref='1056'] -opus/data/descriptions/letterDesc[@ref='1057'] -opus/data/descriptions/letterDesc[@ref='1058'] -opus/data/descriptions/letterDesc[@ref='1059'] -opus/data/descriptions/letterDesc[@ref='106'] -opus/data/descriptions/letterDesc[@ref='1060'] -opus/data/descriptions/letterDesc[@ref='1061'] -opus/data/descriptions/letterDesc[@ref='1062'] -opus/data/descriptions/letterDesc[@ref='1063'] -opus/data/descriptions/letterDesc[@ref='1064'] -opus/data/descriptions/letterDesc[@ref='1065'] -opus/data/descriptions/letterDesc[@ref='1066'] -opus/data/descriptions/letterDesc[@ref='1067'] -opus/data/descriptions/letterDesc[@ref='1068'] -opus/data/descriptions/letterDesc[@ref='1069'] -opus/data/descriptions/letterDesc[@ref='107'] -opus/data/descriptions/letterDesc[@ref='1070'] -opus/data/descriptions/letterDesc[@ref='1071'] -opus/data/descriptions/letterDesc[@ref='1072'] -opus/data/descriptions/letterDesc[@ref='1073'] -opus/data/descriptions/letterDesc[@ref='1074'] -opus/data/descriptions/letterDesc[@ref='1075'] -opus/data/descriptions/letterDesc[@ref='1076'] -opus/data/descriptions/letterDesc[@ref='1077'] -opus/data/descriptions/letterDesc[@ref='1078'] -opus/data/descriptions/letterDesc[@ref='1079'] -opus/data/descriptions/letterDesc[@ref='108'] -opus/data/descriptions/letterDesc[@ref='1080'] -opus/data/descriptions/letterDesc[@ref='1081'] -opus/data/descriptions/letterDesc[@ref='1082'] -opus/data/descriptions/letterDesc[@ref='1083'] -opus/data/descriptions/letterDesc[@ref='1084'] -opus/data/descriptions/letterDesc[@ref='1085'] -opus/data/descriptions/letterDesc[@ref='1086'] -opus/data/descriptions/letterDesc[@ref='1087'] -opus/data/descriptions/letterDesc[@ref='1088'] -opus/data/descriptions/letterDesc[@ref='1089'] -opus/data/descriptions/letterDesc[@ref='109'] -opus/data/descriptions/letterDesc[@ref='1090'] -opus/data/descriptions/letterDesc[@ref='1091'] -opus/data/descriptions/letterDesc[@ref='1092'] -opus/data/descriptions/letterDesc[@ref='1093'] -opus/data/descriptions/letterDesc[@ref='1094'] -opus/data/descriptions/letterDesc[@ref='1095'] -opus/data/descriptions/letterDesc[@ref='1096'] -opus/data/descriptions/letterDesc[@ref='1097'] -opus/data/descriptions/letterDesc[@ref='1098'] -opus/data/descriptions/letterDesc[@ref='1099'] -opus/data/descriptions/letterDesc[@ref='11'] -opus/data/descriptions/letterDesc[@ref='110'] -opus/data/descriptions/letterDesc[@ref='1100'] -opus/data/descriptions/letterDesc[@ref='1101'] -opus/data/descriptions/letterDesc[@ref='1102'] -opus/data/descriptions/letterDesc[@ref='1103'] -opus/data/descriptions/letterDesc[@ref='1104'] -opus/data/descriptions/letterDesc[@ref='1105'] -opus/data/descriptions/letterDesc[@ref='1106'] -opus/data/descriptions/letterDesc[@ref='1107'] -opus/data/descriptions/letterDesc[@ref='1108'] -opus/data/descriptions/letterDesc[@ref='1109'] -opus/data/descriptions/letterDesc[@ref='111'] -opus/data/descriptions/letterDesc[@ref='1110'] -opus/data/descriptions/letterDesc[@ref='1111'] -opus/data/descriptions/letterDesc[@ref='1112'] -opus/data/descriptions/letterDesc[@ref='1113'] -opus/data/descriptions/letterDesc[@ref='1114'] -opus/data/descriptions/letterDesc[@ref='1115'] -opus/data/descriptions/letterDesc[@ref='1116'] -opus/data/descriptions/letterDesc[@ref='1117'] -opus/data/descriptions/letterDesc[@ref='1118'] -opus/data/descriptions/letterDesc[@ref='1119'] -opus/data/descriptions/letterDesc[@ref='112'] -opus/data/descriptions/letterDesc[@ref='1120'] -opus/data/descriptions/letterDesc[@ref='1121'] -opus/data/descriptions/letterDesc[@ref='1122'] -opus/data/descriptions/letterDesc[@ref='1123'] -opus/data/descriptions/letterDesc[@ref='1124'] -opus/data/descriptions/letterDesc[@ref='1125'] -opus/data/descriptions/letterDesc[@ref='1126'] -opus/data/descriptions/letterDesc[@ref='1127'] -opus/data/descriptions/letterDesc[@ref='1128'] -opus/data/descriptions/letterDesc[@ref='1129'] -opus/data/descriptions/letterDesc[@ref='113'] -opus/data/descriptions/letterDesc[@ref='1130'] -opus/data/descriptions/letterDesc[@ref='1131'] -opus/data/descriptions/letterDesc[@ref='1132'] -opus/data/descriptions/letterDesc[@ref='1133'] -opus/data/descriptions/letterDesc[@ref='1134'] -opus/data/descriptions/letterDesc[@ref='1135'] -opus/data/descriptions/letterDesc[@ref='1136'] -opus/data/descriptions/letterDesc[@ref='1137'] -opus/data/descriptions/letterDesc[@ref='1138'] -opus/data/descriptions/letterDesc[@ref='1139'] -opus/data/descriptions/letterDesc[@ref='114'] -opus/data/descriptions/letterDesc[@ref='1140'] -opus/data/descriptions/letterDesc[@ref='1141'] -opus/data/descriptions/letterDesc[@ref='1142'] -opus/data/descriptions/letterDesc[@ref='1143'] -opus/data/descriptions/letterDesc[@ref='1144'] -opus/data/descriptions/letterDesc[@ref='1145'] -opus/data/descriptions/letterDesc[@ref='1146'] -opus/data/descriptions/letterDesc[@ref='1147'] -opus/data/descriptions/letterDesc[@ref='1148'] -opus/data/descriptions/letterDesc[@ref='1149'] -opus/data/descriptions/letterDesc[@ref='115'] -opus/data/descriptions/letterDesc[@ref='1150'] -opus/data/descriptions/letterDesc[@ref='1151'] -opus/data/descriptions/letterDesc[@ref='1152'] -opus/data/descriptions/letterDesc[@ref='1153'] -opus/data/descriptions/letterDesc[@ref='1154'] -opus/data/descriptions/letterDesc[@ref='1155'] -opus/data/descriptions/letterDesc[@ref='1156'] -opus/data/descriptions/letterDesc[@ref='1157'] -opus/data/descriptions/letterDesc[@ref='1158'] -opus/data/descriptions/letterDesc[@ref='1159'] -opus/data/descriptions/letterDesc[@ref='116'] -opus/data/descriptions/letterDesc[@ref='1160'] -opus/data/descriptions/letterDesc[@ref='1161'] -opus/data/descriptions/letterDesc[@ref='1162'] -opus/data/descriptions/letterDesc[@ref='1163'] -opus/data/descriptions/letterDesc[@ref='1164'] -opus/data/descriptions/letterDesc[@ref='1165'] -opus/data/descriptions/letterDesc[@ref='1166'] -opus/data/descriptions/letterDesc[@ref='1167'] -opus/data/descriptions/letterDesc[@ref='1168'] -opus/data/descriptions/letterDesc[@ref='1169'] -opus/data/descriptions/letterDesc[@ref='117'] -opus/data/descriptions/letterDesc[@ref='1170'] -opus/data/descriptions/letterDesc[@ref='1171'] -opus/data/descriptions/letterDesc[@ref='1172'] -opus/data/descriptions/letterDesc[@ref='1173'] -opus/data/descriptions/letterDesc[@ref='1174'] -opus/data/descriptions/letterDesc[@ref='1175'] -opus/data/descriptions/letterDesc[@ref='1176'] -opus/data/descriptions/letterDesc[@ref='1177'] -opus/data/descriptions/letterDesc[@ref='1178'] -opus/data/descriptions/letterDesc[@ref='1179'] -opus/data/descriptions/letterDesc[@ref='118'] -opus/data/descriptions/letterDesc[@ref='1180'] -opus/data/descriptions/letterDesc[@ref='1181'] -opus/data/descriptions/letterDesc[@ref='1182'] -opus/data/descriptions/letterDesc[@ref='1183'] -opus/data/descriptions/letterDesc[@ref='1184'] -opus/data/descriptions/letterDesc[@ref='1185'] -opus/data/descriptions/letterDesc[@ref='1186'] -opus/data/descriptions/letterDesc[@ref='1187'] -opus/data/descriptions/letterDesc[@ref='1188'] -opus/data/descriptions/letterDesc[@ref='1189'] -opus/data/descriptions/letterDesc[@ref='119'] -opus/data/descriptions/letterDesc[@ref='1190'] -opus/data/descriptions/letterDesc[@ref='1191'] -opus/data/descriptions/letterDesc[@ref='12'] -opus/data/descriptions/letterDesc[@ref='120'] -opus/data/descriptions/letterDesc[@ref='121'] -opus/data/descriptions/letterDesc[@ref='122'] -opus/data/descriptions/letterDesc[@ref='123'] -opus/data/descriptions/letterDesc[@ref='124'] -opus/data/descriptions/letterDesc[@ref='125'] -opus/data/descriptions/letterDesc[@ref='126'] -opus/data/descriptions/letterDesc[@ref='127'] -opus/data/descriptions/letterDesc[@ref='128'] -opus/data/descriptions/letterDesc[@ref='129'] -opus/data/descriptions/letterDesc[@ref='13'] -opus/data/descriptions/letterDesc[@ref='130'] -opus/data/descriptions/letterDesc[@ref='131'] -opus/data/descriptions/letterDesc[@ref='132'] -opus/data/descriptions/letterDesc[@ref='133'] -opus/data/descriptions/letterDesc[@ref='134'] -opus/data/descriptions/letterDesc[@ref='135'] -opus/data/descriptions/letterDesc[@ref='136'] -opus/data/descriptions/letterDesc[@ref='137'] -opus/data/descriptions/letterDesc[@ref='138'] -opus/data/descriptions/letterDesc[@ref='139'] -opus/data/descriptions/letterDesc[@ref='14'] -opus/data/descriptions/letterDesc[@ref='140'] -opus/data/descriptions/letterDesc[@ref='141'] -opus/data/descriptions/letterDesc[@ref='142'] -opus/data/descriptions/letterDesc[@ref='143'] -opus/data/descriptions/letterDesc[@ref='144'] -opus/data/descriptions/letterDesc[@ref='145'] -opus/data/descriptions/letterDesc[@ref='146'] -opus/data/descriptions/letterDesc[@ref='147'] -opus/data/descriptions/letterDesc[@ref='148'] -opus/data/descriptions/letterDesc[@ref='149'] -opus/data/descriptions/letterDesc[@ref='15'] -opus/data/descriptions/letterDesc[@ref='150'] -opus/data/descriptions/letterDesc[@ref='151'] -opus/data/descriptions/letterDesc[@ref='152'] -opus/data/descriptions/letterDesc[@ref='153'] -opus/data/descriptions/letterDesc[@ref='154'] -opus/data/descriptions/letterDesc[@ref='155'] -opus/data/descriptions/letterDesc[@ref='156'] -opus/data/descriptions/letterDesc[@ref='157'] -opus/data/descriptions/letterDesc[@ref='158'] -opus/data/descriptions/letterDesc[@ref='159'] -opus/data/descriptions/letterDesc[@ref='16'] -opus/data/descriptions/letterDesc[@ref='160'] -opus/data/descriptions/letterDesc[@ref='161'] -opus/data/descriptions/letterDesc[@ref='162'] -opus/data/descriptions/letterDesc[@ref='163'] -opus/data/descriptions/letterDesc[@ref='164'] -opus/data/descriptions/letterDesc[@ref='165'] -opus/data/descriptions/letterDesc[@ref='166'] -opus/data/descriptions/letterDesc[@ref='167'] -opus/data/descriptions/letterDesc[@ref='168'] -opus/data/descriptions/letterDesc[@ref='169'] -opus/data/descriptions/letterDesc[@ref='17'] -opus/data/descriptions/letterDesc[@ref='170'] -opus/data/descriptions/letterDesc[@ref='171'] -opus/data/descriptions/letterDesc[@ref='172'] -opus/data/descriptions/letterDesc[@ref='173'] -opus/data/descriptions/letterDesc[@ref='174'] -opus/data/descriptions/letterDesc[@ref='175'] -opus/data/descriptions/letterDesc[@ref='176'] -opus/data/descriptions/letterDesc[@ref='177'] -opus/data/descriptions/letterDesc[@ref='178'] -opus/data/descriptions/letterDesc[@ref='179'] -opus/data/descriptions/letterDesc[@ref='18'] -opus/data/descriptions/letterDesc[@ref='180'] -opus/data/descriptions/letterDesc[@ref='181'] -opus/data/descriptions/letterDesc[@ref='182'] -opus/data/descriptions/letterDesc[@ref='183'] -opus/data/descriptions/letterDesc[@ref='184'] -opus/data/descriptions/letterDesc[@ref='185'] -opus/data/descriptions/letterDesc[@ref='186'] -opus/data/descriptions/letterDesc[@ref='187'] -opus/data/descriptions/letterDesc[@ref='188'] -opus/data/descriptions/letterDesc[@ref='189'] -opus/data/descriptions/letterDesc[@ref='19'] -opus/data/descriptions/letterDesc[@ref='190'] -opus/data/descriptions/letterDesc[@ref='191'] -opus/data/descriptions/letterDesc[@ref='192'] -opus/data/descriptions/letterDesc[@ref='193'] -opus/data/descriptions/letterDesc[@ref='194'] -opus/data/descriptions/letterDesc[@ref='195'] -opus/data/descriptions/letterDesc[@ref='196'] -opus/data/descriptions/letterDesc[@ref='197'] -opus/data/descriptions/letterDesc[@ref='198'] -opus/data/descriptions/letterDesc[@ref='199'] -opus/data/descriptions/letterDesc[@ref='2'] -opus/data/descriptions/letterDesc[@ref='20'] -opus/data/descriptions/letterDesc[@ref='200'] -opus/data/descriptions/letterDesc[@ref='201'] -opus/data/descriptions/letterDesc[@ref='202'] -opus/data/descriptions/letterDesc[@ref='203'] -opus/data/descriptions/letterDesc[@ref='204'] -opus/data/descriptions/letterDesc[@ref='205'] -opus/data/descriptions/letterDesc[@ref='206'] -opus/data/descriptions/letterDesc[@ref='207'] -opus/data/descriptions/letterDesc[@ref='208'] -opus/data/descriptions/letterDesc[@ref='209'] -opus/data/descriptions/letterDesc[@ref='21'] -opus/data/descriptions/letterDesc[@ref='210'] -opus/data/descriptions/letterDesc[@ref='211'] -opus/data/descriptions/letterDesc[@ref='212'] -opus/data/descriptions/letterDesc[@ref='213'] -opus/data/descriptions/letterDesc[@ref='214'] -opus/data/descriptions/letterDesc[@ref='215'] -opus/data/descriptions/letterDesc[@ref='216'] -opus/data/descriptions/letterDesc[@ref='217'] -opus/data/descriptions/letterDesc[@ref='218'] -opus/data/descriptions/letterDesc[@ref='219'] -opus/data/descriptions/letterDesc[@ref='22'] -opus/data/descriptions/letterDesc[@ref='220'] -opus/data/descriptions/letterDesc[@ref='221'] -opus/data/descriptions/letterDesc[@ref='222'] -opus/data/descriptions/letterDesc[@ref='223'] -opus/data/descriptions/letterDesc[@ref='224'] -opus/data/descriptions/letterDesc[@ref='225'] -opus/data/descriptions/letterDesc[@ref='226'] -opus/data/descriptions/letterDesc[@ref='227'] -opus/data/descriptions/letterDesc[@ref='228'] -opus/data/descriptions/letterDesc[@ref='229'] -opus/data/descriptions/letterDesc[@ref='23'] -opus/data/descriptions/letterDesc[@ref='230'] -opus/data/descriptions/letterDesc[@ref='231'] -opus/data/descriptions/letterDesc[@ref='232'] -opus/data/descriptions/letterDesc[@ref='233'] -opus/data/descriptions/letterDesc[@ref='234'] -opus/data/descriptions/letterDesc[@ref='235'] -opus/data/descriptions/letterDesc[@ref='236'] -opus/data/descriptions/letterDesc[@ref='237'] -opus/data/descriptions/letterDesc[@ref='238'] -opus/data/descriptions/letterDesc[@ref='239'] -opus/data/descriptions/letterDesc[@ref='24'] -opus/data/descriptions/letterDesc[@ref='240'] -opus/data/descriptions/letterDesc[@ref='241'] -opus/data/descriptions/letterDesc[@ref='242'] -opus/data/descriptions/letterDesc[@ref='243'] -opus/data/descriptions/letterDesc[@ref='244'] -opus/data/descriptions/letterDesc[@ref='245'] -opus/data/descriptions/letterDesc[@ref='246'] -opus/data/descriptions/letterDesc[@ref='247'] -opus/data/descriptions/letterDesc[@ref='248'] -opus/data/descriptions/letterDesc[@ref='249'] -opus/data/descriptions/letterDesc[@ref='25'] -opus/data/descriptions/letterDesc[@ref='250'] -opus/data/descriptions/letterDesc[@ref='251'] -opus/data/descriptions/letterDesc[@ref='252'] -opus/data/descriptions/letterDesc[@ref='253'] -opus/data/descriptions/letterDesc[@ref='254'] -opus/data/descriptions/letterDesc[@ref='255'] -opus/data/descriptions/letterDesc[@ref='256'] -opus/data/descriptions/letterDesc[@ref='257'] -opus/data/descriptions/letterDesc[@ref='258'] -opus/data/descriptions/letterDesc[@ref='259'] -opus/data/descriptions/letterDesc[@ref='26'] -opus/data/descriptions/letterDesc[@ref='260'] -opus/data/descriptions/letterDesc[@ref='261'] -opus/data/descriptions/letterDesc[@ref='262'] -opus/data/descriptions/letterDesc[@ref='263'] -opus/data/descriptions/letterDesc[@ref='264'] -opus/data/descriptions/letterDesc[@ref='265'] -opus/data/descriptions/letterDesc[@ref='266'] -opus/data/descriptions/letterDesc[@ref='267'] -opus/data/descriptions/letterDesc[@ref='268'] -opus/data/descriptions/letterDesc[@ref='269'] -opus/data/descriptions/letterDesc[@ref='27'] -opus/data/descriptions/letterDesc[@ref='270'] -opus/data/descriptions/letterDesc[@ref='271'] -opus/data/descriptions/letterDesc[@ref='272'] -opus/data/descriptions/letterDesc[@ref='273'] -opus/data/descriptions/letterDesc[@ref='274'] -opus/data/descriptions/letterDesc[@ref='275'] -opus/data/descriptions/letterDesc[@ref='276'] -opus/data/descriptions/letterDesc[@ref='277'] -opus/data/descriptions/letterDesc[@ref='278'] -opus/data/descriptions/letterDesc[@ref='279'] -opus/data/descriptions/letterDesc[@ref='28'] -opus/data/descriptions/letterDesc[@ref='280'] -opus/data/descriptions/letterDesc[@ref='281'] -opus/data/descriptions/letterDesc[@ref='282'] -opus/data/descriptions/letterDesc[@ref='283'] -opus/data/descriptions/letterDesc[@ref='284'] -opus/data/descriptions/letterDesc[@ref='285'] -opus/data/descriptions/letterDesc[@ref='286'] -opus/data/descriptions/letterDesc[@ref='287'] -opus/data/descriptions/letterDesc[@ref='288'] -opus/data/descriptions/letterDesc[@ref='289'] -opus/data/descriptions/letterDesc[@ref='29'] -opus/data/descriptions/letterDesc[@ref='290'] -opus/data/descriptions/letterDesc[@ref='291'] -opus/data/descriptions/letterDesc[@ref='292'] -opus/data/descriptions/letterDesc[@ref='293'] -opus/data/descriptions/letterDesc[@ref='294'] -opus/data/descriptions/letterDesc[@ref='295'] -opus/data/descriptions/letterDesc[@ref='296'] -opus/data/descriptions/letterDesc[@ref='297'] -opus/data/descriptions/letterDesc[@ref='298'] -opus/data/descriptions/letterDesc[@ref='299'] -opus/data/descriptions/letterDesc[@ref='3'] -opus/data/descriptions/letterDesc[@ref='30'] -opus/data/descriptions/letterDesc[@ref='300'] -opus/data/descriptions/letterDesc[@ref='301'] -opus/data/descriptions/letterDesc[@ref='302'] -opus/data/descriptions/letterDesc[@ref='303'] -opus/data/descriptions/letterDesc[@ref='304'] -opus/data/descriptions/letterDesc[@ref='305'] -opus/data/descriptions/letterDesc[@ref='306'] -opus/data/descriptions/letterDesc[@ref='307'] -opus/data/descriptions/letterDesc[@ref='308'] -opus/data/descriptions/letterDesc[@ref='309'] -opus/data/descriptions/letterDesc[@ref='31'] -opus/data/descriptions/letterDesc[@ref='310'] -opus/data/descriptions/letterDesc[@ref='311'] -opus/data/descriptions/letterDesc[@ref='312'] -opus/data/descriptions/letterDesc[@ref='313'] -opus/data/descriptions/letterDesc[@ref='314'] -opus/data/descriptions/letterDesc[@ref='315'] -opus/data/descriptions/letterDesc[@ref='316'] -opus/data/descriptions/letterDesc[@ref='317'] -opus/data/descriptions/letterDesc[@ref='318'] -opus/data/descriptions/letterDesc[@ref='319'] -opus/data/descriptions/letterDesc[@ref='32'] -opus/data/descriptions/letterDesc[@ref='320'] -opus/data/descriptions/letterDesc[@ref='321'] -opus/data/descriptions/letterDesc[@ref='322'] -opus/data/descriptions/letterDesc[@ref='323'] -opus/data/descriptions/letterDesc[@ref='324'] -opus/data/descriptions/letterDesc[@ref='325'] -opus/data/descriptions/letterDesc[@ref='326'] -opus/data/descriptions/letterDesc[@ref='327'] -opus/data/descriptions/letterDesc[@ref='328'] -opus/data/descriptions/letterDesc[@ref='329'] -opus/data/descriptions/letterDesc[@ref='33'] -opus/data/descriptions/letterDesc[@ref='330'] -opus/data/descriptions/letterDesc[@ref='331'] -opus/data/descriptions/letterDesc[@ref='332'] -opus/data/descriptions/letterDesc[@ref='333'] -opus/data/descriptions/letterDesc[@ref='334'] -opus/data/descriptions/letterDesc[@ref='335'] -opus/data/descriptions/letterDesc[@ref='336'] -opus/data/descriptions/letterDesc[@ref='337'] -opus/data/descriptions/letterDesc[@ref='338'] -opus/data/descriptions/letterDesc[@ref='339'] -opus/data/descriptions/letterDesc[@ref='34'] -opus/data/descriptions/letterDesc[@ref='340'] -opus/data/descriptions/letterDesc[@ref='341'] -opus/data/descriptions/letterDesc[@ref='342'] -opus/data/descriptions/letterDesc[@ref='343'] -opus/data/descriptions/letterDesc[@ref='344'] -opus/data/descriptions/letterDesc[@ref='345'] -opus/data/descriptions/letterDesc[@ref='346'] -opus/data/descriptions/letterDesc[@ref='347'] -opus/data/descriptions/letterDesc[@ref='348'] -opus/data/descriptions/letterDesc[@ref='349'] -opus/data/descriptions/letterDesc[@ref='35'] -opus/data/descriptions/letterDesc[@ref='350'] -opus/data/descriptions/letterDesc[@ref='351'] -opus/data/descriptions/letterDesc[@ref='352'] -opus/data/descriptions/letterDesc[@ref='353'] -opus/data/descriptions/letterDesc[@ref='354'] -opus/data/descriptions/letterDesc[@ref='355'] -opus/data/descriptions/letterDesc[@ref='356'] -opus/data/descriptions/letterDesc[@ref='357'] -opus/data/descriptions/letterDesc[@ref='358'] -opus/data/descriptions/letterDesc[@ref='359'] -opus/data/descriptions/letterDesc[@ref='36'] -opus/data/descriptions/letterDesc[@ref='360'] -opus/data/descriptions/letterDesc[@ref='361'] -opus/data/descriptions/letterDesc[@ref='362'] -opus/data/descriptions/letterDesc[@ref='363'] -opus/data/descriptions/letterDesc[@ref='364'] -opus/data/descriptions/letterDesc[@ref='365'] -opus/data/descriptions/letterDesc[@ref='366'] -opus/data/descriptions/letterDesc[@ref='367'] -opus/data/descriptions/letterDesc[@ref='368'] -opus/data/descriptions/letterDesc[@ref='369'] -opus/data/descriptions/letterDesc[@ref='37'] -opus/data/descriptions/letterDesc[@ref='370'] -opus/data/descriptions/letterDesc[@ref='371'] -opus/data/descriptions/letterDesc[@ref='372'] -opus/data/descriptions/letterDesc[@ref='373'] -opus/data/descriptions/letterDesc[@ref='374'] -opus/data/descriptions/letterDesc[@ref='375'] -opus/data/descriptions/letterDesc[@ref='376'] -opus/data/descriptions/letterDesc[@ref='377'] -opus/data/descriptions/letterDesc[@ref='378'] -opus/data/descriptions/letterDesc[@ref='379'] -opus/data/descriptions/letterDesc[@ref='38'] -opus/data/descriptions/letterDesc[@ref='380'] -opus/data/descriptions/letterDesc[@ref='381'] -opus/data/descriptions/letterDesc[@ref='382'] -opus/data/descriptions/letterDesc[@ref='383'] -opus/data/descriptions/letterDesc[@ref='384'] -opus/data/descriptions/letterDesc[@ref='385'] -opus/data/descriptions/letterDesc[@ref='386'] -opus/data/descriptions/letterDesc[@ref='387'] -opus/data/descriptions/letterDesc[@ref='388'] -opus/data/descriptions/letterDesc[@ref='389'] -opus/data/descriptions/letterDesc[@ref='39'] -opus/data/descriptions/letterDesc[@ref='390'] -opus/data/descriptions/letterDesc[@ref='391'] -opus/data/descriptions/letterDesc[@ref='392'] -opus/data/descriptions/letterDesc[@ref='393'] -opus/data/descriptions/letterDesc[@ref='394'] -opus/data/descriptions/letterDesc[@ref='395'] -opus/data/descriptions/letterDesc[@ref='396'] -opus/data/descriptions/letterDesc[@ref='397'] -opus/data/descriptions/letterDesc[@ref='398'] -opus/data/descriptions/letterDesc[@ref='399'] -opus/data/descriptions/letterDesc[@ref='4'] -opus/data/descriptions/letterDesc[@ref='40'] -opus/data/descriptions/letterDesc[@ref='400'] -opus/data/descriptions/letterDesc[@ref='401'] -opus/data/descriptions/letterDesc[@ref='402'] -opus/data/descriptions/letterDesc[@ref='403'] -opus/data/descriptions/letterDesc[@ref='404'] -opus/data/descriptions/letterDesc[@ref='405'] -opus/data/descriptions/letterDesc[@ref='406'] -opus/data/descriptions/letterDesc[@ref='407'] -opus/data/descriptions/letterDesc[@ref='408'] -opus/data/descriptions/letterDesc[@ref='409'] -opus/data/descriptions/letterDesc[@ref='41'] -opus/data/descriptions/letterDesc[@ref='410'] -opus/data/descriptions/letterDesc[@ref='411'] -opus/data/descriptions/letterDesc[@ref='412'] -opus/data/descriptions/letterDesc[@ref='413'] -opus/data/descriptions/letterDesc[@ref='414'] -opus/data/descriptions/letterDesc[@ref='415'] -opus/data/descriptions/letterDesc[@ref='416'] -opus/data/descriptions/letterDesc[@ref='417'] -opus/data/descriptions/letterDesc[@ref='418'] -opus/data/descriptions/letterDesc[@ref='419'] -opus/data/descriptions/letterDesc[@ref='42'] -opus/data/descriptions/letterDesc[@ref='420'] -opus/data/descriptions/letterDesc[@ref='421'] -opus/data/descriptions/letterDesc[@ref='422'] -opus/data/descriptions/letterDesc[@ref='423'] -opus/data/descriptions/letterDesc[@ref='424'] -opus/data/descriptions/letterDesc[@ref='425'] -opus/data/descriptions/letterDesc[@ref='426'] -opus/data/descriptions/letterDesc[@ref='427'] -opus/data/descriptions/letterDesc[@ref='428'] -opus/data/descriptions/letterDesc[@ref='429'] -opus/data/descriptions/letterDesc[@ref='43'] -opus/data/descriptions/letterDesc[@ref='430'] -opus/data/descriptions/letterDesc[@ref='431'] -opus/data/descriptions/letterDesc[@ref='432'] -opus/data/descriptions/letterDesc[@ref='433'] -opus/data/descriptions/letterDesc[@ref='434'] -opus/data/descriptions/letterDesc[@ref='435'] -opus/data/descriptions/letterDesc[@ref='436'] -opus/data/descriptions/letterDesc[@ref='437'] -opus/data/descriptions/letterDesc[@ref='438'] -opus/data/descriptions/letterDesc[@ref='439'] -opus/data/descriptions/letterDesc[@ref='44'] -opus/data/descriptions/letterDesc[@ref='440'] -opus/data/descriptions/letterDesc[@ref='441'] -opus/data/descriptions/letterDesc[@ref='442'] -opus/data/descriptions/letterDesc[@ref='443'] -opus/data/descriptions/letterDesc[@ref='444'] -opus/data/descriptions/letterDesc[@ref='445'] -opus/data/descriptions/letterDesc[@ref='446'] -opus/data/descriptions/letterDesc[@ref='447'] -opus/data/descriptions/letterDesc[@ref='448'] -opus/data/descriptions/letterDesc[@ref='449'] -opus/data/descriptions/letterDesc[@ref='45'] -opus/data/descriptions/letterDesc[@ref='450'] -opus/data/descriptions/letterDesc[@ref='451'] -opus/data/descriptions/letterDesc[@ref='452'] -opus/data/descriptions/letterDesc[@ref='453'] -opus/data/descriptions/letterDesc[@ref='454'] -opus/data/descriptions/letterDesc[@ref='455'] -opus/data/descriptions/letterDesc[@ref='456'] -opus/data/descriptions/letterDesc[@ref='457'] -opus/data/descriptions/letterDesc[@ref='458'] -opus/data/descriptions/letterDesc[@ref='459'] -opus/data/descriptions/letterDesc[@ref='46'] -opus/data/descriptions/letterDesc[@ref='460'] -opus/data/descriptions/letterDesc[@ref='461'] -opus/data/descriptions/letterDesc[@ref='462'] -opus/data/descriptions/letterDesc[@ref='463'] -opus/data/descriptions/letterDesc[@ref='464'] -opus/data/descriptions/letterDesc[@ref='465'] -opus/data/descriptions/letterDesc[@ref='466'] -opus/data/descriptions/letterDesc[@ref='467'] -opus/data/descriptions/letterDesc[@ref='468'] -opus/data/descriptions/letterDesc[@ref='469'] -opus/data/descriptions/letterDesc[@ref='47'] -opus/data/descriptions/letterDesc[@ref='470'] -opus/data/descriptions/letterDesc[@ref='471'] -opus/data/descriptions/letterDesc[@ref='472'] -opus/data/descriptions/letterDesc[@ref='473'] -opus/data/descriptions/letterDesc[@ref='474'] -opus/data/descriptions/letterDesc[@ref='475'] -opus/data/descriptions/letterDesc[@ref='476'] -opus/data/descriptions/letterDesc[@ref='477'] -opus/data/descriptions/letterDesc[@ref='478'] -opus/data/descriptions/letterDesc[@ref='479'] -opus/data/descriptions/letterDesc[@ref='48'] -opus/data/descriptions/letterDesc[@ref='480'] -opus/data/descriptions/letterDesc[@ref='481'] -opus/data/descriptions/letterDesc[@ref='482'] -opus/data/descriptions/letterDesc[@ref='483'] -opus/data/descriptions/letterDesc[@ref='484'] -opus/data/descriptions/letterDesc[@ref='485'] -opus/data/descriptions/letterDesc[@ref='486'] -opus/data/descriptions/letterDesc[@ref='487'] -opus/data/descriptions/letterDesc[@ref='488'] -opus/data/descriptions/letterDesc[@ref='489'] -opus/data/descriptions/letterDesc[@ref='49'] -opus/data/descriptions/letterDesc[@ref='490'] -opus/data/descriptions/letterDesc[@ref='491'] -opus/data/descriptions/letterDesc[@ref='492'] -opus/data/descriptions/letterDesc[@ref='493'] -opus/data/descriptions/letterDesc[@ref='494'] -opus/data/descriptions/letterDesc[@ref='495'] -opus/data/descriptions/letterDesc[@ref='496'] -opus/data/descriptions/letterDesc[@ref='497'] -opus/data/descriptions/letterDesc[@ref='498'] -opus/data/descriptions/letterDesc[@ref='499'] -opus/data/descriptions/letterDesc[@ref='5'] -opus/data/descriptions/letterDesc[@ref='50'] -opus/data/descriptions/letterDesc[@ref='500'] -opus/data/descriptions/letterDesc[@ref='501'] -opus/data/descriptions/letterDesc[@ref='502'] -opus/data/descriptions/letterDesc[@ref='503'] -opus/data/descriptions/letterDesc[@ref='504'] -opus/data/descriptions/letterDesc[@ref='505'] -opus/data/descriptions/letterDesc[@ref='506'] -opus/data/descriptions/letterDesc[@ref='507'] -opus/data/descriptions/letterDesc[@ref='508'] -opus/data/descriptions/letterDesc[@ref='509'] -opus/data/descriptions/letterDesc[@ref='51'] -opus/data/descriptions/letterDesc[@ref='510'] -opus/data/descriptions/letterDesc[@ref='511'] -opus/data/descriptions/letterDesc[@ref='512'] -opus/data/descriptions/letterDesc[@ref='513'] -opus/data/descriptions/letterDesc[@ref='514'] -opus/data/descriptions/letterDesc[@ref='515'] -opus/data/descriptions/letterDesc[@ref='516'] -opus/data/descriptions/letterDesc[@ref='517'] -opus/data/descriptions/letterDesc[@ref='518'] -opus/data/descriptions/letterDesc[@ref='519'] -opus/data/descriptions/letterDesc[@ref='52'] -opus/data/descriptions/letterDesc[@ref='520'] -opus/data/descriptions/letterDesc[@ref='521'] -opus/data/descriptions/letterDesc[@ref='522'] -opus/data/descriptions/letterDesc[@ref='523'] -opus/data/descriptions/letterDesc[@ref='524'] -opus/data/descriptions/letterDesc[@ref='525'] -opus/data/descriptions/letterDesc[@ref='526'] -opus/data/descriptions/letterDesc[@ref='527'] -opus/data/descriptions/letterDesc[@ref='528'] -opus/data/descriptions/letterDesc[@ref='529'] -opus/data/descriptions/letterDesc[@ref='53'] -opus/data/descriptions/letterDesc[@ref='530'] -opus/data/descriptions/letterDesc[@ref='531'] -opus/data/descriptions/letterDesc[@ref='532'] -opus/data/descriptions/letterDesc[@ref='533'] -opus/data/descriptions/letterDesc[@ref='534'] -opus/data/descriptions/letterDesc[@ref='535'] -opus/data/descriptions/letterDesc[@ref='536'] -opus/data/descriptions/letterDesc[@ref='537'] -opus/data/descriptions/letterDesc[@ref='538'] -opus/data/descriptions/letterDesc[@ref='539'] -opus/data/descriptions/letterDesc[@ref='54'] -opus/data/descriptions/letterDesc[@ref='540'] -opus/data/descriptions/letterDesc[@ref='541'] -opus/data/descriptions/letterDesc[@ref='542'] -opus/data/descriptions/letterDesc[@ref='543'] -opus/data/descriptions/letterDesc[@ref='544'] -opus/data/descriptions/letterDesc[@ref='545'] -opus/data/descriptions/letterDesc[@ref='546'] -opus/data/descriptions/letterDesc[@ref='547'] -opus/data/descriptions/letterDesc[@ref='548'] -opus/data/descriptions/letterDesc[@ref='549'] -opus/data/descriptions/letterDesc[@ref='55'] -opus/data/descriptions/letterDesc[@ref='550'] -opus/data/descriptions/letterDesc[@ref='551'] -opus/data/descriptions/letterDesc[@ref='552'] -opus/data/descriptions/letterDesc[@ref='553'] -opus/data/descriptions/letterDesc[@ref='554'] -opus/data/descriptions/letterDesc[@ref='555'] -opus/data/descriptions/letterDesc[@ref='556'] -opus/data/descriptions/letterDesc[@ref='557'] -opus/data/descriptions/letterDesc[@ref='558'] -opus/data/descriptions/letterDesc[@ref='559'] -opus/data/descriptions/letterDesc[@ref='56'] -opus/data/descriptions/letterDesc[@ref='560'] -opus/data/descriptions/letterDesc[@ref='561'] -opus/data/descriptions/letterDesc[@ref='562'] -opus/data/descriptions/letterDesc[@ref='563'] -opus/data/descriptions/letterDesc[@ref='564'] -opus/data/descriptions/letterDesc[@ref='565'] -opus/data/descriptions/letterDesc[@ref='566'] -opus/data/descriptions/letterDesc[@ref='567'] -opus/data/descriptions/letterDesc[@ref='568'] -opus/data/descriptions/letterDesc[@ref='569'] -opus/data/descriptions/letterDesc[@ref='57'] -opus/data/descriptions/letterDesc[@ref='570'] -opus/data/descriptions/letterDesc[@ref='571'] -opus/data/descriptions/letterDesc[@ref='572'] -opus/data/descriptions/letterDesc[@ref='573'] -opus/data/descriptions/letterDesc[@ref='574'] -opus/data/descriptions/letterDesc[@ref='575'] -opus/data/descriptions/letterDesc[@ref='576'] -opus/data/descriptions/letterDesc[@ref='577'] -opus/data/descriptions/letterDesc[@ref='578'] -opus/data/descriptions/letterDesc[@ref='579'] -opus/data/descriptions/letterDesc[@ref='58'] -opus/data/descriptions/letterDesc[@ref='580'] -opus/data/descriptions/letterDesc[@ref='581'] -opus/data/descriptions/letterDesc[@ref='582'] -opus/data/descriptions/letterDesc[@ref='583'] -opus/data/descriptions/letterDesc[@ref='584'] -opus/data/descriptions/letterDesc[@ref='585'] -opus/data/descriptions/letterDesc[@ref='586'] -opus/data/descriptions/letterDesc[@ref='587'] -opus/data/descriptions/letterDesc[@ref='588'] -opus/data/descriptions/letterDesc[@ref='589'] -opus/data/descriptions/letterDesc[@ref='59'] -opus/data/descriptions/letterDesc[@ref='590'] -opus/data/descriptions/letterDesc[@ref='591'] -opus/data/descriptions/letterDesc[@ref='592'] -opus/data/descriptions/letterDesc[@ref='593'] -opus/data/descriptions/letterDesc[@ref='594'] -opus/data/descriptions/letterDesc[@ref='595'] -opus/data/descriptions/letterDesc[@ref='596'] -opus/data/descriptions/letterDesc[@ref='597'] -opus/data/descriptions/letterDesc[@ref='598'] -opus/data/descriptions/letterDesc[@ref='599'] -opus/data/descriptions/letterDesc[@ref='6'] -opus/data/descriptions/letterDesc[@ref='60'] -opus/data/descriptions/letterDesc[@ref='600'] -opus/data/descriptions/letterDesc[@ref='601'] -opus/data/descriptions/letterDesc[@ref='602'] -opus/data/descriptions/letterDesc[@ref='603'] -opus/data/descriptions/letterDesc[@ref='604'] -opus/data/descriptions/letterDesc[@ref='605'] -opus/data/descriptions/letterDesc[@ref='606'] -opus/data/descriptions/letterDesc[@ref='607'] -opus/data/descriptions/letterDesc[@ref='608'] -opus/data/descriptions/letterDesc[@ref='609'] -opus/data/descriptions/letterDesc[@ref='61'] -opus/data/descriptions/letterDesc[@ref='610'] -opus/data/descriptions/letterDesc[@ref='611'] -opus/data/descriptions/letterDesc[@ref='612'] -opus/data/descriptions/letterDesc[@ref='613'] -opus/data/descriptions/letterDesc[@ref='614'] -opus/data/descriptions/letterDesc[@ref='615'] -opus/data/descriptions/letterDesc[@ref='616'] -opus/data/descriptions/letterDesc[@ref='617'] -opus/data/descriptions/letterDesc[@ref='618'] -opus/data/descriptions/letterDesc[@ref='619'] -opus/data/descriptions/letterDesc[@ref='62'] -opus/data/descriptions/letterDesc[@ref='620'] -opus/data/descriptions/letterDesc[@ref='621'] -opus/data/descriptions/letterDesc[@ref='622'] -opus/data/descriptions/letterDesc[@ref='623'] -opus/data/descriptions/letterDesc[@ref='624'] -opus/data/descriptions/letterDesc[@ref='625'] -opus/data/descriptions/letterDesc[@ref='626'] -opus/data/descriptions/letterDesc[@ref='627'] -opus/data/descriptions/letterDesc[@ref='628'] -opus/data/descriptions/letterDesc[@ref='629'] -opus/data/descriptions/letterDesc[@ref='63'] -opus/data/descriptions/letterDesc[@ref='630'] -opus/data/descriptions/letterDesc[@ref='631'] -opus/data/descriptions/letterDesc[@ref='632'] -opus/data/descriptions/letterDesc[@ref='633'] -opus/data/descriptions/letterDesc[@ref='634'] -opus/data/descriptions/letterDesc[@ref='635'] -opus/data/descriptions/letterDesc[@ref='636'] -opus/data/descriptions/letterDesc[@ref='637'] -opus/data/descriptions/letterDesc[@ref='638'] -opus/data/descriptions/letterDesc[@ref='639'] -opus/data/descriptions/letterDesc[@ref='64'] -opus/data/descriptions/letterDesc[@ref='640'] -opus/data/descriptions/letterDesc[@ref='641'] -opus/data/descriptions/letterDesc[@ref='642'] -opus/data/descriptions/letterDesc[@ref='643'] -opus/data/descriptions/letterDesc[@ref='644'] -opus/data/descriptions/letterDesc[@ref='645'] -opus/data/descriptions/letterDesc[@ref='646'] -opus/data/descriptions/letterDesc[@ref='647'] -opus/data/descriptions/letterDesc[@ref='648'] -opus/data/descriptions/letterDesc[@ref='649'] -opus/data/descriptions/letterDesc[@ref='65'] -opus/data/descriptions/letterDesc[@ref='650'] -opus/data/descriptions/letterDesc[@ref='651'] -opus/data/descriptions/letterDesc[@ref='652'] -opus/data/descriptions/letterDesc[@ref='653'] -opus/data/descriptions/letterDesc[@ref='654'] -opus/data/descriptions/letterDesc[@ref='655'] -opus/data/descriptions/letterDesc[@ref='656'] -opus/data/descriptions/letterDesc[@ref='657'] -opus/data/descriptions/letterDesc[@ref='658'] -opus/data/descriptions/letterDesc[@ref='659'] -opus/data/descriptions/letterDesc[@ref='66'] -opus/data/descriptions/letterDesc[@ref='660'] -opus/data/descriptions/letterDesc[@ref='661'] -opus/data/descriptions/letterDesc[@ref='662'] -opus/data/descriptions/letterDesc[@ref='663'] -opus/data/descriptions/letterDesc[@ref='664'] -opus/data/descriptions/letterDesc[@ref='665'] -opus/data/descriptions/letterDesc[@ref='666'] -opus/data/descriptions/letterDesc[@ref='667'] -opus/data/descriptions/letterDesc[@ref='668'] -opus/data/descriptions/letterDesc[@ref='669'] -opus/data/descriptions/letterDesc[@ref='67'] -opus/data/descriptions/letterDesc[@ref='670'] -opus/data/descriptions/letterDesc[@ref='671'] -opus/data/descriptions/letterDesc[@ref='672'] -opus/data/descriptions/letterDesc[@ref='673'] -opus/data/descriptions/letterDesc[@ref='674'] -opus/data/descriptions/letterDesc[@ref='675'] -opus/data/descriptions/letterDesc[@ref='676'] -opus/data/descriptions/letterDesc[@ref='677'] -opus/data/descriptions/letterDesc[@ref='678'] -opus/data/descriptions/letterDesc[@ref='679'] -opus/data/descriptions/letterDesc[@ref='68'] -opus/data/descriptions/letterDesc[@ref='680'] -opus/data/descriptions/letterDesc[@ref='681'] -opus/data/descriptions/letterDesc[@ref='682'] -opus/data/descriptions/letterDesc[@ref='683'] -opus/data/descriptions/letterDesc[@ref='684'] -opus/data/descriptions/letterDesc[@ref='685'] -opus/data/descriptions/letterDesc[@ref='686'] -opus/data/descriptions/letterDesc[@ref='687'] -opus/data/descriptions/letterDesc[@ref='688'] -opus/data/descriptions/letterDesc[@ref='689'] -opus/data/descriptions/letterDesc[@ref='69'] -opus/data/descriptions/letterDesc[@ref='690'] -opus/data/descriptions/letterDesc[@ref='691'] -opus/data/descriptions/letterDesc[@ref='692'] -opus/data/descriptions/letterDesc[@ref='693'] -opus/data/descriptions/letterDesc[@ref='694'] -opus/data/descriptions/letterDesc[@ref='695'] -opus/data/descriptions/letterDesc[@ref='696'] -opus/data/descriptions/letterDesc[@ref='697'] -opus/data/descriptions/letterDesc[@ref='698'] -opus/data/descriptions/letterDesc[@ref='699'] -opus/data/descriptions/letterDesc[@ref='7'] -opus/data/descriptions/letterDesc[@ref='70'] -opus/data/descriptions/letterDesc[@ref='700'] -opus/data/descriptions/letterDesc[@ref='701'] -opus/data/descriptions/letterDesc[@ref='702'] -opus/data/descriptions/letterDesc[@ref='703'] -opus/data/descriptions/letterDesc[@ref='704'] -opus/data/descriptions/letterDesc[@ref='705'] -opus/data/descriptions/letterDesc[@ref='706'] -opus/data/descriptions/letterDesc[@ref='707'] -opus/data/descriptions/letterDesc[@ref='708'] -opus/data/descriptions/letterDesc[@ref='709'] -opus/data/descriptions/letterDesc[@ref='71'] -opus/data/descriptions/letterDesc[@ref='710'] -opus/data/descriptions/letterDesc[@ref='711'] -opus/data/descriptions/letterDesc[@ref='712'] -opus/data/descriptions/letterDesc[@ref='713'] -opus/data/descriptions/letterDesc[@ref='714'] -opus/data/descriptions/letterDesc[@ref='715'] -opus/data/descriptions/letterDesc[@ref='716'] -opus/data/descriptions/letterDesc[@ref='717'] -opus/data/descriptions/letterDesc[@ref='718'] -opus/data/descriptions/letterDesc[@ref='719'] -opus/data/descriptions/letterDesc[@ref='72'] -opus/data/descriptions/letterDesc[@ref='720'] -opus/data/descriptions/letterDesc[@ref='721'] -opus/data/descriptions/letterDesc[@ref='722'] -opus/data/descriptions/letterDesc[@ref='723'] -opus/data/descriptions/letterDesc[@ref='724'] -opus/data/descriptions/letterDesc[@ref='725'] -opus/data/descriptions/letterDesc[@ref='726'] -opus/data/descriptions/letterDesc[@ref='727'] -opus/data/descriptions/letterDesc[@ref='728'] -opus/data/descriptions/letterDesc[@ref='729'] -opus/data/descriptions/letterDesc[@ref='73'] -opus/data/descriptions/letterDesc[@ref='730'] -opus/data/descriptions/letterDesc[@ref='731'] -opus/data/descriptions/letterDesc[@ref='732'] -opus/data/descriptions/letterDesc[@ref='733'] -opus/data/descriptions/letterDesc[@ref='734'] -opus/data/descriptions/letterDesc[@ref='735'] -opus/data/descriptions/letterDesc[@ref='736'] -opus/data/descriptions/letterDesc[@ref='737'] -opus/data/descriptions/letterDesc[@ref='738'] -opus/data/descriptions/letterDesc[@ref='739'] -opus/data/descriptions/letterDesc[@ref='74'] -opus/data/descriptions/letterDesc[@ref='740'] -opus/data/descriptions/letterDesc[@ref='741'] -opus/data/descriptions/letterDesc[@ref='742'] -opus/data/descriptions/letterDesc[@ref='743'] -opus/data/descriptions/letterDesc[@ref='744'] -opus/data/descriptions/letterDesc[@ref='745'] -opus/data/descriptions/letterDesc[@ref='746'] -opus/data/descriptions/letterDesc[@ref='747'] -opus/data/descriptions/letterDesc[@ref='748'] -opus/data/descriptions/letterDesc[@ref='749'] -opus/data/descriptions/letterDesc[@ref='75'] -opus/data/descriptions/letterDesc[@ref='750'] -opus/data/descriptions/letterDesc[@ref='751'] -opus/data/descriptions/letterDesc[@ref='752'] -opus/data/descriptions/letterDesc[@ref='753'] -opus/data/descriptions/letterDesc[@ref='754'] -opus/data/descriptions/letterDesc[@ref='755'] -opus/data/descriptions/letterDesc[@ref='756'] -opus/data/descriptions/letterDesc[@ref='757'] -opus/data/descriptions/letterDesc[@ref='758'] -opus/data/descriptions/letterDesc[@ref='759'] -opus/data/descriptions/letterDesc[@ref='76'] -opus/data/descriptions/letterDesc[@ref='760'] -opus/data/descriptions/letterDesc[@ref='761'] -opus/data/descriptions/letterDesc[@ref='762'] -opus/data/descriptions/letterDesc[@ref='763'] -opus/data/descriptions/letterDesc[@ref='764'] -opus/data/descriptions/letterDesc[@ref='765'] -opus/data/descriptions/letterDesc[@ref='766'] -opus/data/descriptions/letterDesc[@ref='767'] -opus/data/descriptions/letterDesc[@ref='768'] -opus/data/descriptions/letterDesc[@ref='769'] -opus/data/descriptions/letterDesc[@ref='77'] -opus/data/descriptions/letterDesc[@ref='770'] -opus/data/descriptions/letterDesc[@ref='771'] -opus/data/descriptions/letterDesc[@ref='772'] -opus/data/descriptions/letterDesc[@ref='773'] -opus/data/descriptions/letterDesc[@ref='774'] -opus/data/descriptions/letterDesc[@ref='775'] -opus/data/descriptions/letterDesc[@ref='776'] -opus/data/descriptions/letterDesc[@ref='777'] -opus/data/descriptions/letterDesc[@ref='778'] -opus/data/descriptions/letterDesc[@ref='779'] -opus/data/descriptions/letterDesc[@ref='78'] -opus/data/descriptions/letterDesc[@ref='780'] -opus/data/descriptions/letterDesc[@ref='781'] -opus/data/descriptions/letterDesc[@ref='782'] -opus/data/descriptions/letterDesc[@ref='783'] -opus/data/descriptions/letterDesc[@ref='784'] -opus/data/descriptions/letterDesc[@ref='785'] -opus/data/descriptions/letterDesc[@ref='786'] -opus/data/descriptions/letterDesc[@ref='787'] -opus/data/descriptions/letterDesc[@ref='788'] -opus/data/descriptions/letterDesc[@ref='789'] -opus/data/descriptions/letterDesc[@ref='79'] -opus/data/descriptions/letterDesc[@ref='790'] -opus/data/descriptions/letterDesc[@ref='791'] -opus/data/descriptions/letterDesc[@ref='792'] -opus/data/descriptions/letterDesc[@ref='793'] -opus/data/descriptions/letterDesc[@ref='794'] -opus/data/descriptions/letterDesc[@ref='795'] -opus/data/descriptions/letterDesc[@ref='796'] -opus/data/descriptions/letterDesc[@ref='797'] -opus/data/descriptions/letterDesc[@ref='798'] -opus/data/descriptions/letterDesc[@ref='799'] -opus/data/descriptions/letterDesc[@ref='8'] -opus/data/descriptions/letterDesc[@ref='80'] -opus/data/descriptions/letterDesc[@ref='800'] -opus/data/descriptions/letterDesc[@ref='801'] -opus/data/descriptions/letterDesc[@ref='802'] -opus/data/descriptions/letterDesc[@ref='803'] -opus/data/descriptions/letterDesc[@ref='804'] -opus/data/descriptions/letterDesc[@ref='805'] -opus/data/descriptions/letterDesc[@ref='806'] -opus/data/descriptions/letterDesc[@ref='807'] -opus/data/descriptions/letterDesc[@ref='808'] -opus/data/descriptions/letterDesc[@ref='809'] -opus/data/descriptions/letterDesc[@ref='81'] -opus/data/descriptions/letterDesc[@ref='810'] -opus/data/descriptions/letterDesc[@ref='811'] -opus/data/descriptions/letterDesc[@ref='812'] -opus/data/descriptions/letterDesc[@ref='813'] -opus/data/descriptions/letterDesc[@ref='814'] -opus/data/descriptions/letterDesc[@ref='815'] -opus/data/descriptions/letterDesc[@ref='816'] -opus/data/descriptions/letterDesc[@ref='817'] -opus/data/descriptions/letterDesc[@ref='818'] -opus/data/descriptions/letterDesc[@ref='819'] -opus/data/descriptions/letterDesc[@ref='82'] -opus/data/descriptions/letterDesc[@ref='820'] -opus/data/descriptions/letterDesc[@ref='821'] -opus/data/descriptions/letterDesc[@ref='822'] -opus/data/descriptions/letterDesc[@ref='823'] -opus/data/descriptions/letterDesc[@ref='824'] -opus/data/descriptions/letterDesc[@ref='825'] -opus/data/descriptions/letterDesc[@ref='826'] -opus/data/descriptions/letterDesc[@ref='827'] -opus/data/descriptions/letterDesc[@ref='828'] -opus/data/descriptions/letterDesc[@ref='829'] -opus/data/descriptions/letterDesc[@ref='83'] -opus/data/descriptions/letterDesc[@ref='830'] -opus/data/descriptions/letterDesc[@ref='831'] -opus/data/descriptions/letterDesc[@ref='832'] -opus/data/descriptions/letterDesc[@ref='833'] -opus/data/descriptions/letterDesc[@ref='834'] -opus/data/descriptions/letterDesc[@ref='835'] -opus/data/descriptions/letterDesc[@ref='836'] -opus/data/descriptions/letterDesc[@ref='837'] -opus/data/descriptions/letterDesc[@ref='838'] -opus/data/descriptions/letterDesc[@ref='839'] -opus/data/descriptions/letterDesc[@ref='84'] -opus/data/descriptions/letterDesc[@ref='840'] -opus/data/descriptions/letterDesc[@ref='841'] -opus/data/descriptions/letterDesc[@ref='842'] -opus/data/descriptions/letterDesc[@ref='843'] -opus/data/descriptions/letterDesc[@ref='844'] -opus/data/descriptions/letterDesc[@ref='845'] -opus/data/descriptions/letterDesc[@ref='846'] -opus/data/descriptions/letterDesc[@ref='847'] -opus/data/descriptions/letterDesc[@ref='848'] -opus/data/descriptions/letterDesc[@ref='849'] -opus/data/descriptions/letterDesc[@ref='85'] -opus/data/descriptions/letterDesc[@ref='850'] -opus/data/descriptions/letterDesc[@ref='851'] -opus/data/descriptions/letterDesc[@ref='852'] -opus/data/descriptions/letterDesc[@ref='853'] -opus/data/descriptions/letterDesc[@ref='854'] -opus/data/descriptions/letterDesc[@ref='855'] -opus/data/descriptions/letterDesc[@ref='856'] -opus/data/descriptions/letterDesc[@ref='857'] -opus/data/descriptions/letterDesc[@ref='858'] -opus/data/descriptions/letterDesc[@ref='859'] -opus/data/descriptions/letterDesc[@ref='86'] -opus/data/descriptions/letterDesc[@ref='860'] -opus/data/descriptions/letterDesc[@ref='861'] -opus/data/descriptions/letterDesc[@ref='862'] -opus/data/descriptions/letterDesc[@ref='863'] -opus/data/descriptions/letterDesc[@ref='864'] -opus/data/descriptions/letterDesc[@ref='865'] -opus/data/descriptions/letterDesc[@ref='866'] -opus/data/descriptions/letterDesc[@ref='867'] -opus/data/descriptions/letterDesc[@ref='868'] -opus/data/descriptions/letterDesc[@ref='869'] -opus/data/descriptions/letterDesc[@ref='87'] -opus/data/descriptions/letterDesc[@ref='870'] -opus/data/descriptions/letterDesc[@ref='871'] -opus/data/descriptions/letterDesc[@ref='872'] -opus/data/descriptions/letterDesc[@ref='873'] -opus/data/descriptions/letterDesc[@ref='874'] -opus/data/descriptions/letterDesc[@ref='875'] -opus/data/descriptions/letterDesc[@ref='876'] -opus/data/descriptions/letterDesc[@ref='877'] -opus/data/descriptions/letterDesc[@ref='878'] -opus/data/descriptions/letterDesc[@ref='879'] -opus/data/descriptions/letterDesc[@ref='88'] -opus/data/descriptions/letterDesc[@ref='880'] -opus/data/descriptions/letterDesc[@ref='881'] -opus/data/descriptions/letterDesc[@ref='882'] -opus/data/descriptions/letterDesc[@ref='883'] -opus/data/descriptions/letterDesc[@ref='884'] -opus/data/descriptions/letterDesc[@ref='885'] -opus/data/descriptions/letterDesc[@ref='886'] -opus/data/descriptions/letterDesc[@ref='887'] -opus/data/descriptions/letterDesc[@ref='888'] -opus/data/descriptions/letterDesc[@ref='889'] -opus/data/descriptions/letterDesc[@ref='89'] -opus/data/descriptions/letterDesc[@ref='890'] -opus/data/descriptions/letterDesc[@ref='891'] -opus/data/descriptions/letterDesc[@ref='892'] -opus/data/descriptions/letterDesc[@ref='893'] -opus/data/descriptions/letterDesc[@ref='894'] -opus/data/descriptions/letterDesc[@ref='895'] -opus/data/descriptions/letterDesc[@ref='896'] -opus/data/descriptions/letterDesc[@ref='897'] -opus/data/descriptions/letterDesc[@ref='898'] -opus/data/descriptions/letterDesc[@ref='899'] -opus/data/descriptions/letterDesc[@ref='9'] -opus/data/descriptions/letterDesc[@ref='90'] -opus/data/descriptions/letterDesc[@ref='900'] -opus/data/descriptions/letterDesc[@ref='901'] -opus/data/descriptions/letterDesc[@ref='902'] -opus/data/descriptions/letterDesc[@ref='903'] -opus/data/descriptions/letterDesc[@ref='904'] -opus/data/descriptions/letterDesc[@ref='905'] -opus/data/descriptions/letterDesc[@ref='906'] -opus/data/descriptions/letterDesc[@ref='907'] -opus/data/descriptions/letterDesc[@ref='908'] -opus/data/descriptions/letterDesc[@ref='909'] -opus/data/descriptions/letterDesc[@ref='91'] -opus/data/descriptions/letterDesc[@ref='910'] -opus/data/descriptions/letterDesc[@ref='911'] -opus/data/descriptions/letterDesc[@ref='912'] -opus/data/descriptions/letterDesc[@ref='913'] -opus/data/descriptions/letterDesc[@ref='914'] -opus/data/descriptions/letterDesc[@ref='915'] -opus/data/descriptions/letterDesc[@ref='916'] -opus/data/descriptions/letterDesc[@ref='917'] -opus/data/descriptions/letterDesc[@ref='918'] -opus/data/descriptions/letterDesc[@ref='919'] -opus/data/descriptions/letterDesc[@ref='92'] -opus/data/descriptions/letterDesc[@ref='920'] -opus/data/descriptions/letterDesc[@ref='921'] -opus/data/descriptions/letterDesc[@ref='922'] -opus/data/descriptions/letterDesc[@ref='923'] -opus/data/descriptions/letterDesc[@ref='924'] -opus/data/descriptions/letterDesc[@ref='925'] -opus/data/descriptions/letterDesc[@ref='926'] -opus/data/descriptions/letterDesc[@ref='927'] -opus/data/descriptions/letterDesc[@ref='928'] -opus/data/descriptions/letterDesc[@ref='929'] -opus/data/descriptions/letterDesc[@ref='93'] -opus/data/descriptions/letterDesc[@ref='930'] -opus/data/descriptions/letterDesc[@ref='931'] -opus/data/descriptions/letterDesc[@ref='932'] -opus/data/descriptions/letterDesc[@ref='933'] -opus/data/descriptions/letterDesc[@ref='934'] -opus/data/descriptions/letterDesc[@ref='935'] -opus/data/descriptions/letterDesc[@ref='936'] -opus/data/descriptions/letterDesc[@ref='937'] -opus/data/descriptions/letterDesc[@ref='938'] -opus/data/descriptions/letterDesc[@ref='939'] -opus/data/descriptions/letterDesc[@ref='94'] -opus/data/descriptions/letterDesc[@ref='940'] -opus/data/descriptions/letterDesc[@ref='941'] -opus/data/descriptions/letterDesc[@ref='942'] -opus/data/descriptions/letterDesc[@ref='943'] -opus/data/descriptions/letterDesc[@ref='944'] -opus/data/descriptions/letterDesc[@ref='945'] -opus/data/descriptions/letterDesc[@ref='946'] -opus/data/descriptions/letterDesc[@ref='947'] -opus/data/descriptions/letterDesc[@ref='948'] -opus/data/descriptions/letterDesc[@ref='949'] -opus/data/descriptions/letterDesc[@ref='95'] -opus/data/descriptions/letterDesc[@ref='950'] -opus/data/descriptions/letterDesc[@ref='951'] -opus/data/descriptions/letterDesc[@ref='952'] -opus/data/descriptions/letterDesc[@ref='953'] -opus/data/descriptions/letterDesc[@ref='954'] -opus/data/descriptions/letterDesc[@ref='955'] -opus/data/descriptions/letterDesc[@ref='956'] -opus/data/descriptions/letterDesc[@ref='957'] -opus/data/descriptions/letterDesc[@ref='958'] -opus/data/descriptions/letterDesc[@ref='959'] -opus/data/descriptions/letterDesc[@ref='96'] -opus/data/descriptions/letterDesc[@ref='960'] -opus/data/descriptions/letterDesc[@ref='961'] -opus/data/descriptions/letterDesc[@ref='962'] -opus/data/descriptions/letterDesc[@ref='963'] -opus/data/descriptions/letterDesc[@ref='964'] -opus/data/descriptions/letterDesc[@ref='965'] -opus/data/descriptions/letterDesc[@ref='966'] -opus/data/descriptions/letterDesc[@ref='967'] -opus/data/descriptions/letterDesc[@ref='968'] -opus/data/descriptions/letterDesc[@ref='969'] -opus/data/descriptions/letterDesc[@ref='97'] -opus/data/descriptions/letterDesc[@ref='970'] -opus/data/descriptions/letterDesc[@ref='971'] -opus/data/descriptions/letterDesc[@ref='972'] -opus/data/descriptions/letterDesc[@ref='973'] -opus/data/descriptions/letterDesc[@ref='974'] -opus/data/descriptions/letterDesc[@ref='975'] -opus/data/descriptions/letterDesc[@ref='976'] -opus/data/descriptions/letterDesc[@ref='977'] -opus/data/descriptions/letterDesc[@ref='978'] -opus/data/descriptions/letterDesc[@ref='979'] -opus/data/descriptions/letterDesc[@ref='98'] -opus/data/descriptions/letterDesc[@ref='980'] -opus/data/descriptions/letterDesc[@ref='981'] -opus/data/descriptions/letterDesc[@ref='982'] -opus/data/descriptions/letterDesc[@ref='983'] -opus/data/descriptions/letterDesc[@ref='984'] -opus/data/descriptions/letterDesc[@ref='985'] -opus/data/descriptions/letterDesc[@ref='986'] -opus/data/descriptions/letterDesc[@ref='987'] -opus/data/descriptions/letterDesc[@ref='988'] -opus/data/descriptions/letterDesc[@ref='989'] -opus/data/descriptions/letterDesc[@ref='99'] -opus/data/descriptions/letterDesc[@ref='990'] -opus/data/descriptions/letterDesc[@ref='991'] -opus/data/descriptions/letterDesc[@ref='992'] -opus/data/descriptions/letterDesc[@ref='993'] -opus/data/descriptions/letterDesc[@ref='994'] -opus/data/descriptions/letterDesc[@ref='995'] -opus/data/descriptions/letterDesc[@ref='996'] -opus/data/descriptions/letterDesc[@ref='997'] -opus/data/descriptions/letterDesc[@ref='998'] -opus/data/descriptions/letterDesc[@ref='999'] -opus/data/descriptions/letterDesc/senders/sender[@ref=''] -opus/data/descriptions/letterDesc/senders/sender[@ref='-1'] -opus/data/descriptions/letterDesc/senders/sender[@ref='100'] -opus/data/descriptions/letterDesc/senders/sender[@ref='106'] -opus/data/descriptions/letterDesc/senders/sender[@ref='114'] -opus/data/descriptions/letterDesc/senders/sender[@ref='119'] -opus/data/descriptions/letterDesc/senders/sender[@ref='120'] -opus/data/descriptions/letterDesc/senders/sender[@ref='121'] -opus/data/descriptions/letterDesc/senders/sender[@ref='18'] -opus/data/descriptions/letterDesc/senders/sender[@ref='2'] -opus/data/descriptions/letterDesc/senders/sender[@ref='21'] -opus/data/descriptions/letterDesc/senders/sender[@ref='37'] -opus/data/descriptions/letterDesc/senders/sender[@ref='39'] -opus/data/descriptions/letterDesc/senders/sender[@ref='44'] -opus/data/descriptions/letterDesc/senders/sender[@ref='49'] -opus/data/descriptions/letterDesc/senders/sender[@ref='51'] -opus/data/descriptions/letterDesc/senders/sender[@ref='54'] -opus/data/descriptions/letterDesc/senders/sender[@ref='60'] -opus/data/descriptions/letterDesc/senders/sender[@ref='61'] -opus/data/descriptions/letterDesc/senders/sender[@ref='90'] -opus/data/descriptions/letterDesc/senders/sender[@ref='92'] -opus/data/descriptions/letterDesc/senders/sender[@ref='93'] -opus/data/descriptions/letterDesc/senders/sender[@ref='98'] -opus/data/descriptions/letterDesc/sort[@value='1751-08-20'] -opus/data/descriptions/letterDesc/sort[@value='1751-10-09'] -opus/data/descriptions/letterDesc/sort[@value='1752-05-05'] -opus/data/descriptions/letterDesc/sort[@value='1752-11-01'] -opus/data/descriptions/letterDesc/sort[@value='1752-11-15'] -opus/data/descriptions/letterDesc/sort[@value='1752-11-25'] -opus/data/descriptions/letterDesc/sort[@value='1752-12-09'] -opus/data/descriptions/letterDesc/sort[@value='1753-02-26'] -opus/data/descriptions/letterDesc/sort[@value='1753-03-08'] -opus/data/descriptions/letterDesc/sort[@value='1753-03-19'] -opus/data/descriptions/letterDesc/sort[@value='1753-03-28'] -opus/data/descriptions/letterDesc/sort[@value='1753-03-29'] -opus/data/descriptions/letterDesc/sort[@value='1753-03-31'] -opus/data/descriptions/letterDesc/sort[@value='1753-04-11'] -opus/data/descriptions/letterDesc/sort[@value='1753-04-19'] -opus/data/descriptions/letterDesc/sort[@value='1753-04-28'] -opus/data/descriptions/letterDesc/sort[@value='1753-05-01'] -opus/data/descriptions/letterDesc/sort[@value='1753-05-10'] -opus/data/descriptions/letterDesc/sort[@value='1753-06-01'] -opus/data/descriptions/letterDesc/sort[@value='1753-06-30'] -opus/data/descriptions/letterDesc/sort[@value='1753-12-16'] -opus/data/descriptions/letterDesc/sort[@value='1754-01-01'] -opus/data/descriptions/letterDesc/sort[@value='1754-01-11'] -opus/data/descriptions/letterDesc/sort[@value='1754-02-28'] -opus/data/descriptions/letterDesc/sort[@value='1754-03-06'] -opus/data/descriptions/letterDesc/sort[@value='1754-05-04'] -opus/data/descriptions/letterDesc/sort[@value='1754-06-16'] -opus/data/descriptions/letterDesc/sort[@value='1754-06-26'] -opus/data/descriptions/letterDesc/sort[@value='1754-08-06'] -opus/data/descriptions/letterDesc/sort[@value='1754-08-29'] -opus/data/descriptions/letterDesc/sort[@value='1754-10-27'] -opus/data/descriptions/letterDesc/sort[@value='1754-11-01'] -opus/data/descriptions/letterDesc/sort[@value='1754-11-15'] -opus/data/descriptions/letterDesc/sort[@value='1754-12-01'] -opus/data/descriptions/letterDesc/sort[@value='1755-01-05'] -opus/data/descriptions/letterDesc/sort[@value='1755-01-12'] -opus/data/descriptions/letterDesc/sort[@value='1755-01-19'] -opus/data/descriptions/letterDesc/sort[@value='1755-03-17'] -opus/data/descriptions/letterDesc/sort[@value='1755-04-05'] -opus/data/descriptions/letterDesc/sort[@value='1755-04-28'] -opus/data/descriptions/letterDesc/sort[@value='1755-05-04'] -opus/data/descriptions/letterDesc/sort[@value='1755-05-28'] -opus/data/descriptions/letterDesc/sort[@value='1755-06-10'] -opus/data/descriptions/letterDesc/sort[@value='1755-06-15'] -opus/data/descriptions/letterDesc/sort[@value='1755-07-01'] -opus/data/descriptions/letterDesc/sort[@value='1755-08-01'] -opus/data/descriptions/letterDesc/sort[@value='1755-11-05'] -opus/data/descriptions/letterDesc/sort[@value='1755-11-19'] -opus/data/descriptions/letterDesc/sort[@value='1755-12-18'] -opus/data/descriptions/letterDesc/sort[@value='1755-12-19'] -opus/data/descriptions/letterDesc/sort[@value='1755-12-28'] -opus/data/descriptions/letterDesc/sort[@value='1755-12-29'] -opus/data/descriptions/letterDesc/sort[@value='1756-01-21' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1756-01-21' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1756-02-03'] -opus/data/descriptions/letterDesc/sort[@value='1756-02-11'] -opus/data/descriptions/letterDesc/sort[@value='1756-02-15'] -opus/data/descriptions/letterDesc/sort[@value='1756-02-21'] -opus/data/descriptions/letterDesc/sort[@value='1756-02-28'] -opus/data/descriptions/letterDesc/sort[@value='1756-02-29'] -opus/data/descriptions/letterDesc/sort[@value='1756-03-03'] -opus/data/descriptions/letterDesc/sort[@value='1756-03-13'] -opus/data/descriptions/letterDesc/sort[@value='1756-03-14'] -opus/data/descriptions/letterDesc/sort[@value='1756-03-15'] -opus/data/descriptions/letterDesc/sort[@value='1756-03-16'] -opus/data/descriptions/letterDesc/sort[@value='1756-03-17'] -opus/data/descriptions/letterDesc/sort[@value='1756-03-27'] -opus/data/descriptions/letterDesc/sort[@value='1756-04-01'] -opus/data/descriptions/letterDesc/sort[@value='1756-04-10' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1756-04-10' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1756-04-12'] -opus/data/descriptions/letterDesc/sort[@value='1756-04-19'] -opus/data/descriptions/letterDesc/sort[@value='1756-04-20'] -opus/data/descriptions/letterDesc/sort[@value='1756-04-28'] -opus/data/descriptions/letterDesc/sort[@value='1756-05-01'] -opus/data/descriptions/letterDesc/sort[@value='1756-05-20'] -opus/data/descriptions/letterDesc/sort[@value='1756-05-21'] -opus/data/descriptions/letterDesc/sort[@value='1756-05-22'] -opus/data/descriptions/letterDesc/sort[@value='1756-06-01'] -opus/data/descriptions/letterDesc/sort[@value='1756-06-15'] -opus/data/descriptions/letterDesc/sort[@value='1756-06-17'] -opus/data/descriptions/letterDesc/sort[@value='1756-06-29'] -opus/data/descriptions/letterDesc/sort[@value='1756-07-01'] -opus/data/descriptions/letterDesc/sort[@value='1756-07-02'] -opus/data/descriptions/letterDesc/sort[@value='1756-07-03'] -opus/data/descriptions/letterDesc/sort[@value='1756-07-04'] -opus/data/descriptions/letterDesc/sort[@value='1756-07-05'] -opus/data/descriptions/letterDesc/sort[@value='1756-07-06'] -opus/data/descriptions/letterDesc/sort[@value='1756-07-07'] -opus/data/descriptions/letterDesc/sort[@value='1756-07-08'] -opus/data/descriptions/letterDesc/sort[@value='1756-07-09'] -opus/data/descriptions/letterDesc/sort[@value='1756-07-10'] -opus/data/descriptions/letterDesc/sort[@value='1756-07-11'] -opus/data/descriptions/letterDesc/sort[@value='1756-07-12'] -opus/data/descriptions/letterDesc/sort[@value='1756-07-13'] -opus/data/descriptions/letterDesc/sort[@value='1756-07-14'] -opus/data/descriptions/letterDesc/sort[@value='1756-07-15'] -opus/data/descriptions/letterDesc/sort[@value='1756-07-16'] -opus/data/descriptions/letterDesc/sort[@value='1756-07-17'] -opus/data/descriptions/letterDesc/sort[@value='1756-07-18'] -opus/data/descriptions/letterDesc/sort[@value='1756-07-28'] -opus/data/descriptions/letterDesc/sort[@value='1756-08-04'] -opus/data/descriptions/letterDesc/sort[@value='1756-08-18'] -opus/data/descriptions/letterDesc/sort[@value='1756-10-30'] -opus/data/descriptions/letterDesc/sort[@value='1758-01-14'] -opus/data/descriptions/letterDesc/sort[@value='1758-01-24' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1758-01-24' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1758-08-01'] -opus/data/descriptions/letterDesc/sort[@value='1758-08-25'] -opus/data/descriptions/letterDesc/sort[@value='1758-09-01'] -opus/data/descriptions/letterDesc/sort[@value='1758-09-15' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1758-09-15' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1758-09-16'] -opus/data/descriptions/letterDesc/sort[@value='1758-09-28'] -opus/data/descriptions/letterDesc/sort[@value='1758-09-29'] -opus/data/descriptions/letterDesc/sort[@value='1758-10-04' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1758-10-04' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1758-10-05'] -opus/data/descriptions/letterDesc/sort[@value='1758-10-08'] -opus/data/descriptions/letterDesc/sort[@value='1758-10-17'] -opus/data/descriptions/letterDesc/sort[@value='1758-10-18'] -opus/data/descriptions/letterDesc/sort[@value='1758-10-19'] -opus/data/descriptions/letterDesc/sort[@value='1758-10-28'] -opus/data/descriptions/letterDesc/sort[@value='1758-10-29'] -opus/data/descriptions/letterDesc/sort[@value='1758-11-01'] -opus/data/descriptions/letterDesc/sort[@value='1758-11-02'] -opus/data/descriptions/letterDesc/sort[@value='1758-12-01'] -opus/data/descriptions/letterDesc/sort[@value='1758-12-12'] -opus/data/descriptions/letterDesc/sort[@value='1758-12-19'] -opus/data/descriptions/letterDesc/sort[@value='1759-01-20'] -opus/data/descriptions/letterDesc/sort[@value='1759-01-24'] -opus/data/descriptions/letterDesc/sort[@value='1759-03-09'] -opus/data/descriptions/letterDesc/sort[@value='1759-03-10'] -opus/data/descriptions/letterDesc/sort[@value='1759-03-14'] -opus/data/descriptions/letterDesc/sort[@value='1759-03-21'] -opus/data/descriptions/letterDesc/sort[@value='1759-04-01'] -opus/data/descriptions/letterDesc/sort[@value='1759-04-27'] -opus/data/descriptions/letterDesc/sort[@value='1759-05-05'] -opus/data/descriptions/letterDesc/sort[@value='1759-06-01'] -opus/data/descriptions/letterDesc/sort[@value='1759-06-05'] -opus/data/descriptions/letterDesc/sort[@value='1759-06-06'] -opus/data/descriptions/letterDesc/sort[@value='1759-06-22'] -opus/data/descriptions/letterDesc/sort[@value='1759-07-03'] -opus/data/descriptions/letterDesc/sort[@value='1759-07-12'] -opus/data/descriptions/letterDesc/sort[@value='1759-07-27'] -opus/data/descriptions/letterDesc/sort[@value='1759-08-07'] -opus/data/descriptions/letterDesc/sort[@value='1759-08-08'] -opus/data/descriptions/letterDesc/sort[@value='1759-08-09'] -opus/data/descriptions/letterDesc/sort[@value='1759-08-18'] -opus/data/descriptions/letterDesc/sort[@value='1759-08-19'] -opus/data/descriptions/letterDesc/sort[@value='1759-08-31'] -opus/data/descriptions/letterDesc/sort[@value='1759-09-11'] -opus/data/descriptions/letterDesc/sort[@value='1759-09-28'] -opus/data/descriptions/letterDesc/sort[@value='1759-09-29'] -opus/data/descriptions/letterDesc/sort[@value='1759-10-12'] -opus/data/descriptions/letterDesc/sort[@value='1759-10-24'] -opus/data/descriptions/letterDesc/sort[@value='1759-10-30'] -opus/data/descriptions/letterDesc/sort[@value='1759-11-07'] -opus/data/descriptions/letterDesc/sort[@value='1759-11-20'] -opus/data/descriptions/letterDesc/sort[@value='1759-11-21'] -opus/data/descriptions/letterDesc/sort[@value='1759-11-22'] -opus/data/descriptions/letterDesc/sort[@value='1759-12-15'] -opus/data/descriptions/letterDesc/sort[@value='1759-12-16'] -opus/data/descriptions/letterDesc/sort[@value='1759-12-17'] -opus/data/descriptions/letterDesc/sort[@value='1759-12-22'] -opus/data/descriptions/letterDesc/sort[@value='1760-01-02'] -opus/data/descriptions/letterDesc/sort[@value='1760-01-05'] -opus/data/descriptions/letterDesc/sort[@value='1760-01-09'] -opus/data/descriptions/letterDesc/sort[@value='1760-01-19'] -opus/data/descriptions/letterDesc/sort[@value='1760-02-19'] -opus/data/descriptions/letterDesc/sort[@value='1760-03-21'] -opus/data/descriptions/letterDesc/sort[@value='1760-04-02'] -opus/data/descriptions/letterDesc/sort[@value='1760-04-12'] -opus/data/descriptions/letterDesc/sort[@value='1760-05-21' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1760-05-21' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1760-06-13'] -opus/data/descriptions/letterDesc/sort[@value='1760-06-14'] -opus/data/descriptions/letterDesc/sort[@value='1760-07-02'] -opus/data/descriptions/letterDesc/sort[@value='1760-07-20'] -opus/data/descriptions/letterDesc/sort[@value='1760-08-08'] -opus/data/descriptions/letterDesc/sort[@value='1760-08-23'] -opus/data/descriptions/letterDesc/sort[@value='1760-08-28'] -opus/data/descriptions/letterDesc/sort[@value='1760-09-04'] -opus/data/descriptions/letterDesc/sort[@value='1760-09-12'] -opus/data/descriptions/letterDesc/sort[@value='1760-09-13'] -opus/data/descriptions/letterDesc/sort[@value='1760-09-22'] -opus/data/descriptions/letterDesc/sort[@value='1760-10-22'] -opus/data/descriptions/letterDesc/sort[@value='1760-11-01'] -opus/data/descriptions/letterDesc/sort[@value='1760-11-05'] -opus/data/descriptions/letterDesc/sort[@value='1760-11-21'] -opus/data/descriptions/letterDesc/sort[@value='1760-12-30'] -opus/data/descriptions/letterDesc/sort[@value='1761-01-15'] -opus/data/descriptions/letterDesc/sort[@value='1761-01-17'] -opus/data/descriptions/letterDesc/sort[@value='1761-02-07'] -opus/data/descriptions/letterDesc/sort[@value='1761-03-07'] -opus/data/descriptions/letterDesc/sort[@value='1761-03-21'] -opus/data/descriptions/letterDesc/sort[@value='1761-04-11'] -opus/data/descriptions/letterDesc/sort[@value='1761-04-29'] -opus/data/descriptions/letterDesc/sort[@value='1761-05-05'] -opus/data/descriptions/letterDesc/sort[@value='1761-05-30'] -opus/data/descriptions/letterDesc/sort[@value='1761-06-20'] -opus/data/descriptions/letterDesc/sort[@value='1761-07-25'] -opus/data/descriptions/letterDesc/sort[@value='1761-08-07'] -opus/data/descriptions/letterDesc/sort[@value='1761-08-08'] -opus/data/descriptions/letterDesc/sort[@value='1761-08-25'] -opus/data/descriptions/letterDesc/sort[@value='1761-08-26'] -opus/data/descriptions/letterDesc/sort[@value='1761-08-28'] -opus/data/descriptions/letterDesc/sort[@value='1761-10-10'] -opus/data/descriptions/letterDesc/sort[@value='1761-11-07'] -opus/data/descriptions/letterDesc/sort[@value='1761-12-19'] -opus/data/descriptions/letterDesc/sort[@value='1762-01-01'] -opus/data/descriptions/letterDesc/sort[@value='1762-02-11'] -opus/data/descriptions/letterDesc/sort[@value='1762-02-12'] -opus/data/descriptions/letterDesc/sort[@value='1762-03-02'] -opus/data/descriptions/letterDesc/sort[@value='1762-03-04'] -opus/data/descriptions/letterDesc/sort[@value='1762-03-20'] -opus/data/descriptions/letterDesc/sort[@value='1762-03-21'] -opus/data/descriptions/letterDesc/sort[@value='1762-03-26'] -opus/data/descriptions/letterDesc/sort[@value='1762-04-16'] -opus/data/descriptions/letterDesc/sort[@value='1762-05-07'] -opus/data/descriptions/letterDesc/sort[@value='1762-05-29'] -opus/data/descriptions/letterDesc/sort[@value='1762-06-16'] -opus/data/descriptions/letterDesc/sort[@value='1762-06-23'] -opus/data/descriptions/letterDesc/sort[@value='1762-07-10'] -opus/data/descriptions/letterDesc/sort[@value='1762-07-24'] -opus/data/descriptions/letterDesc/sort[@value='1762-08-03'] -opus/data/descriptions/letterDesc/sort[@value='1762-09-11'] -opus/data/descriptions/letterDesc/sort[@value='1762-10-06'] -opus/data/descriptions/letterDesc/sort[@value='1762-10-20'] -opus/data/descriptions/letterDesc/sort[@value='1762-10-27'] -opus/data/descriptions/letterDesc/sort[@value='1762-12-18'] -opus/data/descriptions/letterDesc/sort[@value='1762-12-21'] -opus/data/descriptions/letterDesc/sort[@value='1763-01-05'] -opus/data/descriptions/letterDesc/sort[@value='1763-01-26'] -opus/data/descriptions/letterDesc/sort[@value='1763-02-11'] -opus/data/descriptions/letterDesc/sort[@value='1763-03-04'] -opus/data/descriptions/letterDesc/sort[@value='1763-03-05'] -opus/data/descriptions/letterDesc/sort[@value='1763-03-17'] -opus/data/descriptions/letterDesc/sort[@value='1763-03-29'] -opus/data/descriptions/letterDesc/sort[@value='1763-05-14'] -opus/data/descriptions/letterDesc/sort[@value='1763-06-17'] -opus/data/descriptions/letterDesc/sort[@value='1763-06-29'] -opus/data/descriptions/letterDesc/sort[@value='1763-07-09'] -opus/data/descriptions/letterDesc/sort[@value='1763-07-25'] -opus/data/descriptions/letterDesc/sort[@value='1763-07-26'] -opus/data/descriptions/letterDesc/sort[@value='1763-07-29'] -opus/data/descriptions/letterDesc/sort[@value='1763-08-26'] -opus/data/descriptions/letterDesc/sort[@value='1763-09-11'] -opus/data/descriptions/letterDesc/sort[@value='1763-10-04'] -opus/data/descriptions/letterDesc/sort[@value='1763-11-10'] -opus/data/descriptions/letterDesc/sort[@value='1764-01-30'] -opus/data/descriptions/letterDesc/sort[@value='1764-02-01'] -opus/data/descriptions/letterDesc/sort[@value='1764-02-22'] -opus/data/descriptions/letterDesc/sort[@value='1764-03-14'] -opus/data/descriptions/letterDesc/sort[@value='1764-03-16'] -opus/data/descriptions/letterDesc/sort[@value='1764-03-21'] -opus/data/descriptions/letterDesc/sort[@value='1764-03-31'] -opus/data/descriptions/letterDesc/sort[@value='1764-04-21'] -opus/data/descriptions/letterDesc/sort[@value='1764-05-02'] -opus/data/descriptions/letterDesc/sort[@value='1764-05-09'] -opus/data/descriptions/letterDesc/sort[@value='1764-05-16'] -opus/data/descriptions/letterDesc/sort[@value='1764-05-30'] -opus/data/descriptions/letterDesc/sort[@value='1764-06-08'] -opus/data/descriptions/letterDesc/sort[@value='1764-06-26'] -opus/data/descriptions/letterDesc/sort[@value='1764-06-27'] -opus/data/descriptions/letterDesc/sort[@value='1764-08-10'] -opus/data/descriptions/letterDesc/sort[@value='1764-08-27'] -opus/data/descriptions/letterDesc/sort[@value='1764-08-30'] -opus/data/descriptions/letterDesc/sort[@value='1764-10-03'] -opus/data/descriptions/letterDesc/sort[@value='1764-10-17'] -opus/data/descriptions/letterDesc/sort[@value='1764-11-06'] -opus/data/descriptions/letterDesc/sort[@value='1764-11-23'] -opus/data/descriptions/letterDesc/sort[@value='1764-11-28'] -opus/data/descriptions/letterDesc/sort[@value='1764-12-08'] -opus/data/descriptions/letterDesc/sort[@value='1764-12-12'] -opus/data/descriptions/letterDesc/sort[@value='1764-12-19'] -opus/data/descriptions/letterDesc/sort[@value='1764-12-22'] -opus/data/descriptions/letterDesc/sort[@value='1765-01-02'] -opus/data/descriptions/letterDesc/sort[@value='1765-01-16' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1765-01-16' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1765-01-19'] -opus/data/descriptions/letterDesc/sort[@value='1765-01-21'] -opus/data/descriptions/letterDesc/sort[@value='1765-01-23'] -opus/data/descriptions/letterDesc/sort[@value='1765-01-26'] -opus/data/descriptions/letterDesc/sort[@value='1765-01-30'] -opus/data/descriptions/letterDesc/sort[@value='1765-02-06'] -opus/data/descriptions/letterDesc/sort[@value='1765-02-13'] -opus/data/descriptions/letterDesc/sort[@value='1765-02-16'] -opus/data/descriptions/letterDesc/sort[@value='1765-02-20'] -opus/data/descriptions/letterDesc/sort[@value='1765-02-21'] -opus/data/descriptions/letterDesc/sort[@value='1765-03-02'] -opus/data/descriptions/letterDesc/sort[@value='1765-03-16'] -opus/data/descriptions/letterDesc/sort[@value='1765-04-01'] -opus/data/descriptions/letterDesc/sort[@value='1765-04-02'] -opus/data/descriptions/letterDesc/sort[@value='1765-05-01'] -opus/data/descriptions/letterDesc/sort[@value='1765-05-04'] -opus/data/descriptions/letterDesc/sort[@value='1765-05-18'] -opus/data/descriptions/letterDesc/sort[@value='1765-05-21'] -opus/data/descriptions/letterDesc/sort[@value='1765-06-20'] -opus/data/descriptions/letterDesc/sort[@value='1765-06-30'] -opus/data/descriptions/letterDesc/sort[@value='1765-07-18'] -opus/data/descriptions/letterDesc/sort[@value='1765-08-05'] -opus/data/descriptions/letterDesc/sort[@value='1765-08-15'] -opus/data/descriptions/letterDesc/sort[@value='1765-08-16'] -opus/data/descriptions/letterDesc/sort[@value='1765-08-29'] -opus/data/descriptions/letterDesc/sort[@value='1765-10-14'] -opus/data/descriptions/letterDesc/sort[@value='1765-11-10'] -opus/data/descriptions/letterDesc/sort[@value='1765-11-18'] -opus/data/descriptions/letterDesc/sort[@value='1765-12-01'] -opus/data/descriptions/letterDesc/sort[@value='1766-02-11'] -opus/data/descriptions/letterDesc/sort[@value='1766-02-20'] -opus/data/descriptions/letterDesc/sort[@value='1766-02-22'] -opus/data/descriptions/letterDesc/sort[@value='1766-03-04'] -opus/data/descriptions/letterDesc/sort[@value='1766-03-05'] -opus/data/descriptions/letterDesc/sort[@value='1766-03-06'] -opus/data/descriptions/letterDesc/sort[@value='1766-03-07'] -opus/data/descriptions/letterDesc/sort[@value='1766-03-24'] -opus/data/descriptions/letterDesc/sort[@value='1766-03-26'] -opus/data/descriptions/letterDesc/sort[@value='1766-04-19'] -opus/data/descriptions/letterDesc/sort[@value='1766-05-08'] -opus/data/descriptions/letterDesc/sort[@value='1766-05-15'] -opus/data/descriptions/letterDesc/sort[@value='1766-05-16'] -opus/data/descriptions/letterDesc/sort[@value='1766-05-22'] -opus/data/descriptions/letterDesc/sort[@value='1766-07-01'] -opus/data/descriptions/letterDesc/sort[@value='1766-07-20'] -opus/data/descriptions/letterDesc/sort[@value='1766-08-10'] -opus/data/descriptions/letterDesc/sort[@value='1766-08-12'] -opus/data/descriptions/letterDesc/sort[@value='1766-08-27'] -opus/data/descriptions/letterDesc/sort[@value='1766-08-30'] -opus/data/descriptions/letterDesc/sort[@value='1766-11-21'] -opus/data/descriptions/letterDesc/sort[@value='1766-12-01'] -opus/data/descriptions/letterDesc/sort[@value='1766-12-22'] -opus/data/descriptions/letterDesc/sort[@value='1767-01-02'] -opus/data/descriptions/letterDesc/sort[@value='1767-01-09'] -opus/data/descriptions/letterDesc/sort[@value='1767-02-16'] -opus/data/descriptions/letterDesc/sort[@value='1767-03-01'] -opus/data/descriptions/letterDesc/sort[@value='1767-03-02'] -opus/data/descriptions/letterDesc/sort[@value='1767-03-28'] -opus/data/descriptions/letterDesc/sort[@value='1767-06-10'] -opus/data/descriptions/letterDesc/sort[@value='1767-07-29'] -opus/data/descriptions/letterDesc/sort[@value='1767-08-10'] -opus/data/descriptions/letterDesc/sort[@value='1767-09-05'] -opus/data/descriptions/letterDesc/sort[@value='1767-11-29'] -opus/data/descriptions/letterDesc/sort[@value='1768-04-07'] -opus/data/descriptions/letterDesc/sort[@value='1768-04-08'] -opus/data/descriptions/letterDesc/sort[@value='1768-05-23'] -opus/data/descriptions/letterDesc/sort[@value='1768-08-28'] -opus/data/descriptions/letterDesc/sort[@value='1768-09-23'] -opus/data/descriptions/letterDesc/sort[@value='1768-11-01'] -opus/data/descriptions/letterDesc/sort[@value='1768-12-25'] -opus/data/descriptions/letterDesc/sort[@value='1769-01-17'] -opus/data/descriptions/letterDesc/sort[@value='1769-01-24'] -opus/data/descriptions/letterDesc/sort[@value='1769-03-13'] -opus/data/descriptions/letterDesc/sort[@value='1769-03-16'] -opus/data/descriptions/letterDesc/sort[@value='1769-04-09'] -opus/data/descriptions/letterDesc/sort[@value='1769-05-22'] -opus/data/descriptions/letterDesc/sort[@value='1769-06-16'] -opus/data/descriptions/letterDesc/sort[@value='1769-06-30'] -opus/data/descriptions/letterDesc/sort[@value='1769-07-01'] -opus/data/descriptions/letterDesc/sort[@value='1769-08-03'] -opus/data/descriptions/letterDesc/sort[@value='1769-08-15'] -opus/data/descriptions/letterDesc/sort[@value='1769-08-27'] -opus/data/descriptions/letterDesc/sort[@value='1769-09-10'] -opus/data/descriptions/letterDesc/sort[@value='1769-09-20'] -opus/data/descriptions/letterDesc/sort[@value='1769-09-21'] -opus/data/descriptions/letterDesc/sort[@value='1769-09-27'] -opus/data/descriptions/letterDesc/sort[@value='1770-01-27'] -opus/data/descriptions/letterDesc/sort[@value='1770-09-12'] -opus/data/descriptions/letterDesc/sort[@value='1770-09-13'] -opus/data/descriptions/letterDesc/sort[@value='1771-09-22'] -opus/data/descriptions/letterDesc/sort[@value='1771-12-01'] -opus/data/descriptions/letterDesc/sort[@value='1772-06-14'] -opus/data/descriptions/letterDesc/sort[@value='1772-08-01'] -opus/data/descriptions/letterDesc/sort[@value='1772-08-03'] -opus/data/descriptions/letterDesc/sort[@value='1772-10-06'] -opus/data/descriptions/letterDesc/sort[@value='1772-10-07'] -opus/data/descriptions/letterDesc/sort[@value='1772-10-13'] -opus/data/descriptions/letterDesc/sort[@value='1772-12-05'] -opus/data/descriptions/letterDesc/sort[@value='1773-01-02'] -opus/data/descriptions/letterDesc/sort[@value='1773-01-13'] -opus/data/descriptions/letterDesc/sort[@value='1773-01-24'] -opus/data/descriptions/letterDesc/sort[@value='1773-03-11'] -opus/data/descriptions/letterDesc/sort[@value='1773-03-20'] -opus/data/descriptions/letterDesc/sort[@value='1773-03-25'] -opus/data/descriptions/letterDesc/sort[@value='1773-03-27'] -opus/data/descriptions/letterDesc/sort[@value='1773-06-07'] -opus/data/descriptions/letterDesc/sort[@value='1773-07-19'] -opus/data/descriptions/letterDesc/sort[@value='1773-07-21'] -opus/data/descriptions/letterDesc/sort[@value='1773-08-13'] -opus/data/descriptions/letterDesc/sort[@value='1773-08-19'] -opus/data/descriptions/letterDesc/sort[@value='1773-08-21'] -opus/data/descriptions/letterDesc/sort[@value='1773-09-01'] -opus/data/descriptions/letterDesc/sort[@value='1773-10-11'] -opus/data/descriptions/letterDesc/sort[@value='1773-11-13'] -opus/data/descriptions/letterDesc/sort[@value='1773-11-16'] -opus/data/descriptions/letterDesc/sort[@value='1773-12-01'] -opus/data/descriptions/letterDesc/sort[@value='1773-12-30'] -opus/data/descriptions/letterDesc/sort[@value='1774-02-27'] -opus/data/descriptions/letterDesc/sort[@value='1774-03-21'] -opus/data/descriptions/letterDesc/sort[@value='1774-04-02'] -opus/data/descriptions/letterDesc/sort[@value='1774-04-06'] -opus/data/descriptions/letterDesc/sort[@value='1774-04-07'] -opus/data/descriptions/letterDesc/sort[@value='1774-04-08'] -opus/data/descriptions/letterDesc/sort[@value='1774-04-09'] -opus/data/descriptions/letterDesc/sort[@value='1774-05-27'] -opus/data/descriptions/letterDesc/sort[@value='1774-05-30'] -opus/data/descriptions/letterDesc/sort[@value='1774-06-09'] -opus/data/descriptions/letterDesc/sort[@value='1774-08-21'] -opus/data/descriptions/letterDesc/sort[@value='1774-09-23'] -opus/data/descriptions/letterDesc/sort[@value='1774-10-04' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1774-10-04' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1774-10-15'] -opus/data/descriptions/letterDesc/sort[@value='1774-10-24'] -opus/data/descriptions/letterDesc/sort[@value='1774-11-09'] -opus/data/descriptions/letterDesc/sort[@value='1774-11-14'] -opus/data/descriptions/letterDesc/sort[@value='1774-11-15'] -opus/data/descriptions/letterDesc/sort[@value='1774-11-30'] -opus/data/descriptions/letterDesc/sort[@value='1774-12-04'] -opus/data/descriptions/letterDesc/sort[@value='1774-12-05'] -opus/data/descriptions/letterDesc/sort[@value='1774-12-20'] -opus/data/descriptions/letterDesc/sort[@value='1774-12-25'] -opus/data/descriptions/letterDesc/sort[@value='1775-01-03'] -opus/data/descriptions/letterDesc/sort[@value='1775-01-05'] -opus/data/descriptions/letterDesc/sort[@value='1775-01-06'] -opus/data/descriptions/letterDesc/sort[@value='1775-01-08'] -opus/data/descriptions/letterDesc/sort[@value='1775-01-13'] -opus/data/descriptions/letterDesc/sort[@value='1775-01-14'] -opus/data/descriptions/letterDesc/sort[@value='1775-01-31'] -opus/data/descriptions/letterDesc/sort[@value='1775-02-11'] -opus/data/descriptions/letterDesc/sort[@value='1775-02-13'] -opus/data/descriptions/letterDesc/sort[@value='1775-02-14'] -opus/data/descriptions/letterDesc/sort[@value='1775-02-18'] -opus/data/descriptions/letterDesc/sort[@value='1775-02-27'] -opus/data/descriptions/letterDesc/sort[@value='1775-02-28'] -opus/data/descriptions/letterDesc/sort[@value='1775-03-13'] -opus/data/descriptions/letterDesc/sort[@value='1775-03-14'] -opus/data/descriptions/letterDesc/sort[@value='1775-03-25'] -opus/data/descriptions/letterDesc/sort[@value='1775-04-18'] -opus/data/descriptions/letterDesc/sort[@value='1775-04-19'] -opus/data/descriptions/letterDesc/sort[@value='1775-04-25'] -opus/data/descriptions/letterDesc/sort[@value='1775-04-30'] -opus/data/descriptions/letterDesc/sort[@value='1775-05-11'] -opus/data/descriptions/letterDesc/sort[@value='1775-05-21'] -opus/data/descriptions/letterDesc/sort[@value='1775-06-03'] -opus/data/descriptions/letterDesc/sort[@value='1775-06-08'] -opus/data/descriptions/letterDesc/sort[@value='1775-06-20'] -opus/data/descriptions/letterDesc/sort[@value='1775-07-02'] -opus/data/descriptions/letterDesc/sort[@value='1775-07-16'] -opus/data/descriptions/letterDesc/sort[@value='1775-07-18'] -opus/data/descriptions/letterDesc/sort[@value='1775-07-29'] -opus/data/descriptions/letterDesc/sort[@value='1775-08-14'] -opus/data/descriptions/letterDesc/sort[@value='1775-08-25'] -opus/data/descriptions/letterDesc/sort[@value='1775-11-06'] -opus/data/descriptions/letterDesc/sort[@value='1776-01-09'] -opus/data/descriptions/letterDesc/sort[@value='1776-01-28'] -opus/data/descriptions/letterDesc/sort[@value='1776-02-25'] -opus/data/descriptions/letterDesc/sort[@value='1776-03-04'] -opus/data/descriptions/letterDesc/sort[@value='1776-03-13'] -opus/data/descriptions/letterDesc/sort[@value='1776-03-27'] -opus/data/descriptions/letterDesc/sort[@value='1776-03-29'] -opus/data/descriptions/letterDesc/sort[@value='1776-04-03'] -opus/data/descriptions/letterDesc/sort[@value='1776-04-18'] -opus/data/descriptions/letterDesc/sort[@value='1776-07-20'] -opus/data/descriptions/letterDesc/sort[@value='1776-08-09'] -opus/data/descriptions/letterDesc/sort[@value='1776-08-18'] -opus/data/descriptions/letterDesc/sort[@value='1776-08-24'] -opus/data/descriptions/letterDesc/sort[@value='1776-10-14'] -opus/data/descriptions/letterDesc/sort[@value='1776-10-24'] -opus/data/descriptions/letterDesc/sort[@value='1776-11-25'] -opus/data/descriptions/letterDesc/sort[@value='1776-11-29'] -opus/data/descriptions/letterDesc/sort[@value='1776-12-10'] -opus/data/descriptions/letterDesc/sort[@value='1776-12-16'] -opus/data/descriptions/letterDesc/sort[@value='1776-12-22'] -opus/data/descriptions/letterDesc/sort[@value='1777-01-02' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1777-01-02' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1777-01-03'] -opus/data/descriptions/letterDesc/sort[@value='1777-01-13'] -opus/data/descriptions/letterDesc/sort[@value='1777-01-18'] -opus/data/descriptions/letterDesc/sort[@value='1777-01-24'] -opus/data/descriptions/letterDesc/sort[@value='1777-02-19'] -opus/data/descriptions/letterDesc/sort[@value='1777-03-07'] -opus/data/descriptions/letterDesc/sort[@value='1777-03-10'] -opus/data/descriptions/letterDesc/sort[@value='1777-04-02'] -opus/data/descriptions/letterDesc/sort[@value='1777-04-06'] -opus/data/descriptions/letterDesc/sort[@value='1777-04-14'] -opus/data/descriptions/letterDesc/sort[@value='1777-04-15' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1777-04-15' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1777-04-16'] -opus/data/descriptions/letterDesc/sort[@value='1777-04-17'] -opus/data/descriptions/letterDesc/sort[@value='1777-04-28'] -opus/data/descriptions/letterDesc/sort[@value='1777-04-29'] -opus/data/descriptions/letterDesc/sort[@value='1777-05-01'] -opus/data/descriptions/letterDesc/sort[@value='1777-05-06' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1777-05-06' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1777-05-06' and @order='300'] -opus/data/descriptions/letterDesc/sort[@value='1777-05-15'] -opus/data/descriptions/letterDesc/sort[@value='1777-05-18'] -opus/data/descriptions/letterDesc/sort[@value='1777-06-01'] -opus/data/descriptions/letterDesc/sort[@value='1777-06-15' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1777-06-15' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1777-06-18'] -opus/data/descriptions/letterDesc/sort[@value='1777-06-23'] -opus/data/descriptions/letterDesc/sort[@value='1777-07-13'] -opus/data/descriptions/letterDesc/sort[@value='1777-08-04' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1777-08-04' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1777-08-08'] -opus/data/descriptions/letterDesc/sort[@value='1777-08-20'] -opus/data/descriptions/letterDesc/sort[@value='1777-09-15'] -opus/data/descriptions/letterDesc/sort[@value='1777-09-18'] -opus/data/descriptions/letterDesc/sort[@value='1777-10-05'] -opus/data/descriptions/letterDesc/sort[@value='1777-10-08'] -opus/data/descriptions/letterDesc/sort[@value='1777-10-11'] -opus/data/descriptions/letterDesc/sort[@value='1777-11-21'] -opus/data/descriptions/letterDesc/sort[@value='1777-11-23'] -opus/data/descriptions/letterDesc/sort[@value='1777-11-24'] -opus/data/descriptions/letterDesc/sort[@value='1777-11-30'] -opus/data/descriptions/letterDesc/sort[@value='1777-12-04'] -opus/data/descriptions/letterDesc/sort[@value='1777-12-06'] -opus/data/descriptions/letterDesc/sort[@value='1777-12-21'] -opus/data/descriptions/letterDesc/sort[@value='1777-12-26'] -opus/data/descriptions/letterDesc/sort[@value='1777-12-31'] -opus/data/descriptions/letterDesc/sort[@value='1778-01-02'] -opus/data/descriptions/letterDesc/sort[@value='1778-01-18'] -opus/data/descriptions/letterDesc/sort[@value='1778-02-22'] -opus/data/descriptions/letterDesc/sort[@value='1778-02-23'] -opus/data/descriptions/letterDesc/sort[@value='1778-02-24'] -opus/data/descriptions/letterDesc/sort[@value='1778-03-16'] -opus/data/descriptions/letterDesc/sort[@value='1778-03-20'] -opus/data/descriptions/letterDesc/sort[@value='1778-04-14'] -opus/data/descriptions/letterDesc/sort[@value='1778-05-14'] -opus/data/descriptions/letterDesc/sort[@value='1778-05-15'] -opus/data/descriptions/letterDesc/sort[@value='1778-07-13'] -opus/data/descriptions/letterDesc/sort[@value='1778-09-19'] -opus/data/descriptions/letterDesc/sort[@value='1778-10-26' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1778-10-26' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1778-11-20'] -opus/data/descriptions/letterDesc/sort[@value='1778-11-25'] -opus/data/descriptions/letterDesc/sort[@value='1778-11-29'] -opus/data/descriptions/letterDesc/sort[@value='1778-12-27'] -opus/data/descriptions/letterDesc/sort[@value='1778-12-29'] -opus/data/descriptions/letterDesc/sort[@value='1779-01-06'] -opus/data/descriptions/letterDesc/sort[@value='1779-01-09'] -opus/data/descriptions/letterDesc/sort[@value='1779-01-23'] -opus/data/descriptions/letterDesc/sort[@value='1779-02-15'] -opus/data/descriptions/letterDesc/sort[@value='1779-02-19'] -opus/data/descriptions/letterDesc/sort[@value='1779-02-21'] -opus/data/descriptions/letterDesc/sort[@value='1779-03-01'] -opus/data/descriptions/letterDesc/sort[@value='1779-03-24'] -opus/data/descriptions/letterDesc/sort[@value='1779-03-25'] -opus/data/descriptions/letterDesc/sort[@value='1779-04-09'] -opus/data/descriptions/letterDesc/sort[@value='1779-04-17' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1779-04-17' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1779-04-19'] -opus/data/descriptions/letterDesc/sort[@value='1779-05-01'] -opus/data/descriptions/letterDesc/sort[@value='1779-05-17' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1779-05-17' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1779-05-18'] -opus/data/descriptions/letterDesc/sort[@value='1779-06-08'] -opus/data/descriptions/letterDesc/sort[@value='1779-06-09'] -opus/data/descriptions/letterDesc/sort[@value='1779-08-07'] -opus/data/descriptions/letterDesc/sort[@value='1779-08-08'] -opus/data/descriptions/letterDesc/sort[@value='1779-08-29'] -opus/data/descriptions/letterDesc/sort[@value='1779-09-08'] -opus/data/descriptions/letterDesc/sort[@value='1779-09-17' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1779-09-17' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1779-09-29'] -opus/data/descriptions/letterDesc/sort[@value='1779-10-19'] -opus/data/descriptions/letterDesc/sort[@value='1779-10-28'] -opus/data/descriptions/letterDesc/sort[@value='1779-10-29'] -opus/data/descriptions/letterDesc/sort[@value='1779-11-08'] -opus/data/descriptions/letterDesc/sort[@value='1779-11-29'] -opus/data/descriptions/letterDesc/sort[@value='1779-12-01'] -opus/data/descriptions/letterDesc/sort[@value='1779-12-12'] -opus/data/descriptions/letterDesc/sort[@value='1780-01-01'] -opus/data/descriptions/letterDesc/sort[@value='1780-01-02'] -opus/data/descriptions/letterDesc/sort[@value='1780-01-23'] -opus/data/descriptions/letterDesc/sort[@value='1780-01-29'] -opus/data/descriptions/letterDesc/sort[@value='1780-02-02'] -opus/data/descriptions/letterDesc/sort[@value='1780-02-05'] -opus/data/descriptions/letterDesc/sort[@value='1780-02-14'] -opus/data/descriptions/letterDesc/sort[@value='1780-02-15'] -opus/data/descriptions/letterDesc/sort[@value='1780-02-16'] -opus/data/descriptions/letterDesc/sort[@value='1780-03-20'] -opus/data/descriptions/letterDesc/sort[@value='1780-03-25'] -opus/data/descriptions/letterDesc/sort[@value='1780-03-26'] -opus/data/descriptions/letterDesc/sort[@value='1780-04-04'] -opus/data/descriptions/letterDesc/sort[@value='1780-04-12'] -opus/data/descriptions/letterDesc/sort[@value='1780-05-15'] -opus/data/descriptions/letterDesc/sort[@value='1780-06-01'] -opus/data/descriptions/letterDesc/sort[@value='1780-06-11'] -opus/data/descriptions/letterDesc/sort[@value='1780-06-22'] -opus/data/descriptions/letterDesc/sort[@value='1780-06-30'] -opus/data/descriptions/letterDesc/sort[@value='1780-07-03'] -opus/data/descriptions/letterDesc/sort[@value='1780-07-29'] -opus/data/descriptions/letterDesc/sort[@value='1780-08-03'] -opus/data/descriptions/letterDesc/sort[@value='1780-08-13'] -opus/data/descriptions/letterDesc/sort[@value='1780-08-18'] -opus/data/descriptions/letterDesc/sort[@value='1780-09-09'] -opus/data/descriptions/letterDesc/sort[@value='1780-09-13'] -opus/data/descriptions/letterDesc/sort[@value='1780-10-06'] -opus/data/descriptions/letterDesc/sort[@value='1780-10-15'] -opus/data/descriptions/letterDesc/sort[@value='1780-10-25'] -opus/data/descriptions/letterDesc/sort[@value='1780-11-02'] -opus/data/descriptions/letterDesc/sort[@value='1780-11-20'] -opus/data/descriptions/letterDesc/sort[@value='1780-12-10'] -opus/data/descriptions/letterDesc/sort[@value='1780-12-11'] -opus/data/descriptions/letterDesc/sort[@value='1780-12-16'] -opus/data/descriptions/letterDesc/sort[@value='1780-12-18' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1780-12-18' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1781-01-01'] -opus/data/descriptions/letterDesc/sort[@value='1781-01-15'] -opus/data/descriptions/letterDesc/sort[@value='1781-02-25'] -opus/data/descriptions/letterDesc/sort[@value='1781-03-15'] -opus/data/descriptions/letterDesc/sort[@value='1781-04-08'] -opus/data/descriptions/letterDesc/sort[@value='1781-04-27'] -opus/data/descriptions/letterDesc/sort[@value='1781-05-07'] -opus/data/descriptions/letterDesc/sort[@value='1781-05-10'] -opus/data/descriptions/letterDesc/sort[@value='1781-05-11'] -opus/data/descriptions/letterDesc/sort[@value='1781-05-31'] -opus/data/descriptions/letterDesc/sort[@value='1781-06-03'] -opus/data/descriptions/letterDesc/sort[@value='1781-06-07'] -opus/data/descriptions/letterDesc/sort[@value='1781-06-19'] -opus/data/descriptions/letterDesc/sort[@value='1781-07-22' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1781-07-22' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1781-08-05'] -opus/data/descriptions/letterDesc/sort[@value='1781-08-11' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1781-08-11' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1781-08-23'] -opus/data/descriptions/letterDesc/sort[@value='1781-08-25'] -opus/data/descriptions/letterDesc/sort[@value='1781-09-14'] -opus/data/descriptions/letterDesc/sort[@value='1781-09-15'] -opus/data/descriptions/letterDesc/sort[@value='1781-10-23'] -opus/data/descriptions/letterDesc/sort[@value='1781-11-23'] -opus/data/descriptions/letterDesc/sort[@value='1781-12-08'] -opus/data/descriptions/letterDesc/sort[@value='1781-12-09'] -opus/data/descriptions/letterDesc/sort[@value='1781-12-17'] -opus/data/descriptions/letterDesc/sort[@value='1781-12-31'] -opus/data/descriptions/letterDesc/sort[@value='1782-01-05'] -opus/data/descriptions/letterDesc/sort[@value='1782-01-11'] -opus/data/descriptions/letterDesc/sort[@value='1782-02-08'] -opus/data/descriptions/letterDesc/sort[@value='1782-03-03'] -opus/data/descriptions/letterDesc/sort[@value='1782-03-14'] -opus/data/descriptions/letterDesc/sort[@value='1782-04-17'] -opus/data/descriptions/letterDesc/sort[@value='1782-04-20'] -opus/data/descriptions/letterDesc/sort[@value='1782-04-22'] -opus/data/descriptions/letterDesc/sort[@value='1782-04-24'] -opus/data/descriptions/letterDesc/sort[@value='1782-05-23'] -opus/data/descriptions/letterDesc/sort[@value='1782-06-09'] -opus/data/descriptions/letterDesc/sort[@value='1782-06-12'] -opus/data/descriptions/letterDesc/sort[@value='1782-06-17'] -opus/data/descriptions/letterDesc/sort[@value='1782-06-30'] -opus/data/descriptions/letterDesc/sort[@value='1782-07-07'] -opus/data/descriptions/letterDesc/sort[@value='1782-07-11'] -opus/data/descriptions/letterDesc/sort[@value='1782-07-17'] -opus/data/descriptions/letterDesc/sort[@value='1782-07-28'] -opus/data/descriptions/letterDesc/sort[@value='1782-07-31'] -opus/data/descriptions/letterDesc/sort[@value='1782-08-11'] -opus/data/descriptions/letterDesc/sort[@value='1782-08-12'] -opus/data/descriptions/letterDesc/sort[@value='1782-08-25'] -opus/data/descriptions/letterDesc/sort[@value='1782-08-26'] -opus/data/descriptions/letterDesc/sort[@value='1782-08-27' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1782-08-27' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1782-09-16'] -opus/data/descriptions/letterDesc/sort[@value='1782-10-08'] -opus/data/descriptions/letterDesc/sort[@value='1782-10-14'] -opus/data/descriptions/letterDesc/sort[@value='1782-10-27'] -opus/data/descriptions/letterDesc/sort[@value='1782-11-04'] -opus/data/descriptions/letterDesc/sort[@value='1782-11-05'] -opus/data/descriptions/letterDesc/sort[@value='1782-11-11' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1782-11-11' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1782-11-12'] -opus/data/descriptions/letterDesc/sort[@value='1782-11-16'] -opus/data/descriptions/letterDesc/sort[@value='1782-11-17' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1782-11-17' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1782-12-07'] -opus/data/descriptions/letterDesc/sort[@value='1782-12-08'] -opus/data/descriptions/letterDesc/sort[@value='1782-12-14'] -opus/data/descriptions/letterDesc/sort[@value='1782-12-27' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1782-12-27' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1783-01-01' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1783-01-01' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1783-01-07'] -opus/data/descriptions/letterDesc/sort[@value='1783-01-15'] -opus/data/descriptions/letterDesc/sort[@value='1783-01-31' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1783-01-31' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1783-02-01'] -opus/data/descriptions/letterDesc/sort[@value='1783-02-10'] -opus/data/descriptions/letterDesc/sort[@value='1783-02-16'] -opus/data/descriptions/letterDesc/sort[@value='1783-02-17'] -opus/data/descriptions/letterDesc/sort[@value='1783-03-03'] -opus/data/descriptions/letterDesc/sort[@value='1783-04-06'] -opus/data/descriptions/letterDesc/sort[@value='1783-04-15'] -opus/data/descriptions/letterDesc/sort[@value='1783-04-18'] -opus/data/descriptions/letterDesc/sort[@value='1783-04-20'] -opus/data/descriptions/letterDesc/sort[@value='1783-04-24' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1783-04-24' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1783-05-04'] -opus/data/descriptions/letterDesc/sort[@value='1783-05-19'] -opus/data/descriptions/letterDesc/sort[@value='1783-06-09'] -opus/data/descriptions/letterDesc/sort[@value='1783-06-14'] -opus/data/descriptions/letterDesc/sort[@value='1783-06-16'] -opus/data/descriptions/letterDesc/sort[@value='1783-07-02'] -opus/data/descriptions/letterDesc/sort[@value='1783-07-29'] -opus/data/descriptions/letterDesc/sort[@value='1783-08-01'] -opus/data/descriptions/letterDesc/sort[@value='1783-08-04'] -opus/data/descriptions/letterDesc/sort[@value='1783-08-16' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1783-08-16' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1783-08-29'] -opus/data/descriptions/letterDesc/sort[@value='1783-08-30'] -opus/data/descriptions/letterDesc/sort[@value='1783-09-08'] -opus/data/descriptions/letterDesc/sort[@value='1783-09-09'] -opus/data/descriptions/letterDesc/sort[@value='1783-09-17'] -opus/data/descriptions/letterDesc/sort[@value='1783-09-19'] -opus/data/descriptions/letterDesc/sort[@value='1783-10-12'] -opus/data/descriptions/letterDesc/sort[@value='1783-10-22'] -opus/data/descriptions/letterDesc/sort[@value='1783-10-24'] -opus/data/descriptions/letterDesc/sort[@value='1783-10-27'] -opus/data/descriptions/letterDesc/sort[@value='1783-10-28'] -opus/data/descriptions/letterDesc/sort[@value='1783-10-31'] -opus/data/descriptions/letterDesc/sort[@value='1783-11-02'] -opus/data/descriptions/letterDesc/sort[@value='1783-11-16'] -opus/data/descriptions/letterDesc/sort[@value='1783-11-26'] -opus/data/descriptions/letterDesc/sort[@value='1783-12-02'] -opus/data/descriptions/letterDesc/sort[@value='1783-12-08'] -opus/data/descriptions/letterDesc/sort[@value='1783-12-15'] -opus/data/descriptions/letterDesc/sort[@value='1784-01-12'] -opus/data/descriptions/letterDesc/sort[@value='1784-01-23'] -opus/data/descriptions/letterDesc/sort[@value='1784-01-26'] -opus/data/descriptions/letterDesc/sort[@value='1784-01-30'] -opus/data/descriptions/letterDesc/sort[@value='1784-02-18'] -opus/data/descriptions/letterDesc/sort[@value='1784-03-14'] -opus/data/descriptions/letterDesc/sort[@value='1784-03-15'] -opus/data/descriptions/letterDesc/sort[@value='1784-03-25'] -opus/data/descriptions/letterDesc/sort[@value='1784-04-30' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1784-04-30' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1784-05-02' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1784-05-02' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1784-05-03'] -opus/data/descriptions/letterDesc/sort[@value='1784-05-11'] -opus/data/descriptions/letterDesc/sort[@value='1784-05-19'] -opus/data/descriptions/letterDesc/sort[@value='1784-06-08'] -opus/data/descriptions/letterDesc/sort[@value='1784-06-14'] -opus/data/descriptions/letterDesc/sort[@value='1784-06-18'] -opus/data/descriptions/letterDesc/sort[@value='1784-06-24'] -opus/data/descriptions/letterDesc/sort[@value='1784-06-25'] -opus/data/descriptions/letterDesc/sort[@value='1784-07-18'] -opus/data/descriptions/letterDesc/sort[@value='1784-07-24'] -opus/data/descriptions/letterDesc/sort[@value='1784-08-04'] -opus/data/descriptions/letterDesc/sort[@value='1784-08-05'] -opus/data/descriptions/letterDesc/sort[@value='1784-08-06'] -opus/data/descriptions/letterDesc/sort[@value='1784-08-10'] -opus/data/descriptions/letterDesc/sort[@value='1784-08-15'] -opus/data/descriptions/letterDesc/sort[@value='1784-08-18'] -opus/data/descriptions/letterDesc/sort[@value='1784-08-19'] -opus/data/descriptions/letterDesc/sort[@value='1784-08-21'] -opus/data/descriptions/letterDesc/sort[@value='1784-08-23'] -opus/data/descriptions/letterDesc/sort[@value='1784-08-24'] -opus/data/descriptions/letterDesc/sort[@value='1784-08-25'] -opus/data/descriptions/letterDesc/sort[@value='1784-08-30'] -opus/data/descriptions/letterDesc/sort[@value='1784-09-02'] -opus/data/descriptions/letterDesc/sort[@value='1784-09-05'] -opus/data/descriptions/letterDesc/sort[@value='1784-09-07'] -opus/data/descriptions/letterDesc/sort[@value='1784-09-15'] -opus/data/descriptions/letterDesc/sort[@value='1784-09-19'] -opus/data/descriptions/letterDesc/sort[@value='1784-10-03'] -opus/data/descriptions/letterDesc/sort[@value='1784-10-07'] -opus/data/descriptions/letterDesc/sort[@value='1784-10-13'] -opus/data/descriptions/letterDesc/sort[@value='1784-10-16'] -opus/data/descriptions/letterDesc/sort[@value='1784-10-17'] -opus/data/descriptions/letterDesc/sort[@value='1784-10-18' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1784-10-18' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1784-10-20'] -opus/data/descriptions/letterDesc/sort[@value='1784-10-27' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1784-10-27' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1784-10-28'] -opus/data/descriptions/letterDesc/sort[@value='1784-10-31'] -opus/data/descriptions/letterDesc/sort[@value='1784-11-10'] -opus/data/descriptions/letterDesc/sort[@value='1784-11-13'] -opus/data/descriptions/letterDesc/sort[@value='1784-11-14'] -opus/data/descriptions/letterDesc/sort[@value='1784-11-29'] -opus/data/descriptions/letterDesc/sort[@value='1784-12-01'] -opus/data/descriptions/letterDesc/sort[@value='1784-12-09'] -opus/data/descriptions/letterDesc/sort[@value='1784-12-10'] -opus/data/descriptions/letterDesc/sort[@value='1784-12-15'] -opus/data/descriptions/letterDesc/sort[@value='1784-12-18'] -opus/data/descriptions/letterDesc/sort[@value='1784-12-20'] -opus/data/descriptions/letterDesc/sort[@value='1784-12-21'] -opus/data/descriptions/letterDesc/sort[@value='1784-12-26'] -opus/data/descriptions/letterDesc/sort[@value='1784-12-30'] -opus/data/descriptions/letterDesc/sort[@value='1785-01-02'] -opus/data/descriptions/letterDesc/sort[@value='1785-01-04'] -opus/data/descriptions/letterDesc/sort[@value='1785-01-06'] -opus/data/descriptions/letterDesc/sort[@value='1785-01-07'] -opus/data/descriptions/letterDesc/sort[@value='1785-01-11'] -opus/data/descriptions/letterDesc/sort[@value='1785-01-15' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1785-01-15' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1785-01-16'] -opus/data/descriptions/letterDesc/sort[@value='1785-01-22'] -opus/data/descriptions/letterDesc/sort[@value='1785-01-23'] -opus/data/descriptions/letterDesc/sort[@value='1785-01-24'] -opus/data/descriptions/letterDesc/sort[@value='1785-01-31'] -opus/data/descriptions/letterDesc/sort[@value='1785-02-01'] -opus/data/descriptions/letterDesc/sort[@value='1785-02-03'] -opus/data/descriptions/letterDesc/sort[@value='1785-02-07'] -opus/data/descriptions/letterDesc/sort[@value='1785-02-11'] -opus/data/descriptions/letterDesc/sort[@value='1785-02-13'] -opus/data/descriptions/letterDesc/sort[@value='1785-02-14'] -opus/data/descriptions/letterDesc/sort[@value='1785-02-16'] -opus/data/descriptions/letterDesc/sort[@value='1785-02-22' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1785-02-22' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1785-02-23'] -opus/data/descriptions/letterDesc/sort[@value='1785-02-27'] -opus/data/descriptions/letterDesc/sort[@value='1785-02-28'] -opus/data/descriptions/letterDesc/sort[@value='1785-03-09' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1785-03-09' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1785-03-19'] -opus/data/descriptions/letterDesc/sort[@value='1785-03-22'] -opus/data/descriptions/letterDesc/sort[@value='1785-03-31'] -opus/data/descriptions/letterDesc/sort[@value='1785-04-03'] -opus/data/descriptions/letterDesc/sort[@value='1785-04-04'] -opus/data/descriptions/letterDesc/sort[@value='1785-04-10'] -opus/data/descriptions/letterDesc/sort[@value='1785-04-11'] -opus/data/descriptions/letterDesc/sort[@value='1785-04-14'] -opus/data/descriptions/letterDesc/sort[@value='1785-04-22'] -opus/data/descriptions/letterDesc/sort[@value='1785-04-23'] -opus/data/descriptions/letterDesc/sort[@value='1785-04-26'] -opus/data/descriptions/letterDesc/sort[@value='1785-05-12'] -opus/data/descriptions/letterDesc/sort[@value='1785-05-16' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1785-05-16' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1785-05-17'] -opus/data/descriptions/letterDesc/sort[@value='1785-05-18'] -opus/data/descriptions/letterDesc/sort[@value='1785-06-01'] -opus/data/descriptions/letterDesc/sort[@value='1785-06-02'] -opus/data/descriptions/letterDesc/sort[@value='1785-06-06'] -opus/data/descriptions/letterDesc/sort[@value='1785-06-16'] -opus/data/descriptions/letterDesc/sort[@value='1785-06-17'] -opus/data/descriptions/letterDesc/sort[@value='1785-06-19'] -opus/data/descriptions/letterDesc/sort[@value='1785-06-22'] -opus/data/descriptions/letterDesc/sort[@value='1785-06-26'] -opus/data/descriptions/letterDesc/sort[@value='1785-06-30'] -opus/data/descriptions/letterDesc/sort[@value='1785-07-01' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1785-07-01' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1785-07-05'] -opus/data/descriptions/letterDesc/sort[@value='1785-07-08'] -opus/data/descriptions/letterDesc/sort[@value='1785-07-10'] -opus/data/descriptions/letterDesc/sort[@value='1785-07-18'] -opus/data/descriptions/letterDesc/sort[@value='1785-07-20'] -opus/data/descriptions/letterDesc/sort[@value='1785-07-21'] -opus/data/descriptions/letterDesc/sort[@value='1785-07-22'] -opus/data/descriptions/letterDesc/sort[@value='1785-07-28' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1785-07-28' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1785-07-29'] -opus/data/descriptions/letterDesc/sort[@value='1785-07-31' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1785-07-31' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1785-08-04'] -opus/data/descriptions/letterDesc/sort[@value='1785-08-05'] -opus/data/descriptions/letterDesc/sort[@value='1785-08-09'] -opus/data/descriptions/letterDesc/sort[@value='1785-08-10'] -opus/data/descriptions/letterDesc/sort[@value='1785-08-18'] -opus/data/descriptions/letterDesc/sort[@value='1785-08-25'] -opus/data/descriptions/letterDesc/sort[@value='1785-09-12'] -opus/data/descriptions/letterDesc/sort[@value='1785-09-16'] -opus/data/descriptions/letterDesc/sort[@value='1785-09-18'] -opus/data/descriptions/letterDesc/sort[@value='1785-09-22'] -opus/data/descriptions/letterDesc/sort[@value='1785-09-28'] -opus/data/descriptions/letterDesc/sort[@value='1785-10-01' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1785-10-01' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1785-10-02'] -opus/data/descriptions/letterDesc/sort[@value='1785-10-04'] -opus/data/descriptions/letterDesc/sort[@value='1785-10-07'] -opus/data/descriptions/letterDesc/sort[@value='1785-10-10'] -opus/data/descriptions/letterDesc/sort[@value='1785-10-13'] -opus/data/descriptions/letterDesc/sort[@value='1785-10-16'] -opus/data/descriptions/letterDesc/sort[@value='1785-10-20'] -opus/data/descriptions/letterDesc/sort[@value='1785-10-22'] -opus/data/descriptions/letterDesc/sort[@value='1785-10-29'] -opus/data/descriptions/letterDesc/sort[@value='1785-10-30'] -opus/data/descriptions/letterDesc/sort[@value='1785-11-01'] -opus/data/descriptions/letterDesc/sort[@value='1785-11-04'] -opus/data/descriptions/letterDesc/sort[@value='1785-11-05'] -opus/data/descriptions/letterDesc/sort[@value='1785-11-06'] -opus/data/descriptions/letterDesc/sort[@value='1785-11-09'] -opus/data/descriptions/letterDesc/sort[@value='1785-11-11'] -opus/data/descriptions/letterDesc/sort[@value='1785-11-12'] -opus/data/descriptions/letterDesc/sort[@value='1785-11-15'] -opus/data/descriptions/letterDesc/sort[@value='1785-11-18'] -opus/data/descriptions/letterDesc/sort[@value='1785-11-22'] -opus/data/descriptions/letterDesc/sort[@value='1785-11-28'] -opus/data/descriptions/letterDesc/sort[@value='1785-11-30'] -opus/data/descriptions/letterDesc/sort[@value='1785-12-05' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1785-12-05' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1785-12-06'] -opus/data/descriptions/letterDesc/sort[@value='1785-12-09'] -opus/data/descriptions/letterDesc/sort[@value='1785-12-13'] -opus/data/descriptions/letterDesc/sort[@value='1785-12-14'] -opus/data/descriptions/letterDesc/sort[@value='1785-12-16'] -opus/data/descriptions/letterDesc/sort[@value='1785-12-20'] -opus/data/descriptions/letterDesc/sort[@value='1785-12-23'] -opus/data/descriptions/letterDesc/sort[@value='1785-12-24'] -opus/data/descriptions/letterDesc/sort[@value='1785-12-28'] -opus/data/descriptions/letterDesc/sort[@value='1785-12-30'] -opus/data/descriptions/letterDesc/sort[@value='1786-01-01'] -opus/data/descriptions/letterDesc/sort[@value='1786-01-02'] -opus/data/descriptions/letterDesc/sort[@value='1786-01-04'] -opus/data/descriptions/letterDesc/sort[@value='1786-01-05'] -opus/data/descriptions/letterDesc/sort[@value='1786-01-10'] -opus/data/descriptions/letterDesc/sort[@value='1786-01-13'] -opus/data/descriptions/letterDesc/sort[@value='1786-01-15'] -opus/data/descriptions/letterDesc/sort[@value='1786-01-16'] -opus/data/descriptions/letterDesc/sort[@value='1786-01-18'] -opus/data/descriptions/letterDesc/sort[@value='1786-01-19'] -opus/data/descriptions/letterDesc/sort[@value='1786-01-23'] -opus/data/descriptions/letterDesc/sort[@value='1786-01-29'] -opus/data/descriptions/letterDesc/sort[@value='1786-02-02'] -opus/data/descriptions/letterDesc/sort[@value='1786-02-04'] -opus/data/descriptions/letterDesc/sort[@value='1786-02-05' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1786-02-05' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1786-02-06'] -opus/data/descriptions/letterDesc/sort[@value='1786-02-07'] -opus/data/descriptions/letterDesc/sort[@value='1786-02-08'] -opus/data/descriptions/letterDesc/sort[@value='1786-02-10'] -opus/data/descriptions/letterDesc/sort[@value='1786-02-15'] -opus/data/descriptions/letterDesc/sort[@value='1786-02-18'] -opus/data/descriptions/letterDesc/sort[@value='1786-02-21'] -opus/data/descriptions/letterDesc/sort[@value='1786-02-25'] -opus/data/descriptions/letterDesc/sort[@value='1786-02-28'] -opus/data/descriptions/letterDesc/sort[@value='1786-03-01'] -opus/data/descriptions/letterDesc/sort[@value='1786-03-04'] -opus/data/descriptions/letterDesc/sort[@value='1786-03-10' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1786-03-10' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1786-03-11'] -opus/data/descriptions/letterDesc/sort[@value='1786-03-14'] -opus/data/descriptions/letterDesc/sort[@value='1786-03-15'] -opus/data/descriptions/letterDesc/sort[@value='1786-03-17'] -opus/data/descriptions/letterDesc/sort[@value='1786-03-21'] -opus/data/descriptions/letterDesc/sort[@value='1786-03-24'] -opus/data/descriptions/letterDesc/sort[@value='1786-03-25'] -opus/data/descriptions/letterDesc/sort[@value='1786-03-30'] -opus/data/descriptions/letterDesc/sort[@value='1786-04-02' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1786-04-02' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1786-04-03'] -opus/data/descriptions/letterDesc/sort[@value='1786-04-07'] -opus/data/descriptions/letterDesc/sort[@value='1786-04-09'] -opus/data/descriptions/letterDesc/sort[@value='1786-04-12'] -opus/data/descriptions/letterDesc/sort[@value='1786-04-13'] -opus/data/descriptions/letterDesc/sort[@value='1786-04-18'] -opus/data/descriptions/letterDesc/sort[@value='1786-04-21'] -opus/data/descriptions/letterDesc/sort[@value='1786-04-23'] -opus/data/descriptions/letterDesc/sort[@value='1786-04-25'] -opus/data/descriptions/letterDesc/sort[@value='1786-04-26'] -opus/data/descriptions/letterDesc/sort[@value='1786-04-27'] -opus/data/descriptions/letterDesc/sort[@value='1786-04-30'] -opus/data/descriptions/letterDesc/sort[@value='1786-05-03'] -opus/data/descriptions/letterDesc/sort[@value='1786-05-05'] -opus/data/descriptions/letterDesc/sort[@value='1786-05-12'] -opus/data/descriptions/letterDesc/sort[@value='1786-05-13'] -opus/data/descriptions/letterDesc/sort[@value='1786-05-15'] -opus/data/descriptions/letterDesc/sort[@value='1786-05-22'] -opus/data/descriptions/letterDesc/sort[@value='1786-05-25'] -opus/data/descriptions/letterDesc/sort[@value='1786-05-26'] -opus/data/descriptions/letterDesc/sort[@value='1786-05-27'] -opus/data/descriptions/letterDesc/sort[@value='1786-05-28'] -opus/data/descriptions/letterDesc/sort[@value='1786-06-02'] -opus/data/descriptions/letterDesc/sort[@value='1786-06-05'] -opus/data/descriptions/letterDesc/sort[@value='1786-06-06'] -opus/data/descriptions/letterDesc/sort[@value='1786-06-07'] -opus/data/descriptions/letterDesc/sort[@value='1786-06-09'] -opus/data/descriptions/letterDesc/sort[@value='1786-06-13'] -opus/data/descriptions/letterDesc/sort[@value='1786-06-15'] -opus/data/descriptions/letterDesc/sort[@value='1786-06-16'] -opus/data/descriptions/letterDesc/sort[@value='1786-06-19' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1786-06-19' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1786-06-20'] -opus/data/descriptions/letterDesc/sort[@value='1786-06-22'] -opus/data/descriptions/letterDesc/sort[@value='1786-06-23'] -opus/data/descriptions/letterDesc/sort[@value='1786-06-28' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1786-06-28' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1786-06-29' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1786-07-04' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1786-07-04' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1786-07-09'] -opus/data/descriptions/letterDesc/sort[@value='1786-07-11'] -opus/data/descriptions/letterDesc/sort[@value='1786-07-12' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1786-07-12' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1786-07-14'] -opus/data/descriptions/letterDesc/sort[@value='1786-07-16'] -opus/data/descriptions/letterDesc/sort[@value='1786-07-17'] -opus/data/descriptions/letterDesc/sort[@value='1786-07-21'] -opus/data/descriptions/letterDesc/sort[@value='1786-07-22'] -opus/data/descriptions/letterDesc/sort[@value='1786-07-25'] -opus/data/descriptions/letterDesc/sort[@value='1786-07-28'] -opus/data/descriptions/letterDesc/sort[@value='1786-07-31'] -opus/data/descriptions/letterDesc/sort[@value='1786-08-02'] -opus/data/descriptions/letterDesc/sort[@value='1786-08-03'] -opus/data/descriptions/letterDesc/sort[@value='1786-08-04' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1786-08-04' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1786-08-05'] -opus/data/descriptions/letterDesc/sort[@value='1786-08-07'] -opus/data/descriptions/letterDesc/sort[@value='1786-08-11'] -opus/data/descriptions/letterDesc/sort[@value='1786-08-22'] -opus/data/descriptions/letterDesc/sort[@value='1786-08-23'] -opus/data/descriptions/letterDesc/sort[@value='1786-08-24'] -opus/data/descriptions/letterDesc/sort[@value='1786-08-27'] -opus/data/descriptions/letterDesc/sort[@value='1786-08-29'] -opus/data/descriptions/letterDesc/sort[@value='1786-09-04'] -opus/data/descriptions/letterDesc/sort[@value='1786-09-05'] -opus/data/descriptions/letterDesc/sort[@value='1786-09-06'] -opus/data/descriptions/letterDesc/sort[@value='1786-09-15'] -opus/data/descriptions/letterDesc/sort[@value='1786-09-25'] -opus/data/descriptions/letterDesc/sort[@value='1786-09-28'] -opus/data/descriptions/letterDesc/sort[@value='1786-10-13'] -opus/data/descriptions/letterDesc/sort[@value='1786-10-29'] -opus/data/descriptions/letterDesc/sort[@value='1786-10-31'] -opus/data/descriptions/letterDesc/sort[@value='1786-11-04'] -opus/data/descriptions/letterDesc/sort[@value='1786-11-06'] -opus/data/descriptions/letterDesc/sort[@value='1786-11-07'] -opus/data/descriptions/letterDesc/sort[@value='1786-11-11'] -opus/data/descriptions/letterDesc/sort[@value='1786-11-12'] -opus/data/descriptions/letterDesc/sort[@value='1786-11-14'] -opus/data/descriptions/letterDesc/sort[@value='1786-11-19'] -opus/data/descriptions/letterDesc/sort[@value='1786-11-20'] -opus/data/descriptions/letterDesc/sort[@value='1786-12-01'] -opus/data/descriptions/letterDesc/sort[@value='1786-12-03'] -opus/data/descriptions/letterDesc/sort[@value='1786-12-08'] -opus/data/descriptions/letterDesc/sort[@value='1786-12-16'] -opus/data/descriptions/letterDesc/sort[@value='1786-12-22'] -opus/data/descriptions/letterDesc/sort[@value='1787-01-03'] -opus/data/descriptions/letterDesc/sort[@value='1787-01-28'] -opus/data/descriptions/letterDesc/sort[@value='1787-01-30'] -opus/data/descriptions/letterDesc/sort[@value='1787-01-31'] -opus/data/descriptions/letterDesc/sort[@value='1787-02-12'] -opus/data/descriptions/letterDesc/sort[@value='1787-02-17'] -opus/data/descriptions/letterDesc/sort[@value='1787-02-27'] -opus/data/descriptions/letterDesc/sort[@value='1787-03-10'] -opus/data/descriptions/letterDesc/sort[@value='1787-03-14'] -opus/data/descriptions/letterDesc/sort[@value='1787-03-21'] -opus/data/descriptions/letterDesc/sort[@value='1787-03-22'] -opus/data/descriptions/letterDesc/sort[@value='1787-03-26'] -opus/data/descriptions/letterDesc/sort[@value='1787-03-27'] -opus/data/descriptions/letterDesc/sort[@value='1787-04-01'] -opus/data/descriptions/letterDesc/sort[@value='1787-04-06'] -opus/data/descriptions/letterDesc/sort[@value='1787-04-08'] -opus/data/descriptions/letterDesc/sort[@value='1787-04-12'] -opus/data/descriptions/letterDesc/sort[@value='1787-04-17' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1787-04-17' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1787-04-22'] -opus/data/descriptions/letterDesc/sort[@value='1787-04-26'] -opus/data/descriptions/letterDesc/sort[@value='1787-04-27'] -opus/data/descriptions/letterDesc/sort[@value='1787-04-28'] -opus/data/descriptions/letterDesc/sort[@value='1787-04-30'] -opus/data/descriptions/letterDesc/sort[@value='1787-05-13'] -opus/data/descriptions/letterDesc/sort[@value='1787-05-17'] -opus/data/descriptions/letterDesc/sort[@value='1787-05-20'] -opus/data/descriptions/letterDesc/sort[@value='1787-05-22'] -opus/data/descriptions/letterDesc/sort[@value='1787-05-28'] -opus/data/descriptions/letterDesc/sort[@value='1787-06-02'] -opus/data/descriptions/letterDesc/sort[@value='1787-06-09'] -opus/data/descriptions/letterDesc/sort[@value='1787-06-22'] -opus/data/descriptions/letterDesc/sort[@value='1787-06-30'] -opus/data/descriptions/letterDesc/sort[@value='1787-07-02' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1787-07-02' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1787-07-03'] -opus/data/descriptions/letterDesc/sort[@value='1787-07-09'] -opus/data/descriptions/letterDesc/sort[@value='1787-07-18' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1787-07-18' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1787-07-18' and @order='300'] -opus/data/descriptions/letterDesc/sort[@value='1787-07-20'] -opus/data/descriptions/letterDesc/sort[@value='1787-07-22'] -opus/data/descriptions/letterDesc/sort[@value='1787-07-31'] -opus/data/descriptions/letterDesc/sort[@value='1787-08-06'] -opus/data/descriptions/letterDesc/sort[@value='1787-08-08'] -opus/data/descriptions/letterDesc/sort[@value='1787-08-09'] -opus/data/descriptions/letterDesc/sort[@value='1787-08-13'] -opus/data/descriptions/letterDesc/sort[@value='1787-08-16'] -opus/data/descriptions/letterDesc/sort[@value='1787-08-18' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1787-08-18' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1787-08-20'] -opus/data/descriptions/letterDesc/sort[@value='1787-08-21'] -opus/data/descriptions/letterDesc/sort[@value='1787-08-23'] -opus/data/descriptions/letterDesc/sort[@value='1787-08-27'] -opus/data/descriptions/letterDesc/sort[@value='1787-08-28'] -opus/data/descriptions/letterDesc/sort[@value='1787-09-01'] -opus/data/descriptions/letterDesc/sort[@value='1787-09-15'] -opus/data/descriptions/letterDesc/sort[@value='1787-09-16'] -opus/data/descriptions/letterDesc/sort[@value='1787-09-20'] -opus/data/descriptions/letterDesc/sort[@value='1787-09-21'] -opus/data/descriptions/letterDesc/sort[@value='1787-09-23'] -opus/data/descriptions/letterDesc/sort[@value='1787-10-03' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1787-10-03' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1787-10-16'] -opus/data/descriptions/letterDesc/sort[@value='1787-10-18'] -opus/data/descriptions/letterDesc/sort[@value='1787-10-28'] -opus/data/descriptions/letterDesc/sort[@value='1787-11-02'] -opus/data/descriptions/letterDesc/sort[@value='1787-11-07'] -opus/data/descriptions/letterDesc/sort[@value='1787-11-08'] -opus/data/descriptions/letterDesc/sort[@value='1787-11-13'] -opus/data/descriptions/letterDesc/sort[@value='1787-11-16'] -opus/data/descriptions/letterDesc/sort[@value='1787-11-17'] -opus/data/descriptions/letterDesc/sort[@value='1787-11-19'] -opus/data/descriptions/letterDesc/sort[@value='1787-11-23'] -opus/data/descriptions/letterDesc/sort[@value='1787-11-24'] -opus/data/descriptions/letterDesc/sort[@value='1787-11-25'] -opus/data/descriptions/letterDesc/sort[@value='1787-11-27'] -opus/data/descriptions/letterDesc/sort[@value='1787-11-29'] -opus/data/descriptions/letterDesc/sort[@value='1787-12-02'] -opus/data/descriptions/letterDesc/sort[@value='1787-12-04'] -opus/data/descriptions/letterDesc/sort[@value='1787-12-06'] -opus/data/descriptions/letterDesc/sort[@value='1787-12-10' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1787-12-10' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1787-12-11' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1787-12-11' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1787-12-12'] -opus/data/descriptions/letterDesc/sort[@value='1787-12-17' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1787-12-17' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1787-12-21' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1787-12-21' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1787-12-24'] -opus/data/descriptions/letterDesc/sort[@value='1787-12-25'] -opus/data/descriptions/letterDesc/sort[@value='1788-01-11'] -opus/data/descriptions/letterDesc/sort[@value='1788-02-07'] -opus/data/descriptions/letterDesc/sort[@value='1788-02-19'] -opus/data/descriptions/letterDesc/sort[@value='1788-02-22'] -opus/data/descriptions/letterDesc/sort[@value='1788-02-27' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1788-02-27' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1788-03-03'] -opus/data/descriptions/letterDesc/sort[@value='1788-03-04'] -opus/data/descriptions/letterDesc/sort[@value='1788-03-16' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1788-03-16' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1788-03-21'] -opus/data/descriptions/letterDesc/sort[@value='1788-03-22'] -opus/data/descriptions/letterDesc/sort[@value='1788-03-25'] -opus/data/descriptions/letterDesc/sort[@value='1788-03-30' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1788-03-30' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1788-04-02'] -opus/data/descriptions/letterDesc/sort[@value='1788-04-22'] -opus/data/descriptions/letterDesc/sort[@value='1788-04-23'] -opus/data/descriptions/letterDesc/sort[@value='1788-04-25'] -opus/data/descriptions/letterDesc/sort[@value='1788-04-27'] -opus/data/descriptions/letterDesc/sort[@value='1788-04-29'] -opus/data/descriptions/letterDesc/sort[@value='1788-05-04'] -opus/data/descriptions/letterDesc/sort[@value='1788-05-07'] -opus/data/descriptions/letterDesc/sort[@value='1788-05-09'] -opus/data/descriptions/letterDesc/sort[@value='1788-05-10'] -opus/data/descriptions/letterDesc/sort[@value='1788-05-13'] -opus/data/descriptions/letterDesc/sort[@value='1788-05-14'] -opus/data/descriptions/letterDesc/sort[@value='1788-05-15'] -opus/data/descriptions/letterDesc/sort[@value='1788-05-16' and @order='100'] -opus/data/descriptions/letterDesc/sort[@value='1788-05-16' and @order='200'] -opus/data/descriptions/letterDesc/sort[@value='1788-05-21'] -opus/data/descriptions/letterDesc/sort[@value='1788-05-22'] -opus/data/descriptions/letterDesc/sort[@value='1788-05-23'] -opus/data/descriptions/letterDesc/sort[@value='1788-05-27'] -opus/data/descriptions/letterDesc/sort[@value='1788-05-30'] -opus/data/descriptions/letterDesc/sort[@value='1788-05-31'] -opus/data/descriptions/letterDesc/sort[@value='1788-06-01'] -opus/data/descriptions/letterDesc/sort[@value='1788-06-03'] -opus/data/descriptions/letterDesc/sort[@value='1788-06-04'] -opus/data/descriptions/letterDesc/sort[@value='1788-06-08'] -opus/data/descriptions/letterDesc/sort[@value='1788-06-14'] -opus/data/descriptions/letterDesc/sort[@value='1788-06-17'] -opus/data/descriptions/letterDesc/sort[@value='1788-06-18'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='1'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='100'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='107'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='111'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='113'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='114'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='118'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='120'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='121'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='123'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='125'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='126'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='129'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='13'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='133'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='134'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='137'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='139'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='14'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='141'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='144'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='147'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='15'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='152'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='154'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='156'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='159'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='165'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='168'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='169'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='172'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='173'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='179'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='184'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='187'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='19'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='190'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='196'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='200'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='205'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='207'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='208'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='209'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='210'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='214'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='22'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='221'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='225'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='227'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='23'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='233'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='234'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='236'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='240'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='242'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='244'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='245'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='247'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='249'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='250'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='253'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='254'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='255'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='257'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='260'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='262'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='263'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='264'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='266'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='267'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='270'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='272'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='274'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='278'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='280'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='282'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='284'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='286'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='287'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='289'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='291'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='296'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='299'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='3'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='30'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='302'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='309'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='312'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='313'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='314'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='32'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='330'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='333'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='338'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='34'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='346'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='348'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='353'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='357'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='36'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='361'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='363'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='373'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='381'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='386'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='39'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='391'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='396'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='400'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='402'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='408'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='411'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='421'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='424'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='43'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='432'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='434'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='439'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='441'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='444'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='446'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='448'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='453'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='454'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='456'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='46'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='48'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='5'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='52'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='58'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='59'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='60'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='62'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='64'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='66'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='69'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='72'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='74'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='76'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='79'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='81'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='83'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='85'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='86'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='87'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='9'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='91'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='93'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='94'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='1' and @page='96'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='1'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='10'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='101'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='102'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='103'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='109'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='111'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='116'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='121'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='123'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='126'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='127'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='130'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='134'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='136'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='140'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='142'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='144'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='146'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='149'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='155'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='158'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='159'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='16'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='160'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='163'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='166'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='169'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='171'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='176'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='178'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='18'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='180'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='181'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='183'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='186'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='189'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='19'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='194'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='197'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='2'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='205'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='209'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='212'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='216'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='218'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='220'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='225'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='226'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='230'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='231'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='232'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='236'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='24'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='240'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='244'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='246'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='247'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='250'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='252'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='254'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='255'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='256'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='258'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='259'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='26'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='261'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='262'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='266'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='268'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='270'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='271'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='272'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='275'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='276'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='278'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='280'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='284'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='286'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='289'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='291'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='293'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='296'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='3'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='30'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='303'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='305'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='306'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='307'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='309'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='311'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='313'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='314'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='318'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='32'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='320'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='322'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='323'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='325'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='328'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='33'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='330'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='334'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='337'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='338'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='340'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='342'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='343'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='345'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='347'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='35'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='351'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='352'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='353'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='356'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='358'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='360'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='361'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='362'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='363'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='364'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='365'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='366'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='367'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='368'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='369'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='37'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='372'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='373'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='375'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='376'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='377'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='38'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='383'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='384'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='386'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='387'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='388'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='389'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='39'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='390'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='391'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='396'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='398'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='399'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='40'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='403'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='407'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='408'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='41'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='415'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='419'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='422'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='423'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='428'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='430'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='433'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='434'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='437'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='44'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='443'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='447'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='455'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='46'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='461'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='463'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='467'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='469'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='47'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='478'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='48'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='480'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='481'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='52'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='59'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='6'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='61'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='68'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='7'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='76'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='81'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='82'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='89'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='93'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='2' and @page='97'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='1'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='10'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='102'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='105'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='107'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='108'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='111'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='112'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='115'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='117'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='119'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='122'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='124'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='127'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='128'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='129'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='136'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='140'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='145'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='146'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='147'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='148'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='149'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='15'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='150'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='154'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='155'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='158'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='159'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='160'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='167'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='169'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='172'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='177'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='179'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='18'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='180'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='185'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='187'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='189'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='192'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='193'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='198'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='2'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='200'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='202'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='206'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='211'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='216'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='217'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='22'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='220'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='221'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='224'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='226'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='227'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='228'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='235'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='244'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='248'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='25'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='253'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='263'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='265'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='268'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='270'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='271'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='274'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='277'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='278'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='28'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='282'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='283'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='288'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='292'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='298'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='308'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='311'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='317'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='319'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='32'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='321'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='322'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='325'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='326'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='329'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='330'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='334'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='335'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='336'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='340'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='344'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='35'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='350'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='352'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='353'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='354'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='358'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='36'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='361'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='364'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='365'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='367'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='368'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='373'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='374'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='375'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='379'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='38'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='381'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='382'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='385'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='387'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='389'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='390'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='391'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='395'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='397'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='4'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='42'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='43'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='46'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='470'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='5'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='50'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='53'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='54'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='56'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='6'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='60'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='61'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='62'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='64'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='66'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='7'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='73'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='74'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='8'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='80'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='82'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='84'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='87'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='90'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='95'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='XIX'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='XXVI'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='3' and @page='XXXI'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='1'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='100'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='102'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='109'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='11'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='110'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='116'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='117'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='12'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='123'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='124'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='129'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='13'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='133'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='134'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='135'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='145'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='153'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='155'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='158'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='160'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='164'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='165'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='169'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='17'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='170'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='171'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='174'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='180'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='186'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='187'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='189'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='199'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='20'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='200'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='203'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='205'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='207'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='208'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='21'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='213'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='214'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='222'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='224'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='226'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='228'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='23'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='232'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='234'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='24'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='241'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='248'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='249'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='250'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='252'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='258'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='266'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='267'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='270'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='278'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='282'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='289'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='29'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='291'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='296'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='297'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='3'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='30'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='300'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='306'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='308'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='310'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='314'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='315'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='320'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='321'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='325'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='327'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='331'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='334'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='341'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='344'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='346'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='352'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='358'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='361'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='362'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='363'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='365'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='367'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='369'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='370'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='372'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='378'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='379'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='38'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='382'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='383'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='389'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='390'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='395'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='397'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='402'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='406'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='408'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='411'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='412'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='416'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='417'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='419'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='42'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='420'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='423'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='424'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='426'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='429'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='431'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='437'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='439'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='446'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='447'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='45'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='450'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='453'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='454'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='457'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='46'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='462'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='464'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='466'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='467'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='47'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='471'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='49'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='50'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='515'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='59'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='60'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='61'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='63'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='68'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='71'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='75'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='76'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='77'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='8'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='80'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='82'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='84'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='86'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='88'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='91'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='4' and @page='94'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='1'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='104'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='105'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='106'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='11'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='111'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='115'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='118'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='120'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='126'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='127'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='130'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='132'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='134'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='136'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='139'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='141'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='143'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='148'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='15'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='150'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='153'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='155'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='157'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='158'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='160'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='162'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='163'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='165'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='166'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='167'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='171'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='173'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='174'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='179'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='18'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='183'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='185'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='188'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='190'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='191'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='196'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='197'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='198'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='200'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='203'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='206'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='21'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='210'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='22'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='221'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='223'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='225'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='229'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='231'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='235'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='237'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='239'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='243'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='244'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='246'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='250'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='253'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='255'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='259'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='263'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='268'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='270'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='276'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='278'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='28'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='283'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='289'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='292'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='295'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='296'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='3'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='300'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='302'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='306'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='308'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='318'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='319'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='32'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='322'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='323'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='324'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='328'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='334'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='34'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='340'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='342'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='343'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='347'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='353'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='356'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='360'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='361'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='364'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='370'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='371'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='38'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='380'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='381'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='387'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='389'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='392'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='397'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='398'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='404'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='408'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='409'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='414'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='416'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='418'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='421'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='423'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='427'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='428'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='429'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='434'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='436'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='437'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='439'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='443'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='445'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='446'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='45'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='450'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='452'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='453'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='455'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='459'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='462'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='468'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='47'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='471'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='48'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='49'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='5'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='50'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='53'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='55'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='57'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='58'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='60'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='65'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='66'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='68'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='69'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='73'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='74'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='75'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='78'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='80'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='81'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='82'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='9'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='91'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='92'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='93'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='5' and @page='98'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='1'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='10'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='101'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='111'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='112'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='113'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='116'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='118'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='122'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='124'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='130'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='131'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='137'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='139'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='144'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='148'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='150'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='151'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='153'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='165'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='17'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='170'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='172'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='174'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='176'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='18'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='181'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='186'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='191'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='193'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='194'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='197'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='205'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='207'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='21'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='210'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='213'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='218'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='220'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='224'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='226'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='231'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='234'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='238'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='243'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='245'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='250'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='252'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='262'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='266'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='267'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='268'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='269'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='27'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='274'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='279'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='28'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='280'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='288'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='29'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='293'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='297'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='3'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='305'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='307'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='308'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='31'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='312'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='315'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='319'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='322'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='324'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='325'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='333'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='335'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='341'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='344'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='346'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='356'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='358'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='359'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='36'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='360'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='361'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='369'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='370'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='376'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='38'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='383'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='385'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='387'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='393'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='394'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='399'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='4'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='403'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='405'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='41'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='410'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='415'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='416'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='417'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='418'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='424'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='426'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='427'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='43'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='432'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='433'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='435'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='437'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='438'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='443'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='447'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='448'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='45'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='452'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='453'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='454'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='456'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='458'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='464'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='467'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='471'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='474'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='479'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='48'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='486'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='488'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='492'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='495'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='50'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='500'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='507'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='51'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='510'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='514'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='519'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='520'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='523'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='525'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='526'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='529'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='535'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='536'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='543'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='56'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='59'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='62'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='66'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='7'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='70'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='72'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='78'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='81'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='82'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='83'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='87'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='89'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='92'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='96'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='6' and @page='98'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='1'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='106'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='109'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='111'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='114'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='115'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='12'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='121'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='124'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='128'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='129'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='13'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='130'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='131'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='132'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='134'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='142'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='143'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='146'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='154'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='16'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='18'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='181'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='183'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='196'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='200'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='203'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='21'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='211'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='213'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='217'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='230'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='238'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='239'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='241'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='242'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='245'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='246'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='247'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='252'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='253'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='254'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='256'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='258'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='259'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='260'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='263'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='267'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='268'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='274'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='276'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='278'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='279'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='281'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='283'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='287'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='288'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='29'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='291'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='295'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='30'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='300'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='306'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='308'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='309'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='312'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='314'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='318'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='324'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='333'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='334'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='339'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='344'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='347'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='353'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='354'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='356'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='358'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='36'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='366'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='367'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='372'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='375'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='376'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='378'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='38'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='380'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='381'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='382'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='383'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='385'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='388'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='389'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='390'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='391'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='392'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='394'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='395'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='398'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='4'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='407'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='410'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='428'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='429'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='430'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='432'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='439'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='440'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='443'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='444'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='447'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='448'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='450'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='451'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='454'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='456'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='461'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='465'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='466'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='469'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='470'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='472'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='473'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='474'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='483'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='484'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='488'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='491'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='494'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='497'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='499'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='5'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='504'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='506'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='507'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='508'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='509'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='51'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='510'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='513'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='515'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='52'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='53'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='59'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='60'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='62'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='68'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='70'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='73'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='86'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='89'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='91'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='92'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='96'] -opus/data/descriptions/letterDesc/ZHInfo/begin[@vol='7' and @page='99'] -opus/data/descriptions/letterDesc/ZHInfo/dateChanged[@value=''] -opus/document -opus/document/letterText/added/anchor[@ref='1'] -opus/document/letterText/added/line[@index='33' and @autopsic='33'] -opus/document/letterText/added/line[@index='8' and @autopsic='8'] -opus/document/letterText/address/aq/del/ul -opus/document/letterText/address/aq/edit[@ref='1826'] -opus/document/letterText/address/aq/edit[@ref='1844'] -opus/document/letterText/address/aq/edit[@ref='2492'] -opus/document/letterText/address/aq/line[@index='13' and @autopsic='13'] -opus/document/letterText/address/aq/line[@index='18' and @autopsic='17'] -opus/document/letterText/address/aq/line[@index='19' and @autopsic='19'] -opus/document/letterText/address/aq/line[@index='20' and @autopsic='20' and @type='break' and @tab='3'] -opus/document/letterText/address/aq/line[@index='25' and @autopsic='23'] -opus/document/letterText/address/aq/line[@index='25' and @autopsic='25'] -opus/document/letterText/address/aq/line[@index='27' and @autopsic='27'] -opus/document/letterText/address/aq/line[@index='27' and @autopsic='27' and @tab='1'] -opus/document/letterText/address/aq/line[@index='30' and @autopsic='30'] -opus/document/letterText/address/aq/line[@index='30' and @autopsic='30' and @tab='1'] -opus/document/letterText/address/aq/line[@index='31' and @autopsic='31'] -opus/document/letterText/address/aq/line[@index='32' and @autopsic='32'] -opus/document/letterText/address/aq/line[@index='35' and @autopsic='35'] -opus/document/letterText/address/aq/line[@index='36' and @autopsic='36'] -opus/document/letterText/address/aq/line[@index='7' and @autopsic='7'] -opus/document/letterText/address/aq/line[@index='8' and @autopsic='7'] -opus/document/letterText/address/aq/line[@index='8' and @autopsic='8'] -opus/document/letterText/address/aq/ul/aq -opus/document/letterText/address/aq/ul/line[@index='29' and @autopsic='29'] -opus/document/letterText/address/del/aq/line[@index='6' and @autopsic='6'] -opus/document/letterText/address/del/ul -opus/document/letterText/address/edit/aq/dul -opus/document/letterText/address/edit/aq/hand[@ref='-1'] -opus/document/letterText/address/edit/aq/ul/super -opus/document/letterText/address/edit/hand/aq -opus/document/letterText/address/edit/hand/aq/super -opus/document/letterText/address/edit/hand[@ref='-1'] -opus/document/letterText/address/edit[@ref=''] -opus/document/letterText/address/edit[@ref='1465'] -opus/document/letterText/address/edit[@ref='1845'] -opus/document/letterText/address/edit[@ref='1846'] -opus/document/letterText/address/edit[@ref='1933'] -opus/document/letterText/address/edit[@ref='1934'] -opus/document/letterText/address/edit[@ref='1935'] -opus/document/letterText/address/edit[@ref='2285'] -opus/document/letterText/address/edit[@ref='2389'] -opus/document/letterText/address/edit[@ref='267'] -opus/document/letterText/address/edit[@ref='268'] -opus/document/letterText/address/edit[@ref='2803'] -opus/document/letterText/address/edit[@ref='3032'] -opus/document/letterText/address/edit[@ref='3033'] -opus/document/letterText/address/edit[@ref='3513'] -opus/document/letterText/address/edit[@ref='3652'] -opus/document/letterText/address/edit[@ref='3893'] -opus/document/letterText/address/edit[@ref='3947'] -opus/document/letterText/address/edit[@ref='3974'] -opus/document/letterText/address/edit[@ref='4088'] -opus/document/letterText/address/edit[@ref='4142'] -opus/document/letterText/address/edit[@ref='4145'] -opus/document/letterText/address/edit[@ref='4175'] -opus/document/letterText/address/edit[@ref='4288'] -opus/document/letterText/address/edit[@ref='4303'] -opus/document/letterText/address/edit[@ref='4328'] -opus/document/letterText/address/edit[@ref='4400'] -opus/document/letterText/address/edit[@ref='4405'] -opus/document/letterText/address/edit[@ref='4408'] -opus/document/letterText/address/edit[@ref='4479'] -opus/document/letterText/address/edit[@ref='4480'] -opus/document/letterText/address/edit[@ref='4849'] -opus/document/letterText/address/edit[@ref='4850'] -opus/document/letterText/address/edit[@ref='4912'] -opus/document/letterText/address/edit[@ref='4952'] -opus/document/letterText/address/edit[@ref='4953'] -opus/document/letterText/address/edit[@ref='4978'] -opus/document/letterText/address/edit[@ref='4980'] -opus/document/letterText/address/edit[@ref='5066'] -opus/document/letterText/address/edit[@ref='5114'] -opus/document/letterText/address/edit[@ref='513'] -opus/document/letterText/address/edit[@ref='514'] -opus/document/letterText/address/edit[@ref='5176'] -opus/document/letterText/address/edit[@ref='5178'] -opus/document/letterText/address/edit[@ref='5683'] -opus/document/letterText/address/edit[@ref='5822'] -opus/document/letterText/address/edit[@ref='5984'] -opus/document/letterText/address/edit[@ref='5999'] -opus/document/letterText/address/edit[@ref='6013'] -opus/document/letterText/address/edit[@ref='6077'] -opus/document/letterText/address/edit[@ref='6123'] -opus/document/letterText/address/edit[@ref='6151'] -opus/document/letterText/address/edit[@ref='6213'] -opus/document/letterText/address/edit[@ref='6216'] -opus/document/letterText/address/edit[@ref='6314'] -opus/document/letterText/address/edit[@ref='6335'] -opus/document/letterText/address/edit[@ref='6370'] -opus/document/letterText/address/edit[@ref='6426'] -opus/document/letterText/address/edit[@ref='6452'] -opus/document/letterText/address/edit[@ref='6470'] -opus/document/letterText/address/edit[@ref='6541'] -opus/document/letterText/address/edit[@ref='666'] -opus/document/letterText/address/edit[@ref='6745'] -opus/document/letterText/address/edit[@ref='6801'] -opus/document/letterText/address/edit[@ref='737'] -opus/document/letterText/address/edit[@ref='782'] -opus/document/letterText/address/edit[@ref='792'] -opus/document/letterText/address/edit[@ref='951'] -opus/document/letterText/address/hand/aq -opus/document/letterText/address/hand/aq/ul -opus/document/letterText/address/hand/edit[@ref='6539'] -opus/document/letterText/address/hand/edit[@ref='6540'] -opus/document/letterText/address/hand/line[@index='17' and @autopsic='17'] -opus/document/letterText/address/hand/line[@index='32' and @autopsic='32' and @tab='1'] -opus/document/letterText/address/hand/line[@index='3' and @autopsic='3' and @tab='1'] -opus/document/letterText/address/hand/line[@index='4' and @autopsic='4' and @tab='1'] -opus/document/letterText/address/hand/line[@index='5' and @autopsic='5' and @tab='1'] -opus/document/letterText/address/hand[@ref='19'] -opus/document/letterText/address/hand/super/ul -opus/document/letterText/address/line[@index='10' and @autopsic='9' and @tab='1'] -opus/document/letterText/address/line[@index='12' and @autopsic='11'] -opus/document/letterText/address/line[@index='13' and @autopsic='13'] -opus/document/letterText/address/line[@index='13' and @autopsic='13' and @tab='1'] -opus/document/letterText/address/line[@index='14' and @autopsic='14' and @tab='1'] -opus/document/letterText/address/line[@index='15' and @autopsic='15'] -opus/document/letterText/address/line[@index='16' and @autopsic='16'] -opus/document/letterText/address/line[@index='16' and @autopsic='16' and @tab='1'] -opus/document/letterText/address/line[@index='17' and @autopsic='17'] -opus/document/letterText/address/line[@index='1' and @autopsic='1' and @tab='1'] -opus/document/letterText/address/line[@index='21' and @autopsic='21' and @tab='1'] -opus/document/letterText/address/line[@index='22' and @autopsic='22' and @tab='1'] -opus/document/letterText/address/line[@index='22' and @autopsic='23'] -opus/document/letterText/address/line[@index='23' and @autopsic='23'] -opus/document/letterText/address/line[@index='23' and @autopsic='23' and @tab='1'] -opus/document/letterText/address/line[@index='24' and @autopsic='24'] -opus/document/letterText/address/line[@index='26' and @autopsic='26' and @tab='1'] -opus/document/letterText/address/line[@index='27' and @autopsic='27'] -opus/document/letterText/address/line[@index='27' and @autopsic='28' and @tab='1'] -opus/document/letterText/address/line[@index='2' and @autopsic='2' and @tab='1'] -opus/document/letterText/address/line[@index='30' and @autopsic='31' and @tab='1'] -opus/document/letterText/address/line[@index='31' and @autopsic='31' and @tab='1'] -opus/document/letterText/address/line[@index='32' and @autopsic='32'] -opus/document/letterText/address/line[@index='32' and @autopsic='32' and @tab='1'] -opus/document/letterText/address/line[@index='33' and @autopsic='33'] -opus/document/letterText/address/line[@index='34' and @autopsic='34' and @tab='1'] -opus/document/letterText/address/line[@index='35' and @autopsic='35' and @tab='1'] -opus/document/letterText/address/line[@index='36' and @autopsic='34'] -opus/document/letterText/address/line[@index='38' and @autopsic='37'] -opus/document/letterText/address/line[@index='3' and @autopsic='3' and @tab='1'] -opus/document/letterText/address/line[@index='5' and @autopsic='5' and @tab='1'] -opus/document/letterText/address/line[@index='6' and @autopsic='6' and @tab='1'] -opus/document/letterText/address/line[@index='8' and @autopsic='8' and @tab='1'] -opus/document/letterText/address/line[@index='9' and @autopsic='7'] -opus/document/letterText/address/line[@index='9' and @autopsic='9'] -opus/document/letterText/address/line[@index='9' and @autopsic='9' and @tab='1'] -opus/document/letterText/address/line[@type='empty'] -opus/document/letterText/address/note -opus/document/letterText/address/nr -opus/document/letterText/address/page[@index='262' and @autopsic='262'] -opus/document/letterText/align/address/aq -opus/document/letterText/align/aq/del -opus/document/letterText/align/aq/edit[@ref='670'] -opus/document/letterText/align/aq/super -opus/document/letterText/align/datum/aq/edit[@ref='1704'] -opus/document/letterText/align/datum/aq/edit[@ref='1714'] -opus/document/letterText/align/datum/aq/edit[@ref='6510'] -opus/document/letterText/align/datum/del/aq -opus/document/letterText/align/datum/edit/gr -opus/document/letterText/align/datum/edit[@ref='1408'] -opus/document/letterText/align/datum/edit[@ref='1437'] -opus/document/letterText/align/datum/edit[@ref='1521'] -opus/document/letterText/align/datum/edit[@ref='1595'] -opus/document/letterText/align/datum/edit[@ref='1936'] -opus/document/letterText/align/datum/edit[@ref='1960'] -opus/document/letterText/align/datum/edit[@ref='2029'] -opus/document/letterText/align/datum/edit[@ref='2030'] -opus/document/letterText/align/datum/edit[@ref='2073'] -opus/document/letterText/align/datum/edit[@ref='2326'] -opus/document/letterText/align/datum/edit[@ref='2330'] -opus/document/letterText/align/datum/edit[@ref='2413'] -opus/document/letterText/align/datum/edit[@ref='2419'] -opus/document/letterText/align/datum/edit[@ref='2438'] -opus/document/letterText/align/datum/edit[@ref='269'] -opus/document/letterText/align/datum/edit[@ref='288'] -opus/document/letterText/align/datum/edit[@ref='2924'] -opus/document/letterText/align/datum/edit[@ref='3030'] -opus/document/letterText/align/datum/edit[@ref='3034'] -opus/document/letterText/align/datum/edit[@ref='3206'] -opus/document/letterText/align/datum/edit[@ref='3272'] -opus/document/letterText/align/datum/edit[@ref='3278'] -opus/document/letterText/align/datum/edit[@ref='3412'] -opus/document/letterText/align/datum/edit[@ref='3447'] -opus/document/letterText/align/datum/edit[@ref='3514'] -opus/document/letterText/align/datum/edit[@ref='3519'] -opus/document/letterText/align/datum/edit[@ref='3553'] -opus/document/letterText/align/datum/edit[@ref='3693'] -opus/document/letterText/align/datum/edit[@ref='3694'] -opus/document/letterText/align/datum/edit[@ref='3777'] -opus/document/letterText/align/datum/edit[@ref='3807'] -opus/document/letterText/align/datum/edit[@ref='3860'] -opus/document/letterText/align/datum/edit[@ref='3869'] -opus/document/letterText/align/datum/edit[@ref='3887'] -opus/document/letterText/align/datum/edit[@ref='3934'] -opus/document/letterText/align/datum/edit[@ref='3936'] -opus/document/letterText/align/datum/edit[@ref='3971'] -opus/document/letterText/align/datum/edit[@ref='3994'] -opus/document/letterText/align/datum/edit[@ref='4094'] -opus/document/letterText/align/datum/edit[@ref='4132'] -opus/document/letterText/align/datum/edit[@ref='4209'] -opus/document/letterText/align/datum/edit[@ref='4248'] -opus/document/letterText/align/datum/edit[@ref='4296'] -opus/document/letterText/align/datum/edit[@ref='4354'] -opus/document/letterText/align/datum/edit[@ref='4434'] -opus/document/letterText/align/datum/edit[@ref='4445'] -opus/document/letterText/align/datum/edit[@ref='4482'] -opus/document/letterText/align/datum/edit[@ref='4516'] -opus/document/letterText/align/datum/edit[@ref='4562'] -opus/document/letterText/align/datum/edit[@ref='4699'] -opus/document/letterText/align/datum/edit[@ref='4718'] -opus/document/letterText/align/datum/edit[@ref='4719'] -opus/document/letterText/align/datum/edit[@ref='4754'] -opus/document/letterText/align/datum/edit[@ref='4763'] -opus/document/letterText/align/datum/edit[@ref='4769'] -opus/document/letterText/align/datum/edit[@ref='4818'] -opus/document/letterText/align/datum/edit[@ref='4982'] -opus/document/letterText/align/datum/edit[@ref='4983'] -opus/document/letterText/align/datum/edit[@ref='5074'] -opus/document/letterText/align/datum/edit[@ref='5090'] -opus/document/letterText/align/datum/edit[@ref='5095'] -opus/document/letterText/align/datum/edit[@ref='5103'] -opus/document/letterText/align/datum/edit[@ref='5129'] -opus/document/letterText/align/datum/edit[@ref='5136'] -opus/document/letterText/align/datum/edit[@ref='515'] -opus/document/letterText/align/datum/edit[@ref='5646'] -opus/document/letterText/align/datum/edit[@ref='5647'] -opus/document/letterText/align/datum/edit[@ref='5686'] -opus/document/letterText/align/datum/edit[@ref='5762'] -opus/document/letterText/align/datum/edit[@ref='5850'] -opus/document/letterText/align/datum/edit[@ref='614'] -opus/document/letterText/align/datum/edit[@ref='6147'] -opus/document/letterText/align/datum/edit[@ref='6168'] -opus/document/letterText/align/datum/edit[@ref='6191'] -opus/document/letterText/align/datum/edit[@ref='6406'] -opus/document/letterText/align/datum/edit[@ref='6581'] -opus/document/letterText/align/datum/edit[@ref='6612'] -opus/document/letterText/align/datum/edit[@ref='6636'] -opus/document/letterText/align/datum/edit[@ref='6746'] -opus/document/letterText/align/datum/nr -opus/document/letterText/align/datum/sub/aq -opus/document/letterText/align/del/gr -opus/document/letterText/align/edit/aq/super -opus/document/letterText/align/edit/datum/del -opus/document/letterText/align/edit/datum/del/nr -opus/document/letterText/align/edit/datum/super -opus/document/letterText/align/edit/gr -opus/document/letterText/align/edit/gr/del -opus/document/letterText/align/edit[@ref='1029'] -opus/document/letterText/align/edit[@ref='1208'] -opus/document/letterText/align/edit[@ref='1690'] -opus/document/letterText/align/edit[@ref='2214'] -opus/document/letterText/align/edit[@ref='2920'] -opus/document/letterText/align/edit[@ref='3075'] -opus/document/letterText/align/edit[@ref='3093'] -opus/document/letterText/align/edit[@ref='3347'] -opus/document/letterText/align/edit[@ref='3348'] -opus/document/letterText/align/edit[@ref='3349'] -opus/document/letterText/align/edit[@ref='3350'] -opus/document/letterText/align/edit[@ref='3620'] -opus/document/letterText/align/edit[@ref='3741'] -opus/document/letterText/align/edit[@ref='3776'] -opus/document/letterText/align/edit[@ref='3814'] -opus/document/letterText/align/edit[@ref='3912'] -opus/document/letterText/align/edit[@ref='455'] -opus/document/letterText/align/edit[@ref='4608'] -opus/document/letterText/align/edit[@ref='493'] -opus/document/letterText/align/edit[@ref='5043'] -opus/document/letterText/align/edit[@ref='542'] -opus/document/letterText/align/edit[@ref='5641'] -opus/document/letterText/align/edit[@ref='5644'] -opus/document/letterText/align/edit[@ref='5677'] -opus/document/letterText/align/edit[@ref='5695'] -opus/document/letterText/align/edit[@ref='5704'] -opus/document/letterText/align/edit[@ref='5773'] -opus/document/letterText/align/edit[@ref='5817'] -opus/document/letterText/align/edit[@ref='6210'] -opus/document/letterText/align/edit[@ref='622'] -opus/document/letterText/align/edit[@ref='645'] -opus/document/letterText/align/edit[@ref='6472'] -opus/document/letterText/align/edit[@ref='6705'] -opus/document/letterText/align/edit[@ref='711'] -opus/document/letterText/align/edit[@ref='721'] -opus/document/letterText/align/edit[@ref='835'] -opus/document/letterText/align/edit[@ref='836'] -opus/document/letterText/align/edit[@ref='936'] -opus/document/letterText/align/edit[@ref='953'] -opus/document/letterText/align/edit[@ref='956'] -opus/document/letterText/align/edit[@ref='973'] -opus/document/letterText/align/edit/sig/aq -opus/document/letterText/align/edit/super -opus/document/letterText/align/hand/datum/super -opus/document/letterText/align/hand/datum/ul -opus/document/letterText/align/hand/del -opus/document/letterText/align/hand[@ref='31'] -opus/document/letterText/align/hand[@ref='5'] -opus/document/letterText/align/hand/sig -opus/document/letterText/align/hand/sig/aq -opus/document/letterText/align/sig/datum -opus/document/letterText/align/sig/edit[@ref='3811'] -opus/document/letterText/align/sig/edit[@ref='3969'] -opus/document/letterText/align/sig/edit[@ref='3970'] -opus/document/letterText/align/sig/edit[@ref='4327'] -opus/document/letterText/align/sig/edit[@ref='438'] -opus/document/letterText/align/sig/edit[@ref='4409'] -opus/document/letterText/align/sig/edit[@ref='4635'] -opus/document/letterText/align/sig/edit[@ref='4816'] -opus/document/letterText/align/sig/edit[@ref='5919'] -opus/document/letterText/align/sig/edit[@ref='6017'] -opus/document/letterText/align/sig/edit[@ref='6803'] -opus/document/letterText/align/sig/nr/aq -opus/document/letterText/align/up/aq -opus/document/letterText/anchor/added -opus/document/letterText/anchor/note -opus/document/letterText/anchor[@ref='4'] -opus/document/letterText/anchor[@ref='5'] -opus/document/letterText/aq/address/del -opus/document/letterText/aq/address/edit[@ref='521'] -opus/document/letterText/aq/address/edit/ul -opus/document/letterText/aq/address/line[@index='11' and @autopsic='11'] -opus/document/letterText/aq/address/line[@index='12' and @autopsic='11'] -opus/document/letterText/aq/address/line[@index='14' and @autopsic='14'] -opus/document/letterText/aq/address/line[@index='15' and @autopsic='14'] -opus/document/letterText/aq/address/line[@index='15' and @autopsic='15'] -opus/document/letterText/aq/address/line[@index='16' and @autopsic='16'] -opus/document/letterText/aq/address/line[@index='17' and @autopsic='17'] -opus/document/letterText/aq/address/line[@index='18' and @autopsic='18'] -opus/document/letterText/aq/address/line[@index='24' and @autopsic='24'] -opus/document/letterText/aq/address/line[@index='25' and @autopsic='25'] -opus/document/letterText/aq/address/line[@index='26' and @autopsic='26'] -opus/document/letterText/aq/address/line[@index='27' and @autopsic='26'] -opus/document/letterText/aq/address/line[@index='27' and @autopsic='27'] -opus/document/letterText/aq/address/line[@index='29' and @autopsic='29'] -opus/document/letterText/aq/address/line[@index='36' and @autopsic='35'] -opus/document/letterText/aq/address/line[@index='37' and @autopsic='36'] -opus/document/letterText/aq/address/line[@index='5' and @autopsic='5'] -opus/document/letterText/aq/address/line[@index='6' and @autopsic='6'] -opus/document/letterText/aq/address/line[@index='7' and @autopsic='6'] -opus/document/letterText/aq/align/ul -opus/document/letterText/aq/anchor[@ref='2'] -opus/document/letterText/aq/anchor[@ref='3'] -opus/document/letterText/aq/anchor[@ref='4'] -opus/document/letterText/aq/del/edit[@ref='290'] -opus/document/letterText/aq/del/line[@index='13' and @autopsic='13'] -opus/document/letterText/aq/del/line[@index='15' and @autopsic='16'] -opus/document/letterText/aq/del/line[@index='16' and @autopsic='16'] -opus/document/letterText/aq/del/line[@index='17' and @autopsic='17'] -opus/document/letterText/aq/del/line[@index='19' and @autopsic='19'] -opus/document/letterText/aq/del/line[@index='19' and @autopsic='20'] -opus/document/letterText/aq/del/line[@index='20' and @autopsic='21'] -opus/document/letterText/aq/del/line[@index='22' and @autopsic='22'] -opus/document/letterText/aq/del/line[@index='23' and @autopsic='23'] -opus/document/letterText/aq/del/line[@index='23' and @autopsic='24'] -opus/document/letterText/aq/del/line[@index='24' and @autopsic='24'] -opus/document/letterText/aq/del/line[@index='25' and @autopsic='25'] -opus/document/letterText/aq/del/line[@index='29' and @autopsic='30'] -opus/document/letterText/aq/del/line[@index='2' and @autopsic='2'] -opus/document/letterText/aq/del/line[@index='31' and @autopsic='31'] -opus/document/letterText/aq/del/line[@index='32' and @autopsic='32'] -opus/document/letterText/aq/del/line[@index='33' and @autopsic='34'] -opus/document/letterText/aq/del/line[@index='35' and @autopsic='35'] -opus/document/letterText/aq/del/line[@index='37' and @autopsic='37'] -opus/document/letterText/aq/del/line[@index='5' and @autopsic='6'] -opus/document/letterText/aq/del/line[@index='7' and @autopsic='7'] -opus/document/letterText/aq/del/line[@index='9' and @autopsic='9'] -opus/document/letterText/aq/dul/line[@index='17' and @autopsic='17'] -opus/document/letterText/aq/edit/del -opus/document/letterText/aq/edit/del/nr -opus/document/letterText/aq/edit[@ref='12'] -opus/document/letterText/aq/edit[@ref='1547'] -opus/document/letterText/aq/edit[@ref='1583'] -opus/document/letterText/aq/edit[@ref='1637'] -opus/document/letterText/aq/edit[@ref='1677'] -opus/document/letterText/aq/edit[@ref='1847'] -opus/document/letterText/aq/edit[@ref='1851'] -opus/document/letterText/aq/edit[@ref='2368'] -opus/document/letterText/aq/edit[@ref='2369'] -opus/document/letterText/aq/edit[@ref='2375'] -opus/document/letterText/aq/edit[@ref='2376'] -opus/document/letterText/aq/edit[@ref='24'] -opus/document/letterText/aq/edit[@ref='25'] -opus/document/letterText/aq/edit[@ref='2678'] -opus/document/letterText/aq/edit[@ref='2703'] -opus/document/letterText/aq/edit[@ref='2706'] -opus/document/letterText/aq/edit[@ref='2707'] -opus/document/letterText/aq/edit[@ref='2774'] -opus/document/letterText/aq/edit[@ref='3062'] -opus/document/letterText/aq/edit[@ref='3428'] -opus/document/letterText/aq/edit[@ref='36'] -opus/document/letterText/aq/edit[@ref='3662'] -opus/document/letterText/aq/edit[@ref='4037'] -opus/document/letterText/aq/edit[@ref='4491'] -opus/document/letterText/aq/edit[@ref='4648'] -opus/document/letterText/aq/edit[@ref='4680'] -opus/document/letterText/aq/edit[@ref='489'] -opus/document/letterText/aq/edit[@ref='4892'] -opus/document/letterText/aq/edit[@ref='5062'] -opus/document/letterText/aq/edit[@ref='523'] -opus/document/letterText/aq/edit[@ref='525'] -opus/document/letterText/aq/edit[@ref='533'] -opus/document/letterText/aq/edit[@ref='534'] -opus/document/letterText/aq/edit[@ref='548'] -opus/document/letterText/aq/edit[@ref='549'] -opus/document/letterText/aq/edit[@ref='5603'] -opus/document/letterText/aq/edit[@ref='5957'] -opus/document/letterText/aq/edit[@ref='5960'] -opus/document/letterText/aq/edit[@ref='5961'] -opus/document/letterText/aq/edit[@ref='602'] -opus/document/letterText/aq/edit[@ref='6022'] -opus/document/letterText/aq/edit[@ref='6188'] -opus/document/letterText/aq/edit[@ref='6189'] -opus/document/letterText/aq/edit[@ref='6190'] -opus/document/letterText/aq/edit[@ref='6667'] -opus/document/letterText/aq/edit[@ref='6668'] -opus/document/letterText/aq/edit[@ref='6669'] -opus/document/letterText/aq/edit[@ref='6696'] -opus/document/letterText/aq/line -opus/document/letterText/aq/line[@index='11' and @autopsic='11' and @tab='7'] -opus/document/letterText/aq/line[@index='12' and @autopsic='12' and @tab='5'] -opus/document/letterText/aq/line[@index='12' and @autopsic='12' and @type='break' and @tab='1'] -opus/document/letterText/aq/line[@index='13' and @autopsic='13' and @type='break' and @tab='1'] -opus/document/letterText/aq/line[@index='13' and @autopsic='14'] -opus/document/letterText/aq/line[@index='13' and @autopsic='14' and @tab='1'] -opus/document/letterText/aq/line[@index='14' and @autopsic='14' and @tab='5'] -opus/document/letterText/aq/line[@index='14' and @autopsic='15'] -opus/document/letterText/aq/line[@index='14' and @autopsic='15' and @tab='1'] -opus/document/letterText/aq/line[@index='15' and @autopsic='15' and @type='break' and @tab='4'] -opus/document/letterText/aq/line[@index='15' and @autopsic='16'] -opus/document/letterText/aq/line[@index='16' and @autopsic='16' and @tab='7'] -opus/document/letterText/aq/line[@index='17' and @autopsic='17' and @type='break' and @tab='1'] -opus/document/letterText/aq/line[@index='18' and @autopsic='17'] -opus/document/letterText/aq/line[@index='18' and @autopsic='18' and @tab='2'] -opus/document/letterText/aq/line[@index='18' and @autopsic='18' and @type='break' and @tab='1'] -opus/document/letterText/aq/line[@index='18' and @autopsic='19'] -opus/document/letterText/aq/line[@index='18' and @autopsic='19' and @tab='1'] -opus/document/letterText/aq/line[@index='19' and @autopsic='18'] -opus/document/letterText/aq/line[@index='19' and @autopsic='19' and @tab='2'] -opus/document/letterText/aq/line[@index='19' and @autopsic='19' and @type='break' and @tab='1'] -opus/document/letterText/aq/line[@index='19' and @autopsic='20'] -opus/document/letterText/aq/line[@index='19' and @autopsic='50'] -opus/document/letterText/aq/line[@index='1' and @autopsic='1' and @tab='1'] -opus/document/letterText/aq/line[@index='1' and @autopsic='1' and @type='break' and @tab='1'] -opus/document/letterText/aq/line[@index='20' and @autopsic='20' and @type='break' and @tab='1'] -opus/document/letterText/aq/line[@index='20' and @autopsic='21'] -opus/document/letterText/aq/line[@index='20' and @autopsic='21' and @tab='1'] -opus/document/letterText/aq/line[@index='21' and @autopsic='21' and @tab='7'] -opus/document/letterText/aq/line[@index='23' and @autopsic='24'] -opus/document/letterText/aq/line[@index='24' and @autopsic='23'] -opus/document/letterText/aq/line[@index='24' and @autopsic='24' and @tab='3'] -opus/document/letterText/aq/line[@index='24' and @autopsic='24' and @type='break' and @tab='1'] -opus/document/letterText/aq/line[@index='24' and @autopsic='25' and @tab='4'] -opus/document/letterText/aq/line[@index='25' and @autopsic='25' and @tab='1'] -opus/document/letterText/aq/line[@index='25' and @autopsic='26' and @tab='4'] -opus/document/letterText/aq/line[@index='26' and @autopsic='26' and @tab='2'] -opus/document/letterText/aq/line[@index='26' and @autopsic='26' and @tab='3'] -opus/document/letterText/aq/line[@index='27' and @autopsic='24' and @tab='4'] -opus/document/letterText/aq/line[@index='27' and @autopsic='27' and @tab='4'] -opus/document/letterText/aq/line[@index='27' and @autopsic='27' and @type='break' and @tab='1'] -opus/document/letterText/aq/line[@index='27' and @autopsic='28' and @tab='1'] -opus/document/letterText/aq/line[@index='28' and @autopsic='25'] -opus/document/letterText/aq/line[@index='28' and @autopsic='28' and @tab='5'] -opus/document/letterText/aq/line[@index='28' and @autopsic='29' and @tab='4'] -opus/document/letterText/aq/line[@index='29' and @autopsic='26'] -opus/document/letterText/aq/line[@index='29' and @autopsic='29' and @tab='4'] -opus/document/letterText/aq/line[@index='29' and @autopsic='30' and @tab='4'] -opus/document/letterText/aq/line[@index='2' and @autopsic='33'] -opus/document/letterText/aq/line[@index='30' and @autopsic='27'] -opus/document/letterText/aq/line[@index='30' and @autopsic='29'] -opus/document/letterText/aq/line[@index='30' and @autopsic='30' and @tab='5'] -opus/document/letterText/aq/line[@index='30' and @autopsic='31' and @tab='4'] -opus/document/letterText/aq/line[@index='31' and @autopsic='28'] -opus/document/letterText/aq/line[@index='31' and @autopsic='31' and @tab='1'] -opus/document/letterText/aq/line[@index='31' and @autopsic='32' and @tab='4'] -opus/document/letterText/aq/line[@index='32' and @autopsic='29'] -opus/document/letterText/aq/line[@index='32' and @autopsic='32' and @type='break' and @tab='1'] -opus/document/letterText/aq/line[@index='32' and @autopsic='33' and @tab='4'] -opus/document/letterText/aq/line[@index='33' and @autopsic='33' and @tab='2'] -opus/document/letterText/aq/line[@index='33' and @autopsic='33' and @type='break' and @tab='1'] -opus/document/letterText/aq/line[@index='33' and @autopsic='34'] -opus/document/letterText/aq/line[@index='33' and @autopsic='34' and @tab='1'] -opus/document/letterText/aq/line[@index='33' and @autopsic='34' and @tab='4'] -opus/document/letterText/aq/line[@index='34' and @autopsic='35' and @tab='4'] -opus/document/letterText/aq/line[@index='34' and @autopsic='36'] -opus/document/letterText/aq/line[@index='35' and @autopsic='35' and @tab='1'] -opus/document/letterText/aq/line[@index='35' and @autopsic='35' and @tab='7'] -opus/document/letterText/aq/line[@index='35' and @autopsic='36' and @tab='4'] -opus/document/letterText/aq/line[@index='35' and @autopsic='37'] -opus/document/letterText/aq/line[@index='35' and @autopsic='66'] -opus/document/letterText/aq/line[@index='36' and @autopsic='33'] -opus/document/letterText/aq/line[@index='36' and @autopsic='34'] -opus/document/letterText/aq/line[@index='36' and @autopsic='36' and @tab='1'] -opus/document/letterText/aq/line[@index='36' and @autopsic='36' and @tab='2'] -opus/document/letterText/aq/line[@index='36' and @autopsic='37' and @tab='4'] -opus/document/letterText/aq/line[@index='37' and @autopsic='34'] -opus/document/letterText/aq/line[@index='37' and @autopsic='37' and @tab='1'] -opus/document/letterText/aq/line[@index='37' and @autopsic='37' and @tab='4'] -opus/document/letterText/aq/line[@index='37' and @autopsic='37' and @tab='7'] -opus/document/letterText/aq/line[@index='38' and @autopsic='35'] -opus/document/letterText/aq/line[@index='3' and @autopsic='3' and @tab='2'] -opus/document/letterText/aq/line[@index='3' and @autopsic='3' and @type='break' and @tab='1'] -opus/document/letterText/aq/line[@index='4' and @autopsic='4' and @tab='5'] -opus/document/letterText/aq/line[@index='5' and @autopsic='5' and @tab='2'] -opus/document/letterText/aq/line[@index='5' and @autopsic='5' and @type='break' and @tab='1'] -opus/document/letterText/aq/line[@index='5' and @autopsic='6'] -opus/document/letterText/aq/line[@index='6' and @autopsic='6' and @tab='2'] -opus/document/letterText/aq/line[@index='7' and @autopsic='7' and @tab='2'] -opus/document/letterText/aq/line[@index='7' and @autopsic='8'] -opus/document/letterText/aq/line[@index='7' and @autopsic='8' and @tab='1'] -opus/document/letterText/aq/line[@index='9' and @autopsic='8'] -opus/document/letterText/aq/line[@index='9' and @autopsic='9' and @tab='1'] -opus/document/letterText/aq/page[@index='105' and @autopsic='105'] -opus/document/letterText/aq/page[@index='108' and @autopsic='108'] -opus/document/letterText/aq/page[@index='114' and @autopsic='114'] -opus/document/letterText/aq/page[@index='127' and @autopsic='127'] -opus/document/letterText/aq/page[@index='146' and @autopsic='146'] -opus/document/letterText/aq/page[@index='149' and @autopsic='149'] -opus/document/letterText/aq/page[@index='152' and @autopsic='152'] -opus/document/letterText/aq/page[@index='155' and @autopsic='155'] -opus/document/letterText/aq/page[@index='206' and @autopsic='206'] -opus/document/letterText/aq/page[@index='235' and @autopsic='235'] -opus/document/letterText/aq/page[@index='236' and @autopsic='236'] -opus/document/letterText/aq/page[@index='237' and @autopsic='237'] -opus/document/letterText/aq/page[@index='238' and @autopsic='238'] -opus/document/letterText/aq/page[@index='239' and @autopsic='239'] -opus/document/letterText/aq/page[@index='240' and @autopsic='240'] -opus/document/letterText/aq/page[@index='241' and @autopsic='241'] -opus/document/letterText/aq/page[@index='242' and @autopsic='242'] -opus/document/letterText/aq/page[@index='283' and @autopsic='283'] -opus/document/letterText/aq/page[@index='299' and @autopsic='299'] -opus/document/letterText/aq/page[@index='300' and @autopsic='300'] -opus/document/letterText/aq/page[@index='301' and @autopsic='301'] -opus/document/letterText/aq/page[@index='302' and @autopsic='302'] -opus/document/letterText/aq/page[@index='326' and @autopsic='326'] -opus/document/letterText/aq/page[@index='337' and @autopsic='337'] -opus/document/letterText/aq/page[@index='357' and @autopsic='357'] -opus/document/letterText/aq/page[@index='378' and @autopsic='378'] -opus/document/letterText/aq/page[@index='427' and @autopsic='427'] -opus/document/letterText/aq/page[@index='462' and @autopsic='462'] -opus/document/letterText/aq/page[@index='463' and @autopsic='463'] -opus/document/letterText/aq/page[@index='482' and @autopsic='482'] -opus/document/letterText/aq/page[@index='62' and @autopsic='62'] -opus/document/letterText/aq/page[@index='65' and @autopsic='65'] -opus/document/letterText/aq/page[@index='66' and @autopsic='66'] -opus/document/letterText/aq/page[@index='70' and @autopsic='70'] -opus/document/letterText/aq/page[@index='8' and @autopsic='8'] -opus/document/letterText/aq/page[@index='91' and @autopsic='91'] -opus/document/letterText/aq/page[@index='92' and @autopsic='92'] -opus/document/letterText/aq/page[@index='99' and @autopsic='99'] -opus/document/letterText/aq/super/ul -opus/document/letterText/aq/ul/added -opus/document/letterText/aq/ul/del -opus/document/letterText/aq/ul/line[@index='13' and @autopsic='13'] -opus/document/letterText/aq/ul/line[@index='19' and @autopsic='19'] -opus/document/letterText/aq/ul/line[@index='23' and @autopsic='23'] -opus/document/letterText/aq/ul/line[@index='26' and @autopsic='26'] -opus/document/letterText/aq/ul/line[@index='2' and @autopsic='2'] -opus/document/letterText/aq/ul/line[@index='3' and @autopsic='3'] -opus/document/letterText/aq/ul/line[@index='8' and @autopsic='8'] -opus/document/letterText/aq/ul/line[@index='9' and @autopsic='9'] -opus/document/letterText/aq/ul/super -opus/document/letterText/datum/align/added -opus/document/letterText/datum/align/datum -opus/document/letterText/datum/align/del -opus/document/letterText/datum/aq/line[@index='12' and @autopsic='12'] -opus/document/letterText/datum/edit[@ref='226'] -opus/document/letterText/datum/edit[@ref='2788'] -opus/document/letterText/datum/edit[@ref='2808'] -opus/document/letterText/datum/edit[@ref='3226'] -opus/document/letterText/datum/edit[@ref='4344'] -opus/document/letterText/datum/edit[@ref='4507'] -opus/document/letterText/datum/edit[@ref='4592'] -opus/document/letterText/datum/edit[@ref='4599'] -opus/document/letterText/datum/edit[@ref='4609'] -opus/document/letterText/datum/edit[@ref='4652'] -opus/document/letterText/datum/edit[@ref='5785'] -opus/document/letterText/datum/edit/super -opus/document/letterText/datum/edit/ul -opus/document/letterText/datum/gr -opus/document/letterText/datum/hand[@ref='-1'] -opus/document/letterText/datum/line[@index='14' and @autopsic='14'] -opus/document/letterText/datum/line[@index='21' and @autopsic='21'] -opus/document/letterText/datum/line[@index='24' and @autopsic='24'] -opus/document/letterText/datum/line[@index='24' and @autopsic='24' and @tab='4'] -opus/document/letterText/datum/line[@index='25' and @autopsic='25'] -opus/document/letterText/datum/line[@index='25' and @autopsic='25' and @tab='4'] -opus/document/letterText/datum/line[@index='26' and @autopsic='26' and @tab='4'] -opus/document/letterText/datum/line[@index='27' and @autopsic='27' and @tab='4'] -opus/document/letterText/datum/line[@index='28' and @autopsic='28'] -opus/document/letterText/datum/line[@index='28' and @autopsic='28' and @tab='2'] -opus/document/letterText/datum/line[@index='31' and @autopsic='31'] -opus/document/letterText/datum/line[@index='32' and @autopsic='32' and @tab='7'] -opus/document/letterText/datum/line[@index='5' and @autopsic='5' and @tab='1'] -opus/document/letterText/datum/line[@index='5' and @autopsic='5' and @tab='3'] -opus/document/letterText/datum/super/aq -opus/document/letterText/del/added -opus/document/letterText/del/aq/del -opus/document/letterText/del/aq/line[@index='19' and @autopsic='19'] -opus/document/letterText/del/aq/line[@index='30' and @autopsic='30'] -opus/document/letterText/del/aq/line[@index='6' and @autopsic='6'] -opus/document/letterText/del/del/line[@index='13' and @autopsic='13'] -opus/document/letterText/del/del/line[@index='22' and @autopsic='22'] -opus/document/letterText/del/del/line[@index='29' and @autopsic='29'] -opus/document/letterText/del/del/line[@index='4' and @autopsic='4'] -opus/document/letterText/del/del/line[@index='5' and @autopsic='5'] -opus/document/letterText/del/del/nr -opus/document/letterText/del/edit/nr -opus/document/letterText/del/edit[@ref='1495'] -opus/document/letterText/del/edit[@ref='2847'] -opus/document/letterText/del/edit[@ref='4367'] -opus/document/letterText/del/edit[@ref='4369'] -opus/document/letterText/del/edit[@ref='4373'] -opus/document/letterText/del/edit[@ref='4374'] -opus/document/letterText/del/edit[@ref='4375'] -opus/document/letterText/del/edit[@ref='4376'] -opus/document/letterText/del/edit[@ref='4377'] -opus/document/letterText/del/edit[@ref='4378'] -opus/document/letterText/del/edit[@ref='4379'] -opus/document/letterText/del/edit[@ref='4380'] -opus/document/letterText/del/edit[@ref='4381'] -opus/document/letterText/del/edit[@ref='4382'] -opus/document/letterText/del/edit[@ref='4383'] -opus/document/letterText/del/gr -opus/document/letterText/del/gr/edit[@ref='4265'] -opus/document/letterText/del/gr/line[@index='5' and @autopsic='5'] -opus/document/letterText/del/line[@index='10' and @autopsic='10' and @tab='2'] -opus/document/letterText/del/line[@index='12' and @autopsic='12' and @tab='1'] -opus/document/letterText/del/line[@index='15' and @autopsic='16'] -opus/document/letterText/del/line[@index='17' and @autopsic='17' and @tab='1'] -opus/document/letterText/del/line[@index='17' and @autopsic='18'] -opus/document/letterText/del/line[@index='19' and @autopsic='20'] -opus/document/letterText/del/line[@index='21' and @autopsic='22'] -opus/document/letterText/del/line[@index='22' and @autopsic='22' and @tab='1'] -opus/document/letterText/del/line[@index='24' and @autopsic='24' and @tab='1'] -opus/document/letterText/del/line[@index='24' and @autopsic='25'] -opus/document/letterText/del/line[@index='26' and @autopsic='27'] -opus/document/letterText/del/line[@index='27' and @autopsic='19'] -opus/document/letterText/del/line[@index='29' and @autopsic='30'] -opus/document/letterText/del/line[@index='31' and @autopsic='32'] -opus/document/letterText/del/line[@index='34' and @autopsic='26'] -opus/document/letterText/del/line[@index='35' and @autopsic='27'] -opus/document/letterText/del/line[@index='36' and @autopsic='28'] -opus/document/letterText/del/line[@index='39' and @autopsic='31'] -opus/document/letterText/del/page[@index='196' and @autopsic='196'] -opus/document/letterText/del/page[@index='351' and @autopsic='351'] -opus/document/letterText/del/super -opus/document/letterText/del/super/aq -opus/document/letterText/del/ul/line[@index='14' and @autopsic='14'] -opus/document/letterText/dul/line[@index='14' and @autopsic='14'] -opus/document/letterText/dul/line[@index='18' and @autopsic='18'] -opus/document/letterText/dul/line[@index='20' and @autopsic='20'] -opus/document/letterText/dul/line[@index='21' and @autopsic='21'] -opus/document/letterText/dul/line[@index='23' and @autopsic='23'] -opus/document/letterText/dul/line[@index='2' and @autopsic='2'] -opus/document/letterText/dul/line[@index='37' and @autopsic='37'] -opus/document/letterText/dul/line[@index='7' and @autopsic='7'] -opus/document/letterText/dul/super -opus/document/letterText/edit/added/nr -opus/document/letterText/edit/added/ul -opus/document/letterText/edit/address/hand[@ref='23'] -opus/document/letterText/edit/address/hand/ul -opus/document/letterText/edit/address/line[@index='28' and @autopsic='24'] -opus/document/letterText/edit/address/ul/aq -opus/document/letterText/edit/align/aq/ul -opus/document/letterText/edit/align/datum/aq -opus/document/letterText/edit/align/edit/aq -opus/document/letterText/edit/align/edit[@ref='6211'] -opus/document/letterText/edit/anchor[@ref='1'] -opus/document/letterText/edit/aq/dul -opus/document/letterText/edit/aq/edit[@ref='1683'] -opus/document/letterText/edit/aq/line[@index='10' and @autopsic='10'] -opus/document/letterText/edit/aq/line[@index='27' and @autopsic='27'] -opus/document/letterText/edit/aq/line[@index='28' and @autopsic='28'] -opus/document/letterText/edit/aq/line[@index='28' and @autopsic='28' and @tab='4'] -opus/document/letterText/edit/aq/line[@index='34' and @autopsic='34'] -opus/document/letterText/edit/aq/line[@index='9' and @autopsic='9'] -opus/document/letterText/edit/aq/ul/del -opus/document/letterText/edit/aq/ul/line[@index='13' and @autopsic='13'] -opus/document/letterText/edit/del/aq/del -opus/document/letterText/edit/del/del/line[@index='35' and @autopsic='35'] -opus/document/letterText/edit/del/line[@index='14' and @autopsic='10'] -opus/document/letterText/edit/del/line[@index='16' and @autopsic='10'] -opus/document/letterText/edit/del/line[@index='1' and @autopsic='1'] -opus/document/letterText/edit/del/line[@index='20' and @autopsic='20'] -opus/document/letterText/edit/del/line[@index='31' and @autopsic='31'] -opus/document/letterText/edit/del/line[@index='34' and @autopsic='34'] -opus/document/letterText/edit/del/line[@index='36' and @autopsic='36'] -opus/document/letterText/edit/del/line[@index='37' and @autopsic='37'] -opus/document/letterText/edit/del/line[@index='3' and @autopsic='3'] -opus/document/letterText/edit/del/line[@index='4' and @autopsic='4'] -opus/document/letterText/edit/del/line[@index='6' and @autopsic='6'] -opus/document/letterText/edit/del/line[@index='7' and @autopsic='7'] -opus/document/letterText/edit/del/line[@index='8' and @autopsic='8'] -opus/document/letterText/edit/del/line[@index='9' and @autopsic='9'] -opus/document/letterText/edit/del/page[@index='472' and @autopsic='472'] -opus/document/letterText/edit/edit/aq/del -opus/document/letterText/edit/edit/del/aq -opus/document/letterText/edit/edit/edit/aq -opus/document/letterText/edit/edit/edit[@ref='365'] -opus/document/letterText/edit/edit/edit[@ref='4836'] -opus/document/letterText/edit/edit/edit[@ref='6051'] -opus/document/letterText/edit/edit/line[@index='15' and @autopsic='15'] -opus/document/letterText/edit/edit/line[@index='16' and @autopsic='16'] -opus/document/letterText/edit/edit/line[@index='17' and @autopsic='17'] -opus/document/letterText/edit/edit/line[@index='18' and @autopsic='18'] -opus/document/letterText/edit/edit/line[@index='1' and @autopsic='1'] -opus/document/letterText/edit/edit/line[@index='20' and @autopsic='20'] -opus/document/letterText/edit/edit/line[@index='21' and @autopsic='21'] -opus/document/letterText/edit/edit/line[@index='22' and @autopsic='22'] -opus/document/letterText/edit/edit/line[@index='23' and @autopsic='23'] -opus/document/letterText/edit/edit/line[@index='24' and @autopsic='24'] -opus/document/letterText/edit/edit/line[@index='25' and @autopsic='25'] -opus/document/letterText/edit/edit/line[@index='26' and @autopsic='26'] -opus/document/letterText/edit/edit/line[@index='2' and @autopsic='2'] -opus/document/letterText/edit/edit/line[@index='31' and @autopsic='31'] -opus/document/letterText/edit/edit/line[@index='37' and @autopsic='37'] -opus/document/letterText/edit/edit/line[@index='6' and @autopsic='6'] -opus/document/letterText/edit/edit/line[@index='8' and @autopsic='8'] -opus/document/letterText/edit/edit/line[@index='9' and @autopsic='9'] -opus/document/letterText/edit/edit/page[@index='272' and @autopsic='272'] -opus/document/letterText/edit/edit[@ref='1682'] -opus/document/letterText/edit/edit[@ref='324'] -opus/document/letterText/edit/edit[@ref='325'] -opus/document/letterText/edit/edit[@ref='363'] -opus/document/letterText/edit/edit[@ref='364'] -opus/document/letterText/edit/edit[@ref='366'] -opus/document/letterText/edit/edit[@ref='367'] -opus/document/letterText/edit/edit[@ref='3864'] -opus/document/letterText/edit/edit[@ref='3865'] -opus/document/letterText/edit/edit[@ref='4234'] -opus/document/letterText/edit/edit[@ref='4833'] -opus/document/letterText/edit/edit[@ref='4834'] -opus/document/letterText/edit/edit[@ref='4835'] -opus/document/letterText/edit/edit[@ref='4842'] -opus/document/letterText/edit/edit[@ref='4843'] -opus/document/letterText/edit/edit[@ref='4844'] -opus/document/letterText/edit/edit[@ref='4845'] -opus/document/letterText/edit/edit[@ref='4846'] -opus/document/letterText/edit/edit[@ref='4857'] -opus/document/letterText/edit/edit[@ref='487'] -opus/document/letterText/edit/edit[@ref='4870'] -opus/document/letterText/edit/edit[@ref='4882'] -opus/document/letterText/edit/edit[@ref='4943'] -opus/document/letterText/edit/edit[@ref='4944'] -opus/document/letterText/edit/edit[@ref='4945'] -opus/document/letterText/edit/edit[@ref='5049'] -opus/document/letterText/edit/edit[@ref='5078'] -opus/document/letterText/edit/edit[@ref='5080'] -opus/document/letterText/edit/edit[@ref='5085'] -opus/document/letterText/edit/edit[@ref='5098'] -opus/document/letterText/edit/edit[@ref='5108'] -opus/document/letterText/edit/edit[@ref='5109'] -opus/document/letterText/edit/edit[@ref='5128'] -opus/document/letterText/edit/edit[@ref='5132'] -opus/document/letterText/edit/edit[@ref='5135'] -opus/document/letterText/edit/edit[@ref='5137'] -opus/document/letterText/edit/edit[@ref='5898'] -opus/document/letterText/edit/edit[@ref='5899'] -opus/document/letterText/edit/edit[@ref='5900'] -opus/document/letterText/edit/edit[@ref='6048'] -opus/document/letterText/edit/edit[@ref='6049'] -opus/document/letterText/edit/edit[@ref='6050'] -opus/document/letterText/edit/edit[@ref='6052'] -opus/document/letterText/edit/edit[@ref='6078'] -opus/document/letterText/edit/edit[@ref='6079'] -opus/document/letterText/edit/edit[@ref='6142'] -opus/document/letterText/edit/edit[@ref='6158'] -opus/document/letterText/edit/edit[@ref='6159'] -opus/document/letterText/edit/edit[@ref='6164'] -opus/document/letterText/edit/edit[@ref='6197'] -opus/document/letterText/edit/edit[@ref='6208'] -opus/document/letterText/edit/edit[@ref='6223'] -opus/document/letterText/edit/edit[@ref='6224'] -opus/document/letterText/edit/edit[@ref='6239'] -opus/document/letterText/edit/edit[@ref='6242'] -opus/document/letterText/edit/edit[@ref='6249'] -opus/document/letterText/edit/edit[@ref='6250'] -opus/document/letterText/edit/edit[@ref='6251'] -opus/document/letterText/edit/edit[@ref='6252'] -opus/document/letterText/edit/edit[@ref='6254'] -opus/document/letterText/edit/edit[@ref='6268'] -opus/document/letterText/edit/edit[@ref='6269'] -opus/document/letterText/edit/edit[@ref='6270'] -opus/document/letterText/edit/edit[@ref='6271'] -opus/document/letterText/edit/edit[@ref='6309'] -opus/document/letterText/edit/edit[@ref='6342'] -opus/document/letterText/edit/edit[@ref='6343'] -opus/document/letterText/edit/edit[@ref='6349'] -opus/document/letterText/edit/edit[@ref='6354'] -opus/document/letterText/edit/edit[@ref='6364'] -opus/document/letterText/edit/edit[@ref='6365'] -opus/document/letterText/edit/edit[@ref='6366'] -opus/document/letterText/edit/edit[@ref='6396'] -opus/document/letterText/edit/edit[@ref='6422'] -opus/document/letterText/edit/edit[@ref='6440'] -opus/document/letterText/edit/edit[@ref='6441'] -opus/document/letterText/edit/edit[@ref='6442'] -opus/document/letterText/edit/edit[@ref='6449'] -opus/document/letterText/edit/edit[@ref='6450'] -opus/document/letterText/edit/edit[@ref='6451'] -opus/document/letterText/edit/edit[@ref='6461'] -opus/document/letterText/edit/edit[@ref='6462'] -opus/document/letterText/edit/edit[@ref='6463'] -opus/document/letterText/edit/edit[@ref='6475'] -opus/document/letterText/edit/edit[@ref='6497'] -opus/document/letterText/edit/edit[@ref='6498'] -opus/document/letterText/edit/edit[@ref='6499'] -opus/document/letterText/edit/edit[@ref='6502'] -opus/document/letterText/edit/edit[@ref='6516'] -opus/document/letterText/edit/edit[@ref='6517'] -opus/document/letterText/edit/edit[@ref='6518'] -opus/document/letterText/edit/edit[@ref='6519'] -opus/document/letterText/edit/edit[@ref='6525'] -opus/document/letterText/edit/edit[@ref='6565'] -opus/document/letterText/edit/edit[@ref='6579'] -opus/document/letterText/edit/edit[@ref='6594'] -opus/document/letterText/edit/edit[@ref='6595'] -opus/document/letterText/edit/edit[@ref='6596'] -opus/document/letterText/edit/edit[@ref='6600'] -opus/document/letterText/edit/edit[@ref='6604'] -opus/document/letterText/edit/edit[@ref='6605'] -opus/document/letterText/edit/edit[@ref='6606'] -opus/document/letterText/edit/edit[@ref='6620'] -opus/document/letterText/edit/edit[@ref='6621'] -opus/document/letterText/edit/edit[@ref='6622'] -opus/document/letterText/edit/edit[@ref='6640'] -opus/document/letterText/edit/edit[@ref='6641'] -opus/document/letterText/edit/edit[@ref='6642'] -opus/document/letterText/edit/edit[@ref='6645'] -opus/document/letterText/edit/edit[@ref='6646'] -opus/document/letterText/edit/edit[@ref='6673'] -opus/document/letterText/edit/edit[@ref='6674'] -opus/document/letterText/edit/edit[@ref='6677'] -opus/document/letterText/edit/edit[@ref='6678'] -opus/document/letterText/edit/edit[@ref='6679'] -opus/document/letterText/edit/edit[@ref='6686'] -opus/document/letterText/edit/edit[@ref='6687'] -opus/document/letterText/edit/edit[@ref='6698'] -opus/document/letterText/edit/edit[@ref='6700'] -opus/document/letterText/edit/edit[@ref='6702'] -opus/document/letterText/edit/edit[@ref='6728'] -opus/document/letterText/edit/edit[@ref='6729'] -opus/document/letterText/edit/edit[@ref='6734'] -opus/document/letterText/edit/edit[@ref='6739'] -opus/document/letterText/edit/edit[@ref='6741'] -opus/document/letterText/edit/edit[@ref='6743'] -opus/document/letterText/edit/edit[@ref='6792'] -opus/document/letterText/edit/edit[@ref='6794'] -opus/document/letterText/edit/edit[@ref='6798'] -opus/document/letterText/edit/edit[@ref='6799'] -opus/document/letterText/edit/edit[@ref='6804'] -opus/document/letterText/edit/edit/super -opus/document/letterText/edit/gr/del/nr -opus/document/letterText/edit/hand/align/aq -opus/document/letterText/edit/hand/aq/del -opus/document/letterText/edit/hand/aq/del/ul -opus/document/letterText/edit/hand/aq/nr -opus/document/letterText/edit/hand/del/aq -opus/document/letterText/edit/hand/line[@index='12' and @autopsic='12'] -opus/document/letterText/edit/hand/line[@index='12' and @autopsic='7'] -opus/document/letterText/edit/hand/line[@index='13' and @autopsic='13'] -opus/document/letterText/edit/hand/line[@index='13' and @autopsic='7'] -opus/document/letterText/edit/hand/line[@index='14' and @autopsic='11' and @tab='1'] -opus/document/letterText/edit/hand/line[@index='14' and @autopsic='14'] -opus/document/letterText/edit/hand/line[@index='14' and @autopsic='7'] -opus/document/letterText/edit/hand/line[@index='15' and @autopsic='11' and @tab='1'] -opus/document/letterText/edit/hand/line[@index='15' and @autopsic='15' and @tab='1'] -opus/document/letterText/edit/hand/line[@index='16' and @autopsic='11' and @tab='1'] -opus/document/letterText/edit/hand/line[@index='16' and @autopsic='16' and @tab='1'] -opus/document/letterText/edit/hand/line[@index='17' and @autopsic='11' and @tab='1'] -opus/document/letterText/edit/hand/line[@index='30' and @autopsic='25'] -opus/document/letterText/edit/hand/line[@index='30' and @autopsic='25' and @tab='1'] -opus/document/letterText/edit/hand/line[@index='30' and @autopsic='28' and @tab='1'] -opus/document/letterText/edit/hand/line[@index='31' and @autopsic='25'] -opus/document/letterText/edit/hand/line[@index='31' and @autopsic='25' and @tab='1'] -opus/document/letterText/edit/hand/line[@index='31' and @autopsic='29' and @tab='1'] -opus/document/letterText/edit/hand/line[@index='32' and @autopsic='25'] -opus/document/letterText/edit/hand/line[@index='32' and @autopsic='25' and @tab='1'] -opus/document/letterText/edit/hand/line[@index='33' and @autopsic='25' and @tab='1'] -opus/document/letterText/edit/hand/line[@index='34' and @autopsic='25' and @tab='1'] -opus/document/letterText/edit/hand/line[@index='5' and @autopsic='3' and @tab='1'] -opus/document/letterText/edit/hand/line[@index='7' and @autopsic='7'] -opus/document/letterText/edit/hand[@ref='15'] -opus/document/letterText/edit/hand[@ref='19'] -opus/document/letterText/edit/hand[@ref='23'] -opus/document/letterText/edit/hand[@ref='24'] -opus/document/letterText/edit/hand[@ref='27'] -opus/document/letterText/edit/hand[@ref='28'] -opus/document/letterText/edit/hand[@ref='30'] -opus/document/letterText/edit/hand[@ref='32'] -opus/document/letterText/edit/hand[@ref='5'] -opus/document/letterText/edit/hand[@ref='7'] -opus/document/letterText/edit/hand/super -opus/document/letterText/edit/hand/ul -opus/document/letterText/edit/line[@index='10' and @autopsic='10' and @tab='2'] -opus/document/letterText/edit/line[@index='12' and @autopsic='10'] -opus/document/letterText/edit/line[@index='15' and @autopsic='10'] -opus/document/letterText/edit/line[@index='16' and @autopsic='16' and @tab='1'] -opus/document/letterText/edit/line[@index='17' and @autopsic='10'] -opus/document/letterText/edit/line[@index='18' and @autopsic='10'] -opus/document/letterText/edit/line[@index='1' and @autopsic='1' and @tab='1'] -opus/document/letterText/edit/line[@index='22' and @autopsic='19' and @tab='1'] -opus/document/letterText/edit/line[@index='22' and @autopsic='23'] -opus/document/letterText/edit/line[@index='23' and @autopsic='19' and @tab='2'] -opus/document/letterText/edit/line[@index='23' and @autopsic='20' and @tab='1'] -opus/document/letterText/edit/line[@index='24' and @autopsic='20' and @tab='1'] -opus/document/letterText/edit/line[@index='24' and @autopsic='24' and @tab='1'] -opus/document/letterText/edit/line[@index='24' and @autopsic='26'] -opus/document/letterText/edit/line[@index='25' and @autopsic='23'] -opus/document/letterText/edit/line[@index='25' and @autopsic='26'] -opus/document/letterText/edit/line[@index='26' and @autopsic='22' and @tab='1'] -opus/document/letterText/edit/line[@index='26' and @autopsic='23'] -opus/document/letterText/edit/line[@index='27' and @autopsic='23' and @tab='1'] -opus/document/letterText/edit/line[@index='27' and @autopsic='27' and @tab='1'] -opus/document/letterText/edit/line[@index='28' and @autopsic='25' and @tab='1'] -opus/document/letterText/edit/line[@index='29' and @autopsic='25'] -opus/document/letterText/edit/line[@index='29' and @autopsic='27' and @tab='1'] -opus/document/letterText/edit/line[@index='29' and @autopsic='30'] -opus/document/letterText/edit/line[@index='2' and @autopsic='2' and @tab='2'] -opus/document/letterText/edit/line[@index='2' and @autopsic='2' and @tab='4'] -opus/document/letterText/edit/line[@index='30' and @autopsic='27'] -opus/document/letterText/edit/line[@index='30' and @autopsic='27' and @tab='1'] -opus/document/letterText/edit/line[@index='30' and @autopsic='28' and @tab='1'] -opus/document/letterText/edit/line[@index='30' and @autopsic='31'] -opus/document/letterText/edit/line[@index='31' and @autopsic='27' and @tab='1'] -opus/document/letterText/edit/line[@index='31' and @autopsic='30'] -opus/document/letterText/edit/line[@index='31' and @autopsic='31' and @tab='4'] -opus/document/letterText/edit/line[@index='31' and @autopsic='33'] -opus/document/letterText/edit/line[@index='32' and @autopsic='32' and @tab='1'] -opus/document/letterText/edit/line[@index='33' and @autopsic='30' and @tab='1'] -opus/document/letterText/edit/line[@index='34' and @autopsic='30' and @tab='1'] -opus/document/letterText/edit/line[@index='34' and @autopsic='34' and @tab='1'] -opus/document/letterText/edit/line[@index='35' and @autopsic='35' and @tab='1'] -opus/document/letterText/edit/line[@index='35' and @autopsic='35' and @tab='2'] -opus/document/letterText/edit/line[@index='37' and @autopsic='36' and @tab='1'] -opus/document/letterText/edit/line[@index='37' and @autopsic='37' and @tab='1'] -opus/document/letterText/edit/line[@index='3' and @autopsic='3' and @tab='4'] -opus/document/letterText/edit/line[@index='40' and @autopsic='40' and @tab='1'] -opus/document/letterText/edit/line[@index='41' and @autopsic='41' and @tab='1'] -opus/document/letterText/edit/line[@index='4' and @autopsic='4' and @tab='4'] -opus/document/letterText/edit/line[@index='5' and @autopsic='5' and @tab='2'] -opus/document/letterText/edit/line[@index='5' and @autopsic='5' and @tab='4'] -opus/document/letterText/edit/line[@index='6' and @autopsic='3'] -opus/document/letterText/edit/line[@index='6' and @autopsic='6' and @tab='1'] -opus/document/letterText/edit/line[@index='6' and @autopsic='6' and @tab='4'] -opus/document/letterText/edit/line[@index='7' and @autopsic='7' and @tab='1'] -opus/document/letterText/edit/line[@index='9' and @autopsic='9' and @tab='1'] -opus/document/letterText/edit/nr/aq/del -opus/document/letterText/edit/nr/line[@index='27' and @autopsic='27'] -opus/document/letterText/edit/nr/line[@index='29' and @autopsic='29'] -opus/document/letterText/edit/page[@index='108' and @autopsic='108'] -opus/document/letterText/edit/page[@index='111' and @autopsic='111'] -opus/document/letterText/edit/page[@index='120' and @autopsic='120'] -opus/document/letterText/edit/page[@index='137' and @autopsic='137'] -opus/document/letterText/edit/page[@index='161' and @autopsic='161'] -opus/document/letterText/edit/page[@index='162' and @autopsic='162'] -opus/document/letterText/edit/page[@index='163' and @autopsic='163'] -opus/document/letterText/edit/page[@index='164' and @autopsic='164'] -opus/document/letterText/edit/page[@index='189' and @autopsic='189'] -opus/document/letterText/edit/page[@index='200' and @autopsic='200'] -opus/document/letterText/edit/page[@index='203' and @autopsic='203'] -opus/document/letterText/edit/page[@index='225' and @autopsic='225'] -opus/document/letterText/edit/page[@index='230' and @autopsic='230'] -opus/document/letterText/edit/page[@index='231' and @autopsic='231'] -opus/document/letterText/edit/page[@index='248' and @autopsic='248'] -opus/document/letterText/edit/page[@index='254' and @autopsic='254'] -opus/document/letterText/edit/page[@index='256' and @autopsic='256'] -opus/document/letterText/edit/page[@index='257' and @autopsic='257'] -opus/document/letterText/edit/page[@index='258' and @autopsic='258'] -opus/document/letterText/edit/page[@index='276' and @autopsic='276'] -opus/document/letterText/edit/page[@index='278' and @autopsic='278'] -opus/document/letterText/edit/page[@index='287' and @autopsic='287'] -opus/document/letterText/edit/page[@index='296' and @autopsic='296'] -opus/document/letterText/edit/page[@index='311' and @autopsic='311'] -opus/document/letterText/edit/page[@index='317' and @autopsic='317'] -opus/document/letterText/edit/page[@index='319' and @autopsic='319'] -opus/document/letterText/edit/page[@index='327' and @autopsic='327'] -opus/document/letterText/edit/page[@index='329' and @autopsic='329'] -opus/document/letterText/edit/page[@index='36' and @autopsic='36'] -opus/document/letterText/edit/page[@index='427' and @autopsic='427'] -opus/document/letterText/edit/page[@index='93' and @autopsic='93'] -opus/document/letterText/edit[@ref='1'] -opus/document/letterText/edit[@ref='10'] -opus/document/letterText/edit[@ref='100'] -opus/document/letterText/edit[@ref='1000'] -opus/document/letterText/edit[@ref='1001'] -opus/document/letterText/edit[@ref='1002'] -opus/document/letterText/edit[@ref='1003'] -opus/document/letterText/edit[@ref='1004'] -opus/document/letterText/edit[@ref='1005'] -opus/document/letterText/edit[@ref='1006'] -opus/document/letterText/edit[@ref='1007'] -opus/document/letterText/edit[@ref='1008'] -opus/document/letterText/edit[@ref='1009'] -opus/document/letterText/edit[@ref='101'] -opus/document/letterText/edit[@ref='1010'] -opus/document/letterText/edit[@ref='1011'] -opus/document/letterText/edit[@ref='1012'] -opus/document/letterText/edit[@ref='1013'] -opus/document/letterText/edit[@ref='1014'] -opus/document/letterText/edit[@ref='1015'] -opus/document/letterText/edit[@ref='1016'] -opus/document/letterText/edit[@ref='1017'] -opus/document/letterText/edit[@ref='1018'] -opus/document/letterText/edit[@ref='1019'] -opus/document/letterText/edit[@ref='102'] -opus/document/letterText/edit[@ref='1020'] -opus/document/letterText/edit[@ref='1021'] -opus/document/letterText/edit[@ref='1022'] -opus/document/letterText/edit[@ref='1023'] -opus/document/letterText/edit[@ref='1025'] -opus/document/letterText/edit[@ref='1026'] -opus/document/letterText/edit[@ref='1027'] -opus/document/letterText/edit[@ref='1028'] -opus/document/letterText/edit[@ref='103'] -opus/document/letterText/edit[@ref='1030'] -opus/document/letterText/edit[@ref='1031'] -opus/document/letterText/edit[@ref='1032'] -opus/document/letterText/edit[@ref='1033'] -opus/document/letterText/edit[@ref='1034'] -opus/document/letterText/edit[@ref='1035'] -opus/document/letterText/edit[@ref='1036'] -opus/document/letterText/edit[@ref='1037'] -opus/document/letterText/edit[@ref='1038'] -opus/document/letterText/edit[@ref='1039'] -opus/document/letterText/edit[@ref='104'] -opus/document/letterText/edit[@ref='1040'] -opus/document/letterText/edit[@ref='1045'] -opus/document/letterText/edit[@ref='1046'] -opus/document/letterText/edit[@ref='1047'] -opus/document/letterText/edit[@ref='1048'] -opus/document/letterText/edit[@ref='1049'] -opus/document/letterText/edit[@ref='105'] -opus/document/letterText/edit[@ref='1050'] -opus/document/letterText/edit[@ref='1051'] -opus/document/letterText/edit[@ref='1052'] -opus/document/letterText/edit[@ref='1053'] -opus/document/letterText/edit[@ref='1054'] -opus/document/letterText/edit[@ref='1055'] -opus/document/letterText/edit[@ref='1056'] -opus/document/letterText/edit[@ref='1057'] -opus/document/letterText/edit[@ref='1058'] -opus/document/letterText/edit[@ref='1059'] -opus/document/letterText/edit[@ref='1060'] -opus/document/letterText/edit[@ref='1061'] -opus/document/letterText/edit[@ref='1062'] -opus/document/letterText/edit[@ref='1063'] -opus/document/letterText/edit[@ref='1064'] -opus/document/letterText/edit[@ref='1065'] -opus/document/letterText/edit[@ref='1066'] -opus/document/letterText/edit[@ref='1067'] -opus/document/letterText/edit[@ref='1068'] -opus/document/letterText/edit[@ref='1069'] -opus/document/letterText/edit[@ref='107'] -opus/document/letterText/edit[@ref='1070'] -opus/document/letterText/edit[@ref='1071'] -opus/document/letterText/edit[@ref='1074'] -opus/document/letterText/edit[@ref='1075'] -opus/document/letterText/edit[@ref='1076'] -opus/document/letterText/edit[@ref='1077'] -opus/document/letterText/edit[@ref='1078'] -opus/document/letterText/edit[@ref='1079'] -opus/document/letterText/edit[@ref='108'] -opus/document/letterText/edit[@ref='1080'] -opus/document/letterText/edit[@ref='1081'] -opus/document/letterText/edit[@ref='1082'] -opus/document/letterText/edit[@ref='1083'] -opus/document/letterText/edit[@ref='1084'] -opus/document/letterText/edit[@ref='1085'] -opus/document/letterText/edit[@ref='1086'] -opus/document/letterText/edit[@ref='1087'] -opus/document/letterText/edit[@ref='1088'] -opus/document/letterText/edit[@ref='1089'] -opus/document/letterText/edit[@ref='109'] -opus/document/letterText/edit[@ref='1090'] -opus/document/letterText/edit[@ref='1091'] -opus/document/letterText/edit[@ref='1092'] -opus/document/letterText/edit[@ref='1093'] -opus/document/letterText/edit[@ref='1094'] -opus/document/letterText/edit[@ref='1095'] -opus/document/letterText/edit[@ref='1096'] -opus/document/letterText/edit[@ref='1097'] -opus/document/letterText/edit[@ref='1098'] -opus/document/letterText/edit[@ref='1099'] -opus/document/letterText/edit[@ref='110'] -opus/document/letterText/edit[@ref='1100'] -opus/document/letterText/edit[@ref='1101'] -opus/document/letterText/edit[@ref='1102'] -opus/document/letterText/edit[@ref='1103'] -opus/document/letterText/edit[@ref='1104'] -opus/document/letterText/edit[@ref='1105'] -opus/document/letterText/edit[@ref='1106'] -opus/document/letterText/edit[@ref='1107'] -opus/document/letterText/edit[@ref='1108'] -opus/document/letterText/edit[@ref='1109'] -opus/document/letterText/edit[@ref='1110'] -opus/document/letterText/edit[@ref='1111'] -opus/document/letterText/edit[@ref='1112'] -opus/document/letterText/edit[@ref='1113'] -opus/document/letterText/edit[@ref='1114'] -opus/document/letterText/edit[@ref='1115'] -opus/document/letterText/edit[@ref='112'] -opus/document/letterText/edit[@ref='1120'] -opus/document/letterText/edit[@ref='1124'] -opus/document/letterText/edit[@ref='1125'] -opus/document/letterText/edit[@ref='1126'] -opus/document/letterText/edit[@ref='1127'] -opus/document/letterText/edit[@ref='1128'] -opus/document/letterText/edit[@ref='113'] -opus/document/letterText/edit[@ref='1130'] -opus/document/letterText/edit[@ref='1131'] -opus/document/letterText/edit[@ref='1132'] -opus/document/letterText/edit[@ref='1133'] -opus/document/letterText/edit[@ref='1134'] -opus/document/letterText/edit[@ref='1135'] -opus/document/letterText/edit[@ref='1136'] -opus/document/letterText/edit[@ref='1137'] -opus/document/letterText/edit[@ref='1138'] -opus/document/letterText/edit[@ref='1139'] -opus/document/letterText/edit[@ref='114'] -opus/document/letterText/edit[@ref='1140'] -opus/document/letterText/edit[@ref='1141'] -opus/document/letterText/edit[@ref='1142'] -opus/document/letterText/edit[@ref='1143'] -opus/document/letterText/edit[@ref='1144'] -opus/document/letterText/edit[@ref='1145'] -opus/document/letterText/edit[@ref='1146'] -opus/document/letterText/edit[@ref='1147'] -opus/document/letterText/edit[@ref='1149'] -opus/document/letterText/edit[@ref='115'] -opus/document/letterText/edit[@ref='1150'] -opus/document/letterText/edit[@ref='1151'] -opus/document/letterText/edit[@ref='1152'] -opus/document/letterText/edit[@ref='1153'] -opus/document/letterText/edit[@ref='1154'] -opus/document/letterText/edit[@ref='1155'] -opus/document/letterText/edit[@ref='1156'] -opus/document/letterText/edit[@ref='1157'] -opus/document/letterText/edit[@ref='1158'] -opus/document/letterText/edit[@ref='1159'] -opus/document/letterText/edit[@ref='116'] -opus/document/letterText/edit[@ref='1160'] -opus/document/letterText/edit[@ref='1161'] -opus/document/letterText/edit[@ref='1162'] -opus/document/letterText/edit[@ref='1163'] -opus/document/letterText/edit[@ref='1164'] -opus/document/letterText/edit[@ref='1165'] -opus/document/letterText/edit[@ref='1166'] -opus/document/letterText/edit[@ref='1167'] -opus/document/letterText/edit[@ref='1168'] -opus/document/letterText/edit[@ref='1169'] -opus/document/letterText/edit[@ref='117'] -opus/document/letterText/edit[@ref='1170'] -opus/document/letterText/edit[@ref='1171'] -opus/document/letterText/edit[@ref='1172'] -opus/document/letterText/edit[@ref='1173'] -opus/document/letterText/edit[@ref='1174'] -opus/document/letterText/edit[@ref='1175'] -opus/document/letterText/edit[@ref='1176'] -opus/document/letterText/edit[@ref='1177'] -opus/document/letterText/edit[@ref='1178'] -opus/document/letterText/edit[@ref='1179'] -opus/document/letterText/edit[@ref='118'] -opus/document/letterText/edit[@ref='1180'] -opus/document/letterText/edit[@ref='1181'] -opus/document/letterText/edit[@ref='1182'] -opus/document/letterText/edit[@ref='1183'] -opus/document/letterText/edit[@ref='1184'] -opus/document/letterText/edit[@ref='1185'] -opus/document/letterText/edit[@ref='1186'] -opus/document/letterText/edit[@ref='1187'] -opus/document/letterText/edit[@ref='1188'] -opus/document/letterText/edit[@ref='1189'] -opus/document/letterText/edit[@ref='119'] -opus/document/letterText/edit[@ref='1190'] -opus/document/letterText/edit[@ref='1191'] -opus/document/letterText/edit[@ref='1192'] -opus/document/letterText/edit[@ref='1194'] -opus/document/letterText/edit[@ref='1195'] -opus/document/letterText/edit[@ref='1196'] -opus/document/letterText/edit[@ref='1197'] -opus/document/letterText/edit[@ref='1198'] -opus/document/letterText/edit[@ref='1199'] -opus/document/letterText/edit[@ref='120'] -opus/document/letterText/edit[@ref='1200'] -opus/document/letterText/edit[@ref='1201'] -opus/document/letterText/edit[@ref='1203'] -opus/document/letterText/edit[@ref='1205'] -opus/document/letterText/edit[@ref='1206'] -opus/document/letterText/edit[@ref='1207'] -opus/document/letterText/edit[@ref='1209'] -opus/document/letterText/edit[@ref='121'] -opus/document/letterText/edit[@ref='1210'] -opus/document/letterText/edit[@ref='1211'] -opus/document/letterText/edit[@ref='1212'] -opus/document/letterText/edit[@ref='1213'] -opus/document/letterText/edit[@ref='1214'] -opus/document/letterText/edit[@ref='1215'] -opus/document/letterText/edit[@ref='1216'] -opus/document/letterText/edit[@ref='1217'] -opus/document/letterText/edit[@ref='1218'] -opus/document/letterText/edit[@ref='1219'] -opus/document/letterText/edit[@ref='122'] -opus/document/letterText/edit[@ref='1220'] -opus/document/letterText/edit[@ref='1221'] -opus/document/letterText/edit[@ref='1222'] -opus/document/letterText/edit[@ref='1223'] -opus/document/letterText/edit[@ref='1224'] -opus/document/letterText/edit[@ref='1225'] -opus/document/letterText/edit[@ref='1226'] -opus/document/letterText/edit[@ref='1227'] -opus/document/letterText/edit[@ref='1228'] -opus/document/letterText/edit[@ref='1229'] -opus/document/letterText/edit[@ref='123'] -opus/document/letterText/edit[@ref='1230'] -opus/document/letterText/edit[@ref='1231'] -opus/document/letterText/edit[@ref='1232'] -opus/document/letterText/edit[@ref='1233'] -opus/document/letterText/edit[@ref='1234'] -opus/document/letterText/edit[@ref='1235'] -opus/document/letterText/edit[@ref='1236'] -opus/document/letterText/edit[@ref='1237'] -opus/document/letterText/edit[@ref='1238'] -opus/document/letterText/edit[@ref='1239'] -opus/document/letterText/edit[@ref='124'] -opus/document/letterText/edit[@ref='1240'] -opus/document/letterText/edit[@ref='1241'] -opus/document/letterText/edit[@ref='1242'] -opus/document/letterText/edit[@ref='1243'] -opus/document/letterText/edit[@ref='1244'] -opus/document/letterText/edit[@ref='1245'] -opus/document/letterText/edit[@ref='1246'] -opus/document/letterText/edit[@ref='1247'] -opus/document/letterText/edit[@ref='1248'] -opus/document/letterText/edit[@ref='1249'] -opus/document/letterText/edit[@ref='125'] -opus/document/letterText/edit[@ref='1250'] -opus/document/letterText/edit[@ref='1251'] -opus/document/letterText/edit[@ref='1252'] -opus/document/letterText/edit[@ref='1253'] -opus/document/letterText/edit[@ref='1254'] -opus/document/letterText/edit[@ref='1255'] -opus/document/letterText/edit[@ref='1256'] -opus/document/letterText/edit[@ref='1257'] -opus/document/letterText/edit[@ref='1258'] -opus/document/letterText/edit[@ref='1259'] -opus/document/letterText/edit[@ref='126'] -opus/document/letterText/edit[@ref='1260'] -opus/document/letterText/edit[@ref='1261'] -opus/document/letterText/edit[@ref='1262'] -opus/document/letterText/edit[@ref='1263'] -opus/document/letterText/edit[@ref='1264'] -opus/document/letterText/edit[@ref='1265'] -opus/document/letterText/edit[@ref='1266'] -opus/document/letterText/edit[@ref='1267'] -opus/document/letterText/edit[@ref='1268'] -opus/document/letterText/edit[@ref='1269'] -opus/document/letterText/edit[@ref='127'] -opus/document/letterText/edit[@ref='1270'] -opus/document/letterText/edit[@ref='1271'] -opus/document/letterText/edit[@ref='1272'] -opus/document/letterText/edit[@ref='1273'] -opus/document/letterText/edit[@ref='1274'] -opus/document/letterText/edit[@ref='1275'] -opus/document/letterText/edit[@ref='1276'] -opus/document/letterText/edit[@ref='1277'] -opus/document/letterText/edit[@ref='1278'] -opus/document/letterText/edit[@ref='1279'] -opus/document/letterText/edit[@ref='128'] -opus/document/letterText/edit[@ref='1280'] -opus/document/letterText/edit[@ref='1281'] -opus/document/letterText/edit[@ref='1282'] -opus/document/letterText/edit[@ref='1283'] -opus/document/letterText/edit[@ref='1284'] -opus/document/letterText/edit[@ref='1285'] -opus/document/letterText/edit[@ref='1286'] -opus/document/letterText/edit[@ref='1287'] -opus/document/letterText/edit[@ref='1288'] -opus/document/letterText/edit[@ref='1289'] -opus/document/letterText/edit[@ref='129'] -opus/document/letterText/edit[@ref='1290'] -opus/document/letterText/edit[@ref='1291'] -opus/document/letterText/edit[@ref='1292'] -opus/document/letterText/edit[@ref='1293'] -opus/document/letterText/edit[@ref='1294'] -opus/document/letterText/edit[@ref='1295'] -opus/document/letterText/edit[@ref='1296'] -opus/document/letterText/edit[@ref='1297'] -opus/document/letterText/edit[@ref='1298'] -opus/document/letterText/edit[@ref='1299'] -opus/document/letterText/edit[@ref='130'] -opus/document/letterText/edit[@ref='1300'] -opus/document/letterText/edit[@ref='1301'] -opus/document/letterText/edit[@ref='1302'] -opus/document/letterText/edit[@ref='1303'] -opus/document/letterText/edit[@ref='1304'] -opus/document/letterText/edit[@ref='1305'] -opus/document/letterText/edit[@ref='1306'] -opus/document/letterText/edit[@ref='1307'] -opus/document/letterText/edit[@ref='1308'] -opus/document/letterText/edit[@ref='1309'] -opus/document/letterText/edit[@ref='131'] -opus/document/letterText/edit[@ref='1310'] -opus/document/letterText/edit[@ref='1311'] -opus/document/letterText/edit[@ref='1312'] -opus/document/letterText/edit[@ref='1313'] -opus/document/letterText/edit[@ref='1314'] -opus/document/letterText/edit[@ref='1315'] -opus/document/letterText/edit[@ref='1316'] -opus/document/letterText/edit[@ref='1317'] -opus/document/letterText/edit[@ref='1318'] -opus/document/letterText/edit[@ref='1319'] -opus/document/letterText/edit[@ref='132'] -opus/document/letterText/edit[@ref='1320'] -opus/document/letterText/edit[@ref='1321'] -opus/document/letterText/edit[@ref='1322'] -opus/document/letterText/edit[@ref='1323'] -opus/document/letterText/edit[@ref='1324'] -opus/document/letterText/edit[@ref='1325'] -opus/document/letterText/edit[@ref='1327'] -opus/document/letterText/edit[@ref='1328'] -opus/document/letterText/edit[@ref='1329'] -opus/document/letterText/edit[@ref='133'] -opus/document/letterText/edit[@ref='1330'] -opus/document/letterText/edit[@ref='1332'] -opus/document/letterText/edit[@ref='1333'] -opus/document/letterText/edit[@ref='1334'] -opus/document/letterText/edit[@ref='1335'] -opus/document/letterText/edit[@ref='1336'] -opus/document/letterText/edit[@ref='1338'] -opus/document/letterText/edit[@ref='1339'] -opus/document/letterText/edit[@ref='134'] -opus/document/letterText/edit[@ref='1340'] -opus/document/letterText/edit[@ref='1341'] -opus/document/letterText/edit[@ref='1342'] -opus/document/letterText/edit[@ref='1343'] -opus/document/letterText/edit[@ref='1344'] -opus/document/letterText/edit[@ref='1345'] -opus/document/letterText/edit[@ref='1346'] -opus/document/letterText/edit[@ref='1347'] -opus/document/letterText/edit[@ref='1348'] -opus/document/letterText/edit[@ref='1349'] -opus/document/letterText/edit[@ref='135'] -opus/document/letterText/edit[@ref='1350'] -opus/document/letterText/edit[@ref='1353'] -opus/document/letterText/edit[@ref='1354'] -opus/document/letterText/edit[@ref='1355'] -opus/document/letterText/edit[@ref='1356'] -opus/document/letterText/edit[@ref='1357'] -opus/document/letterText/edit[@ref='1358'] -opus/document/letterText/edit[@ref='1359'] -opus/document/letterText/edit[@ref='136'] -opus/document/letterText/edit[@ref='1360'] -opus/document/letterText/edit[@ref='1361'] -opus/document/letterText/edit[@ref='1362'] -opus/document/letterText/edit[@ref='1363'] -opus/document/letterText/edit[@ref='1364'] -opus/document/letterText/edit[@ref='1365'] -opus/document/letterText/edit[@ref='1366'] -opus/document/letterText/edit[@ref='1367'] -opus/document/letterText/edit[@ref='1368'] -opus/document/letterText/edit[@ref='1369'] -opus/document/letterText/edit[@ref='137'] -opus/document/letterText/edit[@ref='1370'] -opus/document/letterText/edit[@ref='1371'] -opus/document/letterText/edit[@ref='1372'] -opus/document/letterText/edit[@ref='1373'] -opus/document/letterText/edit[@ref='1374'] -opus/document/letterText/edit[@ref='1375'] -opus/document/letterText/edit[@ref='1376'] -opus/document/letterText/edit[@ref='1377'] -opus/document/letterText/edit[@ref='1378'] -opus/document/letterText/edit[@ref='1379'] -opus/document/letterText/edit[@ref='138'] -opus/document/letterText/edit[@ref='1380'] -opus/document/letterText/edit[@ref='1381'] -opus/document/letterText/edit[@ref='1382'] -opus/document/letterText/edit[@ref='1383'] -opus/document/letterText/edit[@ref='1384'] -opus/document/letterText/edit[@ref='1385'] -opus/document/letterText/edit[@ref='1386'] -opus/document/letterText/edit[@ref='1387'] -opus/document/letterText/edit[@ref='139'] -opus/document/letterText/edit[@ref='1391'] -opus/document/letterText/edit[@ref='1392'] -opus/document/letterText/edit[@ref='1393'] -opus/document/letterText/edit[@ref='1394'] -opus/document/letterText/edit[@ref='1395'] -opus/document/letterText/edit[@ref='1396'] -opus/document/letterText/edit[@ref='1397'] -opus/document/letterText/edit[@ref='1398'] -opus/document/letterText/edit[@ref='1399'] -opus/document/letterText/edit[@ref='14'] -opus/document/letterText/edit[@ref='140'] -opus/document/letterText/edit[@ref='1400'] -opus/document/letterText/edit[@ref='1401'] -opus/document/letterText/edit[@ref='1402'] -opus/document/letterText/edit[@ref='1403'] -opus/document/letterText/edit[@ref='1404'] -opus/document/letterText/edit[@ref='1405'] -opus/document/letterText/edit[@ref='1406'] -opus/document/letterText/edit[@ref='1407'] -opus/document/letterText/edit[@ref='1409'] -opus/document/letterText/edit[@ref='141'] -opus/document/letterText/edit[@ref='1410'] -opus/document/letterText/edit[@ref='1411'] -opus/document/letterText/edit[@ref='1412'] -opus/document/letterText/edit[@ref='1413'] -opus/document/letterText/edit[@ref='1414'] -opus/document/letterText/edit[@ref='1415'] -opus/document/letterText/edit[@ref='1416'] -opus/document/letterText/edit[@ref='1417'] -opus/document/letterText/edit[@ref='1418'] -opus/document/letterText/edit[@ref='1419'] -opus/document/letterText/edit[@ref='142'] -opus/document/letterText/edit[@ref='1420'] -opus/document/letterText/edit[@ref='1421'] -opus/document/letterText/edit[@ref='1422'] -opus/document/letterText/edit[@ref='1424'] -opus/document/letterText/edit[@ref='1425'] -opus/document/letterText/edit[@ref='1426'] -opus/document/letterText/edit[@ref='1427'] -opus/document/letterText/edit[@ref='1428'] -opus/document/letterText/edit[@ref='1429'] -opus/document/letterText/edit[@ref='143'] -opus/document/letterText/edit[@ref='1430'] -opus/document/letterText/edit[@ref='1431'] -opus/document/letterText/edit[@ref='1432'] -opus/document/letterText/edit[@ref='1433'] -opus/document/letterText/edit[@ref='1434'] -opus/document/letterText/edit[@ref='1435'] -opus/document/letterText/edit[@ref='1436'] -opus/document/letterText/edit[@ref='1438'] -opus/document/letterText/edit[@ref='1439'] -opus/document/letterText/edit[@ref='144'] -opus/document/letterText/edit[@ref='1440'] -opus/document/letterText/edit[@ref='1441'] -opus/document/letterText/edit[@ref='1442'] -opus/document/letterText/edit[@ref='1443'] -opus/document/letterText/edit[@ref='1444'] -opus/document/letterText/edit[@ref='1445'] -opus/document/letterText/edit[@ref='1446'] -opus/document/letterText/edit[@ref='1447'] -opus/document/letterText/edit[@ref='1448'] -opus/document/letterText/edit[@ref='1449'] -opus/document/letterText/edit[@ref='145'] -opus/document/letterText/edit[@ref='1450'] -opus/document/letterText/edit[@ref='1451'] -opus/document/letterText/edit[@ref='1452'] -opus/document/letterText/edit[@ref='1454'] -opus/document/letterText/edit[@ref='1455'] -opus/document/letterText/edit[@ref='1456'] -opus/document/letterText/edit[@ref='1457'] -opus/document/letterText/edit[@ref='1458'] -opus/document/letterText/edit[@ref='1459'] -opus/document/letterText/edit[@ref='146'] -opus/document/letterText/edit[@ref='1460'] -opus/document/letterText/edit[@ref='1461'] -opus/document/letterText/edit[@ref='1462'] -opus/document/letterText/edit[@ref='1463'] -opus/document/letterText/edit[@ref='1464'] -opus/document/letterText/edit[@ref='1466'] -opus/document/letterText/edit[@ref='1467'] -opus/document/letterText/edit[@ref='1468'] -opus/document/letterText/edit[@ref='1469'] -opus/document/letterText/edit[@ref='147'] -opus/document/letterText/edit[@ref='1470'] -opus/document/letterText/edit[@ref='1471'] -opus/document/letterText/edit[@ref='1472'] -opus/document/letterText/edit[@ref='1473'] -opus/document/letterText/edit[@ref='1474'] -opus/document/letterText/edit[@ref='1475'] -opus/document/letterText/edit[@ref='1477'] -opus/document/letterText/edit[@ref='1478'] -opus/document/letterText/edit[@ref='1479'] -opus/document/letterText/edit[@ref='148'] -opus/document/letterText/edit[@ref='1480'] -opus/document/letterText/edit[@ref='1481'] -opus/document/letterText/edit[@ref='1482'] -opus/document/letterText/edit[@ref='1483'] -opus/document/letterText/edit[@ref='1484'] -opus/document/letterText/edit[@ref='1485'] -opus/document/letterText/edit[@ref='1486'] -opus/document/letterText/edit[@ref='1487'] -opus/document/letterText/edit[@ref='1488'] -opus/document/letterText/edit[@ref='1489'] -opus/document/letterText/edit[@ref='149'] -opus/document/letterText/edit[@ref='1490'] -opus/document/letterText/edit[@ref='1491'] -opus/document/letterText/edit[@ref='1492'] -opus/document/letterText/edit[@ref='1493'] -opus/document/letterText/edit[@ref='1494'] -opus/document/letterText/edit[@ref='1497'] -opus/document/letterText/edit[@ref='1498'] -opus/document/letterText/edit[@ref='15'] -opus/document/letterText/edit[@ref='150'] -opus/document/letterText/edit[@ref='1500'] -opus/document/letterText/edit[@ref='1501'] -opus/document/letterText/edit[@ref='1502'] -opus/document/letterText/edit[@ref='1503'] -opus/document/letterText/edit[@ref='1504'] -opus/document/letterText/edit[@ref='1505'] -opus/document/letterText/edit[@ref='1506'] -opus/document/letterText/edit[@ref='1507'] -opus/document/letterText/edit[@ref='1508'] -opus/document/letterText/edit[@ref='1509'] -opus/document/letterText/edit[@ref='151'] -opus/document/letterText/edit[@ref='1510'] -opus/document/letterText/edit[@ref='1511'] -opus/document/letterText/edit[@ref='1512'] -opus/document/letterText/edit[@ref='1513'] -opus/document/letterText/edit[@ref='1514'] -opus/document/letterText/edit[@ref='1515'] -opus/document/letterText/edit[@ref='1516'] -opus/document/letterText/edit[@ref='1517'] -opus/document/letterText/edit[@ref='1518'] -opus/document/letterText/edit[@ref='1519'] -opus/document/letterText/edit[@ref='152'] -opus/document/letterText/edit[@ref='1520'] -opus/document/letterText/edit[@ref='1522'] -opus/document/letterText/edit[@ref='1523'] -opus/document/letterText/edit[@ref='1524'] -opus/document/letterText/edit[@ref='1525'] -opus/document/letterText/edit[@ref='1526'] -opus/document/letterText/edit[@ref='1527'] -opus/document/letterText/edit[@ref='1528'] -opus/document/letterText/edit[@ref='1529'] -opus/document/letterText/edit[@ref='153'] -opus/document/letterText/edit[@ref='1530'] -opus/document/letterText/edit[@ref='1531'] -opus/document/letterText/edit[@ref='1532'] -opus/document/letterText/edit[@ref='1533'] -opus/document/letterText/edit[@ref='1535'] -opus/document/letterText/edit[@ref='1536'] -opus/document/letterText/edit[@ref='1537'] -opus/document/letterText/edit[@ref='1538'] -opus/document/letterText/edit[@ref='154'] -opus/document/letterText/edit[@ref='1540'] -opus/document/letterText/edit[@ref='1541'] -opus/document/letterText/edit[@ref='1542'] -opus/document/letterText/edit[@ref='1543'] -opus/document/letterText/edit[@ref='1545'] -opus/document/letterText/edit[@ref='1546'] -opus/document/letterText/edit[@ref='1548'] -opus/document/letterText/edit[@ref='1549'] -opus/document/letterText/edit[@ref='155'] -opus/document/letterText/edit[@ref='1550'] -opus/document/letterText/edit[@ref='1551'] -opus/document/letterText/edit[@ref='1552'] -opus/document/letterText/edit[@ref='1553'] -opus/document/letterText/edit[@ref='1554'] -opus/document/letterText/edit[@ref='1555'] -opus/document/letterText/edit[@ref='1556'] -opus/document/letterText/edit[@ref='1557'] -opus/document/letterText/edit[@ref='1558'] -opus/document/letterText/edit[@ref='1559'] -opus/document/letterText/edit[@ref='156'] -opus/document/letterText/edit[@ref='1560'] -opus/document/letterText/edit[@ref='1561'] -opus/document/letterText/edit[@ref='1562'] -opus/document/letterText/edit[@ref='1563'] -opus/document/letterText/edit[@ref='1564'] -opus/document/letterText/edit[@ref='1565'] -opus/document/letterText/edit[@ref='1566'] -opus/document/letterText/edit[@ref='1567'] -opus/document/letterText/edit[@ref='1568'] -opus/document/letterText/edit[@ref='1569'] -opus/document/letterText/edit[@ref='157'] -opus/document/letterText/edit[@ref='1570'] -opus/document/letterText/edit[@ref='1571'] -opus/document/letterText/edit[@ref='1572'] -opus/document/letterText/edit[@ref='1573'] -opus/document/letterText/edit[@ref='1574'] -opus/document/letterText/edit[@ref='1575'] -opus/document/letterText/edit[@ref='1576'] -opus/document/letterText/edit[@ref='1577'] -opus/document/letterText/edit[@ref='1578'] -opus/document/letterText/edit[@ref='1579'] -opus/document/letterText/edit[@ref='158'] -opus/document/letterText/edit[@ref='1580'] -opus/document/letterText/edit[@ref='1581'] -opus/document/letterText/edit[@ref='1582'] -opus/document/letterText/edit[@ref='1584'] -opus/document/letterText/edit[@ref='1585'] -opus/document/letterText/edit[@ref='1586'] -opus/document/letterText/edit[@ref='1587'] -opus/document/letterText/edit[@ref='1588'] -opus/document/letterText/edit[@ref='1589'] -opus/document/letterText/edit[@ref='159'] -opus/document/letterText/edit[@ref='1590'] -opus/document/letterText/edit[@ref='1591'] -opus/document/letterText/edit[@ref='1592'] -opus/document/letterText/edit[@ref='1593'] -opus/document/letterText/edit[@ref='1594'] -opus/document/letterText/edit[@ref='1596'] -opus/document/letterText/edit[@ref='1597'] -opus/document/letterText/edit[@ref='1598'] -opus/document/letterText/edit[@ref='1599'] -opus/document/letterText/edit[@ref='160'] -opus/document/letterText/edit[@ref='1600'] -opus/document/letterText/edit[@ref='1601'] -opus/document/letterText/edit[@ref='1602'] -opus/document/letterText/edit[@ref='1603'] -opus/document/letterText/edit[@ref='1604'] -opus/document/letterText/edit[@ref='1605'] -opus/document/letterText/edit[@ref='1606'] -opus/document/letterText/edit[@ref='1607'] -opus/document/letterText/edit[@ref='1608'] -opus/document/letterText/edit[@ref='1609'] -opus/document/letterText/edit[@ref='161'] -opus/document/letterText/edit[@ref='1610'] -opus/document/letterText/edit[@ref='1611'] -opus/document/letterText/edit[@ref='1612'] -opus/document/letterText/edit[@ref='1613'] -opus/document/letterText/edit[@ref='1614'] -opus/document/letterText/edit[@ref='1615'] -opus/document/letterText/edit[@ref='1616'] -opus/document/letterText/edit[@ref='1617'] -opus/document/letterText/edit[@ref='1618'] -opus/document/letterText/edit[@ref='1619'] -opus/document/letterText/edit[@ref='162'] -opus/document/letterText/edit[@ref='1620'] -opus/document/letterText/edit[@ref='1621'] -opus/document/letterText/edit[@ref='1622'] -opus/document/letterText/edit[@ref='1623'] -opus/document/letterText/edit[@ref='1624'] -opus/document/letterText/edit[@ref='1625'] -opus/document/letterText/edit[@ref='1626'] -opus/document/letterText/edit[@ref='1627'] -opus/document/letterText/edit[@ref='1628'] -opus/document/letterText/edit[@ref='1629'] -opus/document/letterText/edit[@ref='163'] -opus/document/letterText/edit[@ref='1630'] -opus/document/letterText/edit[@ref='1631'] -opus/document/letterText/edit[@ref='1632'] -opus/document/letterText/edit[@ref='1633'] -opus/document/letterText/edit[@ref='1634'] -opus/document/letterText/edit[@ref='1635'] -opus/document/letterText/edit[@ref='1636'] -opus/document/letterText/edit[@ref='1638'] -opus/document/letterText/edit[@ref='1639'] -opus/document/letterText/edit[@ref='164'] -opus/document/letterText/edit[@ref='1640'] -opus/document/letterText/edit[@ref='1641'] -opus/document/letterText/edit[@ref='1642'] -opus/document/letterText/edit[@ref='1643'] -opus/document/letterText/edit[@ref='1644'] -opus/document/letterText/edit[@ref='1645'] -opus/document/letterText/edit[@ref='1646'] -opus/document/letterText/edit[@ref='1647'] -opus/document/letterText/edit[@ref='1648'] -opus/document/letterText/edit[@ref='1649'] -opus/document/letterText/edit[@ref='165'] -opus/document/letterText/edit[@ref='1650'] -opus/document/letterText/edit[@ref='1652'] -opus/document/letterText/edit[@ref='1653'] -opus/document/letterText/edit[@ref='1654'] -opus/document/letterText/edit[@ref='1655'] -opus/document/letterText/edit[@ref='1656'] -opus/document/letterText/edit[@ref='1657'] -opus/document/letterText/edit[@ref='1658'] -opus/document/letterText/edit[@ref='1659'] -opus/document/letterText/edit[@ref='166'] -opus/document/letterText/edit[@ref='1660'] -opus/document/letterText/edit[@ref='1661'] -opus/document/letterText/edit[@ref='1662'] -opus/document/letterText/edit[@ref='1663'] -opus/document/letterText/edit[@ref='1664'] -opus/document/letterText/edit[@ref='1665'] -opus/document/letterText/edit[@ref='1666'] -opus/document/letterText/edit[@ref='1667'] -opus/document/letterText/edit[@ref='1668'] -opus/document/letterText/edit[@ref='1669'] -opus/document/letterText/edit[@ref='167'] -opus/document/letterText/edit[@ref='1670'] -opus/document/letterText/edit[@ref='1671'] -opus/document/letterText/edit[@ref='1672'] -opus/document/letterText/edit[@ref='1673'] -opus/document/letterText/edit[@ref='1674'] -opus/document/letterText/edit[@ref='1675'] -opus/document/letterText/edit[@ref='1676'] -opus/document/letterText/edit[@ref='1678'] -opus/document/letterText/edit[@ref='1679'] -opus/document/letterText/edit[@ref='168'] -opus/document/letterText/edit[@ref='1680'] -opus/document/letterText/edit[@ref='1681'] -opus/document/letterText/edit[@ref='1684'] -opus/document/letterText/edit[@ref='1685'] -opus/document/letterText/edit[@ref='1686'] -opus/document/letterText/edit[@ref='1687'] -opus/document/letterText/edit[@ref='1688'] -opus/document/letterText/edit[@ref='1689'] -opus/document/letterText/edit[@ref='169'] -opus/document/letterText/edit[@ref='1691'] -opus/document/letterText/edit[@ref='1692'] -opus/document/letterText/edit[@ref='1693'] -opus/document/letterText/edit[@ref='1694'] -opus/document/letterText/edit[@ref='1695'] -opus/document/letterText/edit[@ref='1696'] -opus/document/letterText/edit[@ref='1697'] -opus/document/letterText/edit[@ref='1698'] -opus/document/letterText/edit[@ref='1699'] -opus/document/letterText/edit[@ref='170'] -opus/document/letterText/edit[@ref='1700'] -opus/document/letterText/edit[@ref='1701'] -opus/document/letterText/edit[@ref='1702'] -opus/document/letterText/edit[@ref='1703'] -opus/document/letterText/edit[@ref='1705'] -opus/document/letterText/edit[@ref='1706'] -opus/document/letterText/edit[@ref='1707'] -opus/document/letterText/edit[@ref='1708'] -opus/document/letterText/edit[@ref='1709'] -opus/document/letterText/edit[@ref='171'] -opus/document/letterText/edit[@ref='1710'] -opus/document/letterText/edit[@ref='1711'] -opus/document/letterText/edit[@ref='1712'] -opus/document/letterText/edit[@ref='1713'] -opus/document/letterText/edit[@ref='1715'] -opus/document/letterText/edit[@ref='1716'] -opus/document/letterText/edit[@ref='1717'] -opus/document/letterText/edit[@ref='1718'] -opus/document/letterText/edit[@ref='1719'] -opus/document/letterText/edit[@ref='172'] -opus/document/letterText/edit[@ref='1720'] -opus/document/letterText/edit[@ref='1721'] -opus/document/letterText/edit[@ref='1722'] -opus/document/letterText/edit[@ref='1723'] -opus/document/letterText/edit[@ref='1724'] -opus/document/letterText/edit[@ref='1725'] -opus/document/letterText/edit[@ref='1726'] -opus/document/letterText/edit[@ref='1727'] -opus/document/letterText/edit[@ref='1728'] -opus/document/letterText/edit[@ref='1729'] -opus/document/letterText/edit[@ref='173'] -opus/document/letterText/edit[@ref='1730'] -opus/document/letterText/edit[@ref='1731'] -opus/document/letterText/edit[@ref='1732'] -opus/document/letterText/edit[@ref='1733'] -opus/document/letterText/edit[@ref='1734'] -opus/document/letterText/edit[@ref='1735'] -opus/document/letterText/edit[@ref='1736'] -opus/document/letterText/edit[@ref='1737'] -opus/document/letterText/edit[@ref='1738'] -opus/document/letterText/edit[@ref='1739'] -opus/document/letterText/edit[@ref='174'] -opus/document/letterText/edit[@ref='1740'] -opus/document/letterText/edit[@ref='1741'] -opus/document/letterText/edit[@ref='1742'] -opus/document/letterText/edit[@ref='1743'] -opus/document/letterText/edit[@ref='1744'] -opus/document/letterText/edit[@ref='1745'] -opus/document/letterText/edit[@ref='1746'] -opus/document/letterText/edit[@ref='1747'] -opus/document/letterText/edit[@ref='1748'] -opus/document/letterText/edit[@ref='1749'] -opus/document/letterText/edit[@ref='175'] -opus/document/letterText/edit[@ref='1750'] -opus/document/letterText/edit[@ref='1751'] -opus/document/letterText/edit[@ref='1752'] -opus/document/letterText/edit[@ref='1753'] -opus/document/letterText/edit[@ref='1754'] -opus/document/letterText/edit[@ref='1755'] -opus/document/letterText/edit[@ref='1756'] -opus/document/letterText/edit[@ref='1757'] -opus/document/letterText/edit[@ref='1758'] -opus/document/letterText/edit[@ref='1759'] -opus/document/letterText/edit[@ref='176'] -opus/document/letterText/edit[@ref='1760'] -opus/document/letterText/edit[@ref='1761'] -opus/document/letterText/edit[@ref='1762'] -opus/document/letterText/edit[@ref='1763'] -opus/document/letterText/edit[@ref='1764'] -opus/document/letterText/edit[@ref='1765'] -opus/document/letterText/edit[@ref='1766'] -opus/document/letterText/edit[@ref='1767'] -opus/document/letterText/edit[@ref='1768'] -opus/document/letterText/edit[@ref='1769'] -opus/document/letterText/edit[@ref='177'] -opus/document/letterText/edit[@ref='1770'] -opus/document/letterText/edit[@ref='1771'] -opus/document/letterText/edit[@ref='1773'] -opus/document/letterText/edit[@ref='1774'] -opus/document/letterText/edit[@ref='1775'] -opus/document/letterText/edit[@ref='1776'] -opus/document/letterText/edit[@ref='1779'] -opus/document/letterText/edit[@ref='178'] -opus/document/letterText/edit[@ref='1780'] -opus/document/letterText/edit[@ref='1781'] -opus/document/letterText/edit[@ref='1782'] -opus/document/letterText/edit[@ref='1783'] -opus/document/letterText/edit[@ref='1784'] -opus/document/letterText/edit[@ref='1785'] -opus/document/letterText/edit[@ref='1786'] -opus/document/letterText/edit[@ref='1787'] -opus/document/letterText/edit[@ref='1788'] -opus/document/letterText/edit[@ref='1789'] -opus/document/letterText/edit[@ref='179'] -opus/document/letterText/edit[@ref='1790'] -opus/document/letterText/edit[@ref='1791'] -opus/document/letterText/edit[@ref='1792'] -opus/document/letterText/edit[@ref='1793'] -opus/document/letterText/edit[@ref='1794'] -opus/document/letterText/edit[@ref='1795'] -opus/document/letterText/edit[@ref='1796'] -opus/document/letterText/edit[@ref='1797'] -opus/document/letterText/edit[@ref='1798'] -opus/document/letterText/edit[@ref='1799'] -opus/document/letterText/edit[@ref='180'] -opus/document/letterText/edit[@ref='1800'] -opus/document/letterText/edit[@ref='1801'] -opus/document/letterText/edit[@ref='1802'] -opus/document/letterText/edit[@ref='1803'] -opus/document/letterText/edit[@ref='1804'] -opus/document/letterText/edit[@ref='1805'] -opus/document/letterText/edit[@ref='1806'] -opus/document/letterText/edit[@ref='1808'] -opus/document/letterText/edit[@ref='1809'] -opus/document/letterText/edit[@ref='181'] -opus/document/letterText/edit[@ref='1810'] -opus/document/letterText/edit[@ref='1811'] -opus/document/letterText/edit[@ref='1812'] -opus/document/letterText/edit[@ref='1813'] -opus/document/letterText/edit[@ref='1814'] -opus/document/letterText/edit[@ref='1815'] -opus/document/letterText/edit[@ref='1816'] -opus/document/letterText/edit[@ref='1817'] -opus/document/letterText/edit[@ref='1818'] -opus/document/letterText/edit[@ref='1819'] -opus/document/letterText/edit[@ref='182'] -opus/document/letterText/edit[@ref='1820'] -opus/document/letterText/edit[@ref='1821'] -opus/document/letterText/edit[@ref='1822'] -opus/document/letterText/edit[@ref='1823'] -opus/document/letterText/edit[@ref='1824'] -opus/document/letterText/edit[@ref='1827'] -opus/document/letterText/edit[@ref='1828'] -opus/document/letterText/edit[@ref='1829'] -opus/document/letterText/edit[@ref='183'] -opus/document/letterText/edit[@ref='1830'] -opus/document/letterText/edit[@ref='1831'] -opus/document/letterText/edit[@ref='1832'] -opus/document/letterText/edit[@ref='1833'] -opus/document/letterText/edit[@ref='1834'] -opus/document/letterText/edit[@ref='1835'] -opus/document/letterText/edit[@ref='1836'] -opus/document/letterText/edit[@ref='1837'] -opus/document/letterText/edit[@ref='1838'] -opus/document/letterText/edit[@ref='1839'] -opus/document/letterText/edit[@ref='184'] -opus/document/letterText/edit[@ref='1840'] -opus/document/letterText/edit[@ref='1841'] -opus/document/letterText/edit[@ref='1842'] -opus/document/letterText/edit[@ref='1843'] -opus/document/letterText/edit[@ref='1848'] -opus/document/letterText/edit[@ref='1849'] -opus/document/letterText/edit[@ref='185'] -opus/document/letterText/edit[@ref='1850'] -opus/document/letterText/edit[@ref='1852'] -opus/document/letterText/edit[@ref='1853'] -opus/document/letterText/edit[@ref='1854'] -opus/document/letterText/edit[@ref='1856'] -opus/document/letterText/edit[@ref='1858'] -opus/document/letterText/edit[@ref='1859'] -opus/document/letterText/edit[@ref='186'] -opus/document/letterText/edit[@ref='1860'] -opus/document/letterText/edit[@ref='1861'] -opus/document/letterText/edit[@ref='1862'] -opus/document/letterText/edit[@ref='1863'] -opus/document/letterText/edit[@ref='1864'] -opus/document/letterText/edit[@ref='1865'] -opus/document/letterText/edit[@ref='1866'] -opus/document/letterText/edit[@ref='1867'] -opus/document/letterText/edit[@ref='1868'] -opus/document/letterText/edit[@ref='1869'] -opus/document/letterText/edit[@ref='1870'] -opus/document/letterText/edit[@ref='1871'] -opus/document/letterText/edit[@ref='1872'] -opus/document/letterText/edit[@ref='1873'] -opus/document/letterText/edit[@ref='1874'] -opus/document/letterText/edit[@ref='1875'] -opus/document/letterText/edit[@ref='1876'] -opus/document/letterText/edit[@ref='1877'] -opus/document/letterText/edit[@ref='1878'] -opus/document/letterText/edit[@ref='1879'] -opus/document/letterText/edit[@ref='1880'] -opus/document/letterText/edit[@ref='1881'] -opus/document/letterText/edit[@ref='1882'] -opus/document/letterText/edit[@ref='1883'] -opus/document/letterText/edit[@ref='1884'] -opus/document/letterText/edit[@ref='1885'] -opus/document/letterText/edit[@ref='1886'] -opus/document/letterText/edit[@ref='1887'] -opus/document/letterText/edit[@ref='1888'] -opus/document/letterText/edit[@ref='1889'] -opus/document/letterText/edit[@ref='189'] -opus/document/letterText/edit[@ref='1890'] -opus/document/letterText/edit[@ref='1891'] -opus/document/letterText/edit[@ref='1892'] -opus/document/letterText/edit[@ref='1893'] -opus/document/letterText/edit[@ref='1894'] -opus/document/letterText/edit[@ref='1895'] -opus/document/letterText/edit[@ref='1896'] -opus/document/letterText/edit[@ref='1897'] -opus/document/letterText/edit[@ref='1898'] -opus/document/letterText/edit[@ref='1899'] -opus/document/letterText/edit[@ref='19'] -opus/document/letterText/edit[@ref='190'] -opus/document/letterText/edit[@ref='1900'] -opus/document/letterText/edit[@ref='1901'] -opus/document/letterText/edit[@ref='1902'] -opus/document/letterText/edit[@ref='1903'] -opus/document/letterText/edit[@ref='1904'] -opus/document/letterText/edit[@ref='1905'] -opus/document/letterText/edit[@ref='1906'] -opus/document/letterText/edit[@ref='1907'] -opus/document/letterText/edit[@ref='1908'] -opus/document/letterText/edit[@ref='1909'] -opus/document/letterText/edit[@ref='191'] -opus/document/letterText/edit[@ref='1910'] -opus/document/letterText/edit[@ref='1911'] -opus/document/letterText/edit[@ref='1912'] -opus/document/letterText/edit[@ref='1913'] -opus/document/letterText/edit[@ref='1914'] -opus/document/letterText/edit[@ref='1915'] -opus/document/letterText/edit[@ref='1916'] -opus/document/letterText/edit[@ref='1917'] -opus/document/letterText/edit[@ref='1918'] -opus/document/letterText/edit[@ref='1919'] -opus/document/letterText/edit[@ref='192'] -opus/document/letterText/edit[@ref='1920'] -opus/document/letterText/edit[@ref='1921'] -opus/document/letterText/edit[@ref='1922'] -opus/document/letterText/edit[@ref='1923'] -opus/document/letterText/edit[@ref='1924'] -opus/document/letterText/edit[@ref='1925'] -opus/document/letterText/edit[@ref='1926'] -opus/document/letterText/edit[@ref='1927'] -opus/document/letterText/edit[@ref='1928'] -opus/document/letterText/edit[@ref='1929'] -opus/document/letterText/edit[@ref='193'] -opus/document/letterText/edit[@ref='1930'] -opus/document/letterText/edit[@ref='1931'] -opus/document/letterText/edit[@ref='1932'] -opus/document/letterText/edit[@ref='1937'] -opus/document/letterText/edit[@ref='1938'] -opus/document/letterText/edit[@ref='1939'] -opus/document/letterText/edit[@ref='194'] -opus/document/letterText/edit[@ref='1940'] -opus/document/letterText/edit[@ref='1941'] -opus/document/letterText/edit[@ref='1942'] -opus/document/letterText/edit[@ref='1943'] -opus/document/letterText/edit[@ref='1944'] -opus/document/letterText/edit[@ref='1945'] -opus/document/letterText/edit[@ref='1946'] -opus/document/letterText/edit[@ref='1947'] -opus/document/letterText/edit[@ref='1948'] -opus/document/letterText/edit[@ref='1949'] -opus/document/letterText/edit[@ref='195'] -opus/document/letterText/edit[@ref='1950'] -opus/document/letterText/edit[@ref='1951'] -opus/document/letterText/edit[@ref='1952'] -opus/document/letterText/edit[@ref='1953'] -opus/document/letterText/edit[@ref='1954'] -opus/document/letterText/edit[@ref='1955'] -opus/document/letterText/edit[@ref='1956'] -opus/document/letterText/edit[@ref='1957'] -opus/document/letterText/edit[@ref='1958'] -opus/document/letterText/edit[@ref='1959'] -opus/document/letterText/edit[@ref='1961'] -opus/document/letterText/edit[@ref='1962'] -opus/document/letterText/edit[@ref='1963'] -opus/document/letterText/edit[@ref='1964'] -opus/document/letterText/edit[@ref='1965'] -opus/document/letterText/edit[@ref='1966'] -opus/document/letterText/edit[@ref='1967'] -opus/document/letterText/edit[@ref='1968'] -opus/document/letterText/edit[@ref='1969'] -opus/document/letterText/edit[@ref='197'] -opus/document/letterText/edit[@ref='1970'] -opus/document/letterText/edit[@ref='1971'] -opus/document/letterText/edit[@ref='1972'] -opus/document/letterText/edit[@ref='1973'] -opus/document/letterText/edit[@ref='1974'] -opus/document/letterText/edit[@ref='1975'] -opus/document/letterText/edit[@ref='1976'] -opus/document/letterText/edit[@ref='1977'] -opus/document/letterText/edit[@ref='1978'] -opus/document/letterText/edit[@ref='1979'] -opus/document/letterText/edit[@ref='198'] -opus/document/letterText/edit[@ref='1980'] -opus/document/letterText/edit[@ref='1981'] -opus/document/letterText/edit[@ref='1982'] -opus/document/letterText/edit[@ref='1983'] -opus/document/letterText/edit[@ref='1984'] -opus/document/letterText/edit[@ref='1985'] -opus/document/letterText/edit[@ref='1986'] -opus/document/letterText/edit[@ref='1987'] -opus/document/letterText/edit[@ref='1988'] -opus/document/letterText/edit[@ref='1989'] -opus/document/letterText/edit[@ref='199'] -opus/document/letterText/edit[@ref='1990'] -opus/document/letterText/edit[@ref='1991'] -opus/document/letterText/edit[@ref='1992'] -opus/document/letterText/edit[@ref='1993'] -opus/document/letterText/edit[@ref='1994'] -opus/document/letterText/edit[@ref='1995'] -opus/document/letterText/edit[@ref='1996'] -opus/document/letterText/edit[@ref='1997'] -opus/document/letterText/edit[@ref='1998'] -opus/document/letterText/edit[@ref='1999'] -opus/document/letterText/edit[@ref='2'] -opus/document/letterText/edit[@ref='20'] -opus/document/letterText/edit[@ref='200'] -opus/document/letterText/edit[@ref='2000'] -opus/document/letterText/edit[@ref='2001'] -opus/document/letterText/edit[@ref='2002'] -opus/document/letterText/edit[@ref='2003'] -opus/document/letterText/edit[@ref='2004'] -opus/document/letterText/edit[@ref='2005'] -opus/document/letterText/edit[@ref='2006'] -opus/document/letterText/edit[@ref='2007'] -opus/document/letterText/edit[@ref='2008'] -opus/document/letterText/edit[@ref='2009'] -opus/document/letterText/edit[@ref='201'] -opus/document/letterText/edit[@ref='2010'] -opus/document/letterText/edit[@ref='2011'] -opus/document/letterText/edit[@ref='2012'] -opus/document/letterText/edit[@ref='2013'] -opus/document/letterText/edit[@ref='2014'] -opus/document/letterText/edit[@ref='2015'] -opus/document/letterText/edit[@ref='2016'] -opus/document/letterText/edit[@ref='2017'] -opus/document/letterText/edit[@ref='2018'] -opus/document/letterText/edit[@ref='2019'] -opus/document/letterText/edit[@ref='202'] -opus/document/letterText/edit[@ref='2020'] -opus/document/letterText/edit[@ref='2021'] -opus/document/letterText/edit[@ref='2022'] -opus/document/letterText/edit[@ref='2023'] -opus/document/letterText/edit[@ref='2024'] -opus/document/letterText/edit[@ref='2025'] -opus/document/letterText/edit[@ref='2026'] -opus/document/letterText/edit[@ref='2027'] -opus/document/letterText/edit[@ref='2028'] -opus/document/letterText/edit[@ref='203'] -opus/document/letterText/edit[@ref='2031'] -opus/document/letterText/edit[@ref='2032'] -opus/document/letterText/edit[@ref='2033'] -opus/document/letterText/edit[@ref='2034'] -opus/document/letterText/edit[@ref='2035'] -opus/document/letterText/edit[@ref='2036'] -opus/document/letterText/edit[@ref='2037'] -opus/document/letterText/edit[@ref='2038'] -opus/document/letterText/edit[@ref='2039'] -opus/document/letterText/edit[@ref='204'] -opus/document/letterText/edit[@ref='2040'] -opus/document/letterText/edit[@ref='2041'] -opus/document/letterText/edit[@ref='2042'] -opus/document/letterText/edit[@ref='2043'] -opus/document/letterText/edit[@ref='2044'] -opus/document/letterText/edit[@ref='2045'] -opus/document/letterText/edit[@ref='2046'] -opus/document/letterText/edit[@ref='2047'] -opus/document/letterText/edit[@ref='2048'] -opus/document/letterText/edit[@ref='2049'] -opus/document/letterText/edit[@ref='205'] -opus/document/letterText/edit[@ref='2050'] -opus/document/letterText/edit[@ref='2051'] -opus/document/letterText/edit[@ref='2052'] -opus/document/letterText/edit[@ref='2053'] -opus/document/letterText/edit[@ref='2054'] -opus/document/letterText/edit[@ref='2055'] -opus/document/letterText/edit[@ref='206'] -opus/document/letterText/edit[@ref='207'] -opus/document/letterText/edit[@ref='2074'] -opus/document/letterText/edit[@ref='2075'] -opus/document/letterText/edit[@ref='2076'] -opus/document/letterText/edit[@ref='2077'] -opus/document/letterText/edit[@ref='2078'] -opus/document/letterText/edit[@ref='2079'] -opus/document/letterText/edit[@ref='208'] -opus/document/letterText/edit[@ref='2080'] -opus/document/letterText/edit[@ref='2081'] -opus/document/letterText/edit[@ref='2082'] -opus/document/letterText/edit[@ref='2083'] -opus/document/letterText/edit[@ref='2084'] -opus/document/letterText/edit[@ref='2085'] -opus/document/letterText/edit[@ref='2086'] -opus/document/letterText/edit[@ref='2087'] -opus/document/letterText/edit[@ref='2088'] -opus/document/letterText/edit[@ref='2089'] -opus/document/letterText/edit[@ref='209'] -opus/document/letterText/edit[@ref='2090'] -opus/document/letterText/edit[@ref='2091'] -opus/document/letterText/edit[@ref='2093'] -opus/document/letterText/edit[@ref='2094'] -opus/document/letterText/edit[@ref='2095'] -opus/document/letterText/edit[@ref='2096'] -opus/document/letterText/edit[@ref='2097'] -opus/document/letterText/edit[@ref='2098'] -opus/document/letterText/edit[@ref='2099'] -opus/document/letterText/edit[@ref='21'] -opus/document/letterText/edit[@ref='210'] -opus/document/letterText/edit[@ref='2101'] -opus/document/letterText/edit[@ref='2102'] -opus/document/letterText/edit[@ref='2103'] -opus/document/letterText/edit[@ref='2104'] -opus/document/letterText/edit[@ref='2105'] -opus/document/letterText/edit[@ref='2106'] -opus/document/letterText/edit[@ref='2107'] -opus/document/letterText/edit[@ref='2108'] -opus/document/letterText/edit[@ref='2109'] -opus/document/letterText/edit[@ref='211'] -opus/document/letterText/edit[@ref='2110'] -opus/document/letterText/edit[@ref='2111'] -opus/document/letterText/edit[@ref='2112'] -opus/document/letterText/edit[@ref='2113'] -opus/document/letterText/edit[@ref='2114'] -opus/document/letterText/edit[@ref='2115'] -opus/document/letterText/edit[@ref='2116'] -opus/document/letterText/edit[@ref='2117'] -opus/document/letterText/edit[@ref='2118'] -opus/document/letterText/edit[@ref='2119'] -opus/document/letterText/edit[@ref='212'] -opus/document/letterText/edit[@ref='2120'] -opus/document/letterText/edit[@ref='2121'] -opus/document/letterText/edit[@ref='2122'] -opus/document/letterText/edit[@ref='2123'] -opus/document/letterText/edit[@ref='2124'] -opus/document/letterText/edit[@ref='2125'] -opus/document/letterText/edit[@ref='2126'] -opus/document/letterText/edit[@ref='2127'] -opus/document/letterText/edit[@ref='2128'] -opus/document/letterText/edit[@ref='2129'] -opus/document/letterText/edit[@ref='213'] -opus/document/letterText/edit[@ref='2130'] -opus/document/letterText/edit[@ref='2131'] -opus/document/letterText/edit[@ref='2133'] -opus/document/letterText/edit[@ref='2134'] -opus/document/letterText/edit[@ref='2135'] -opus/document/letterText/edit[@ref='2136'] -opus/document/letterText/edit[@ref='2137'] -opus/document/letterText/edit[@ref='2138'] -opus/document/letterText/edit[@ref='2139'] -opus/document/letterText/edit[@ref='214'] -opus/document/letterText/edit[@ref='2140'] -opus/document/letterText/edit[@ref='2141'] -opus/document/letterText/edit[@ref='2142'] -opus/document/letterText/edit[@ref='2143'] -opus/document/letterText/edit[@ref='2144'] -opus/document/letterText/edit[@ref='2145'] -opus/document/letterText/edit[@ref='2146'] -opus/document/letterText/edit[@ref='2147'] -opus/document/letterText/edit[@ref='2148'] -opus/document/letterText/edit[@ref='2149'] -opus/document/letterText/edit[@ref='215'] -opus/document/letterText/edit[@ref='2150'] -opus/document/letterText/edit[@ref='2151'] -opus/document/letterText/edit[@ref='2152'] -opus/document/letterText/edit[@ref='2153'] -opus/document/letterText/edit[@ref='2154'] -opus/document/letterText/edit[@ref='2155'] -opus/document/letterText/edit[@ref='2156'] -opus/document/letterText/edit[@ref='2157'] -opus/document/letterText/edit[@ref='2158'] -opus/document/letterText/edit[@ref='2159'] -opus/document/letterText/edit[@ref='216'] -opus/document/letterText/edit[@ref='2160'] -opus/document/letterText/edit[@ref='2161'] -opus/document/letterText/edit[@ref='2162'] -opus/document/letterText/edit[@ref='2163'] -opus/document/letterText/edit[@ref='2164'] -opus/document/letterText/edit[@ref='2165'] -opus/document/letterText/edit[@ref='2166'] -opus/document/letterText/edit[@ref='2167'] -opus/document/letterText/edit[@ref='2168'] -opus/document/letterText/edit[@ref='2169'] -opus/document/letterText/edit[@ref='217'] -opus/document/letterText/edit[@ref='2170'] -opus/document/letterText/edit[@ref='2171'] -opus/document/letterText/edit[@ref='2172'] -opus/document/letterText/edit[@ref='2173'] -opus/document/letterText/edit[@ref='2174'] -opus/document/letterText/edit[@ref='2175'] -opus/document/letterText/edit[@ref='2176'] -opus/document/letterText/edit[@ref='2177'] -opus/document/letterText/edit[@ref='2178'] -opus/document/letterText/edit[@ref='2179'] -opus/document/letterText/edit[@ref='218'] -opus/document/letterText/edit[@ref='2180'] -opus/document/letterText/edit[@ref='2181'] -opus/document/letterText/edit[@ref='2182'] -opus/document/letterText/edit[@ref='2183'] -opus/document/letterText/edit[@ref='2184'] -opus/document/letterText/edit[@ref='2185'] -opus/document/letterText/edit[@ref='2186'] -opus/document/letterText/edit[@ref='2187'] -opus/document/letterText/edit[@ref='2188'] -opus/document/letterText/edit[@ref='2189'] -opus/document/letterText/edit[@ref='219'] -opus/document/letterText/edit[@ref='2190'] -opus/document/letterText/edit[@ref='2191'] -opus/document/letterText/edit[@ref='2192'] -opus/document/letterText/edit[@ref='2193'] -opus/document/letterText/edit[@ref='2194'] -opus/document/letterText/edit[@ref='2195'] -opus/document/letterText/edit[@ref='2196'] -opus/document/letterText/edit[@ref='2197'] -opus/document/letterText/edit[@ref='2198'] -opus/document/letterText/edit[@ref='2199'] -opus/document/letterText/edit[@ref='22'] -opus/document/letterText/edit[@ref='220'] -opus/document/letterText/edit[@ref='2201'] -opus/document/letterText/edit[@ref='2202'] -opus/document/letterText/edit[@ref='2203'] -opus/document/letterText/edit[@ref='2204'] -opus/document/letterText/edit[@ref='2205'] -opus/document/letterText/edit[@ref='2206'] -opus/document/letterText/edit[@ref='2207'] -opus/document/letterText/edit[@ref='2208'] -opus/document/letterText/edit[@ref='2209'] -opus/document/letterText/edit[@ref='221'] -opus/document/letterText/edit[@ref='2210'] -opus/document/letterText/edit[@ref='2211'] -opus/document/letterText/edit[@ref='2212'] -opus/document/letterText/edit[@ref='2213'] -opus/document/letterText/edit[@ref='2215'] -opus/document/letterText/edit[@ref='2217'] -opus/document/letterText/edit[@ref='2218'] -opus/document/letterText/edit[@ref='2219'] -opus/document/letterText/edit[@ref='222'] -opus/document/letterText/edit[@ref='2220'] -opus/document/letterText/edit[@ref='2221'] -opus/document/letterText/edit[@ref='2222'] -opus/document/letterText/edit[@ref='2223'] -opus/document/letterText/edit[@ref='2224'] -opus/document/letterText/edit[@ref='2225'] -opus/document/letterText/edit[@ref='2226'] -opus/document/letterText/edit[@ref='2227'] -opus/document/letterText/edit[@ref='2228'] -opus/document/letterText/edit[@ref='2229'] -opus/document/letterText/edit[@ref='223'] -opus/document/letterText/edit[@ref='2230'] -opus/document/letterText/edit[@ref='2231'] -opus/document/letterText/edit[@ref='2232'] -opus/document/letterText/edit[@ref='2233'] -opus/document/letterText/edit[@ref='2234'] -opus/document/letterText/edit[@ref='2235'] -opus/document/letterText/edit[@ref='2236'] -opus/document/letterText/edit[@ref='2237'] -opus/document/letterText/edit[@ref='2238'] -opus/document/letterText/edit[@ref='2239'] -opus/document/letterText/edit[@ref='224'] -opus/document/letterText/edit[@ref='2240'] -opus/document/letterText/edit[@ref='2242'] -opus/document/letterText/edit[@ref='2243'] -opus/document/letterText/edit[@ref='2244'] -opus/document/letterText/edit[@ref='2245'] -opus/document/letterText/edit[@ref='2246'] -opus/document/letterText/edit[@ref='2247'] -opus/document/letterText/edit[@ref='2248'] -opus/document/letterText/edit[@ref='2249'] -opus/document/letterText/edit[@ref='225'] -opus/document/letterText/edit[@ref='2250'] -opus/document/letterText/edit[@ref='2251'] -opus/document/letterText/edit[@ref='2252'] -opus/document/letterText/edit[@ref='2253'] -opus/document/letterText/edit[@ref='2254'] -opus/document/letterText/edit[@ref='2255'] -opus/document/letterText/edit[@ref='2256'] -opus/document/letterText/edit[@ref='2257'] -opus/document/letterText/edit[@ref='2258'] -opus/document/letterText/edit[@ref='2259'] -opus/document/letterText/edit[@ref='2260'] -opus/document/letterText/edit[@ref='2261'] -opus/document/letterText/edit[@ref='2262'] -opus/document/letterText/edit[@ref='2263'] -opus/document/letterText/edit[@ref='2264'] -opus/document/letterText/edit[@ref='2265'] -opus/document/letterText/edit[@ref='2266'] -opus/document/letterText/edit[@ref='2267'] -opus/document/letterText/edit[@ref='2268'] -opus/document/letterText/edit[@ref='2269'] -opus/document/letterText/edit[@ref='227'] -opus/document/letterText/edit[@ref='2270'] -opus/document/letterText/edit[@ref='2271'] -opus/document/letterText/edit[@ref='2272'] -opus/document/letterText/edit[@ref='2273'] -opus/document/letterText/edit[@ref='2274'] -opus/document/letterText/edit[@ref='2275'] -opus/document/letterText/edit[@ref='2276'] -opus/document/letterText/edit[@ref='2277'] -opus/document/letterText/edit[@ref='2278'] -opus/document/letterText/edit[@ref='2279'] -opus/document/letterText/edit[@ref='228'] -opus/document/letterText/edit[@ref='2280'] -opus/document/letterText/edit[@ref='2281'] -opus/document/letterText/edit[@ref='2282'] -opus/document/letterText/edit[@ref='2283'] -opus/document/letterText/edit[@ref='2284'] -opus/document/letterText/edit[@ref='2286'] -opus/document/letterText/edit[@ref='2287'] -opus/document/letterText/edit[@ref='2288'] -opus/document/letterText/edit[@ref='2289'] -opus/document/letterText/edit[@ref='229'] -opus/document/letterText/edit[@ref='2290'] -opus/document/letterText/edit[@ref='2291'] -opus/document/letterText/edit[@ref='2293'] -opus/document/letterText/edit[@ref='2294'] -opus/document/letterText/edit[@ref='2295'] -opus/document/letterText/edit[@ref='2296'] -opus/document/letterText/edit[@ref='2297'] -opus/document/letterText/edit[@ref='2298'] -opus/document/letterText/edit[@ref='2299'] -opus/document/letterText/edit[@ref='23'] -opus/document/letterText/edit[@ref='230'] -opus/document/letterText/edit[@ref='2300'] -opus/document/letterText/edit[@ref='2301'] -opus/document/letterText/edit[@ref='2302'] -opus/document/letterText/edit[@ref='2303'] -opus/document/letterText/edit[@ref='2304'] -opus/document/letterText/edit[@ref='2305'] -opus/document/letterText/edit[@ref='2306'] -opus/document/letterText/edit[@ref='2307'] -opus/document/letterText/edit[@ref='2308'] -opus/document/letterText/edit[@ref='2309'] -opus/document/letterText/edit[@ref='231'] -opus/document/letterText/edit[@ref='2310'] -opus/document/letterText/edit[@ref='2311'] -opus/document/letterText/edit[@ref='2312'] -opus/document/letterText/edit[@ref='2313'] -opus/document/letterText/edit[@ref='2314'] -opus/document/letterText/edit[@ref='2315'] -opus/document/letterText/edit[@ref='2316'] -opus/document/letterText/edit[@ref='2317'] -opus/document/letterText/edit[@ref='2318'] -opus/document/letterText/edit[@ref='232'] -opus/document/letterText/edit[@ref='2320'] -opus/document/letterText/edit[@ref='2321'] -opus/document/letterText/edit[@ref='2322'] -opus/document/letterText/edit[@ref='2323'] -opus/document/letterText/edit[@ref='2325'] -opus/document/letterText/edit[@ref='2327'] -opus/document/letterText/edit[@ref='2328'] -opus/document/letterText/edit[@ref='233'] -opus/document/letterText/edit[@ref='2331'] -opus/document/letterText/edit[@ref='2332'] -opus/document/letterText/edit[@ref='2333'] -opus/document/letterText/edit[@ref='2334'] -opus/document/letterText/edit[@ref='2335'] -opus/document/letterText/edit[@ref='2336'] -opus/document/letterText/edit[@ref='2337'] -opus/document/letterText/edit[@ref='2338'] -opus/document/letterText/edit[@ref='2339'] -opus/document/letterText/edit[@ref='234'] -opus/document/letterText/edit[@ref='2343'] -opus/document/letterText/edit[@ref='2344'] -opus/document/letterText/edit[@ref='2345'] -opus/document/letterText/edit[@ref='2346'] -opus/document/letterText/edit[@ref='2347'] -opus/document/letterText/edit[@ref='2348'] -opus/document/letterText/edit[@ref='2349'] -opus/document/letterText/edit[@ref='235'] -opus/document/letterText/edit[@ref='2350'] -opus/document/letterText/edit[@ref='2351'] -opus/document/letterText/edit[@ref='2352'] -opus/document/letterText/edit[@ref='2353'] -opus/document/letterText/edit[@ref='2354'] -opus/document/letterText/edit[@ref='2355'] -opus/document/letterText/edit[@ref='2356'] -opus/document/letterText/edit[@ref='2357'] -opus/document/letterText/edit[@ref='2358'] -opus/document/letterText/edit[@ref='2359'] -opus/document/letterText/edit[@ref='236'] -opus/document/letterText/edit[@ref='2360'] -opus/document/letterText/edit[@ref='2361'] -opus/document/letterText/edit[@ref='2362'] -opus/document/letterText/edit[@ref='2363'] -opus/document/letterText/edit[@ref='2364'] -opus/document/letterText/edit[@ref='2365'] -opus/document/letterText/edit[@ref='2366'] -opus/document/letterText/edit[@ref='2367'] -opus/document/letterText/edit[@ref='237'] -opus/document/letterText/edit[@ref='2370'] -opus/document/letterText/edit[@ref='2371'] -opus/document/letterText/edit[@ref='2373'] -opus/document/letterText/edit[@ref='2374'] -opus/document/letterText/edit[@ref='2377'] -opus/document/letterText/edit[@ref='2379'] -opus/document/letterText/edit[@ref='238'] -opus/document/letterText/edit[@ref='2380'] -opus/document/letterText/edit[@ref='2381'] -opus/document/letterText/edit[@ref='2382'] -opus/document/letterText/edit[@ref='2383'] -opus/document/letterText/edit[@ref='2384'] -opus/document/letterText/edit[@ref='2385'] -opus/document/letterText/edit[@ref='2386'] -opus/document/letterText/edit[@ref='2387'] -opus/document/letterText/edit[@ref='2388'] -opus/document/letterText/edit[@ref='239'] -opus/document/letterText/edit[@ref='2390'] -opus/document/letterText/edit[@ref='2391'] -opus/document/letterText/edit[@ref='2392'] -opus/document/letterText/edit[@ref='2393'] -opus/document/letterText/edit[@ref='2395'] -opus/document/letterText/edit[@ref='2396'] -opus/document/letterText/edit[@ref='2398'] -opus/document/letterText/edit[@ref='2399'] -opus/document/letterText/edit[@ref='240'] -opus/document/letterText/edit[@ref='2400'] -opus/document/letterText/edit[@ref='2401'] -opus/document/letterText/edit[@ref='2402'] -opus/document/letterText/edit[@ref='2403'] -opus/document/letterText/edit[@ref='2404'] -opus/document/letterText/edit[@ref='2405'] -opus/document/letterText/edit[@ref='2406'] -opus/document/letterText/edit[@ref='2407'] -opus/document/letterText/edit[@ref='2408'] -opus/document/letterText/edit[@ref='2409'] -opus/document/letterText/edit[@ref='241'] -opus/document/letterText/edit[@ref='2410'] -opus/document/letterText/edit[@ref='2411'] -opus/document/letterText/edit[@ref='2412'] -opus/document/letterText/edit[@ref='2414'] -opus/document/letterText/edit[@ref='2415'] -opus/document/letterText/edit[@ref='2416'] -opus/document/letterText/edit[@ref='2417'] -opus/document/letterText/edit[@ref='2418'] -opus/document/letterText/edit[@ref='242'] -opus/document/letterText/edit[@ref='2420'] -opus/document/letterText/edit[@ref='2421'] -opus/document/letterText/edit[@ref='2422'] -opus/document/letterText/edit[@ref='2423'] -opus/document/letterText/edit[@ref='2424'] -opus/document/letterText/edit[@ref='2425'] -opus/document/letterText/edit[@ref='2426'] -opus/document/letterText/edit[@ref='2427'] -opus/document/letterText/edit[@ref='2428'] -opus/document/letterText/edit[@ref='2429'] -opus/document/letterText/edit[@ref='243'] -opus/document/letterText/edit[@ref='2430'] -opus/document/letterText/edit[@ref='2431'] -opus/document/letterText/edit[@ref='2432'] -opus/document/letterText/edit[@ref='2433'] -opus/document/letterText/edit[@ref='2434'] -opus/document/letterText/edit[@ref='2435'] -opus/document/letterText/edit[@ref='2436'] -opus/document/letterText/edit[@ref='2437'] -opus/document/letterText/edit[@ref='2439'] -opus/document/letterText/edit[@ref='244'] -opus/document/letterText/edit[@ref='2440'] -opus/document/letterText/edit[@ref='2441'] -opus/document/letterText/edit[@ref='2442'] -opus/document/letterText/edit[@ref='2443'] -opus/document/letterText/edit[@ref='2444'] -opus/document/letterText/edit[@ref='2445'] -opus/document/letterText/edit[@ref='2446'] -opus/document/letterText/edit[@ref='2447'] -opus/document/letterText/edit[@ref='2448'] -opus/document/letterText/edit[@ref='2449'] -opus/document/letterText/edit[@ref='245'] -opus/document/letterText/edit[@ref='2450'] -opus/document/letterText/edit[@ref='2451'] -opus/document/letterText/edit[@ref='2452'] -opus/document/letterText/edit[@ref='2453'] -opus/document/letterText/edit[@ref='2454'] -opus/document/letterText/edit[@ref='2455'] -opus/document/letterText/edit[@ref='2456'] -opus/document/letterText/edit[@ref='2457'] -opus/document/letterText/edit[@ref='2458'] -opus/document/letterText/edit[@ref='2459'] -opus/document/letterText/edit[@ref='246'] -opus/document/letterText/edit[@ref='2460'] -opus/document/letterText/edit[@ref='2461'] -opus/document/letterText/edit[@ref='2462'] -opus/document/letterText/edit[@ref='2463'] -opus/document/letterText/edit[@ref='2464'] -opus/document/letterText/edit[@ref='2465'] -opus/document/letterText/edit[@ref='2467'] -opus/document/letterText/edit[@ref='2468'] -opus/document/letterText/edit[@ref='2469'] -opus/document/letterText/edit[@ref='247'] -opus/document/letterText/edit[@ref='2470'] -opus/document/letterText/edit[@ref='2471'] -opus/document/letterText/edit[@ref='2472'] -opus/document/letterText/edit[@ref='2473'] -opus/document/letterText/edit[@ref='2474'] -opus/document/letterText/edit[@ref='2475'] -opus/document/letterText/edit[@ref='2476'] -opus/document/letterText/edit[@ref='2477'] -opus/document/letterText/edit[@ref='2478'] -opus/document/letterText/edit[@ref='2479'] -opus/document/letterText/edit[@ref='248'] -opus/document/letterText/edit[@ref='2480'] -opus/document/letterText/edit[@ref='2481'] -opus/document/letterText/edit[@ref='2482'] -opus/document/letterText/edit[@ref='2483'] -opus/document/letterText/edit[@ref='2484'] -opus/document/letterText/edit[@ref='2485'] -opus/document/letterText/edit[@ref='2486'] -opus/document/letterText/edit[@ref='2487'] -opus/document/letterText/edit[@ref='2488'] -opus/document/letterText/edit[@ref='2489'] -opus/document/letterText/edit[@ref='249'] -opus/document/letterText/edit[@ref='2490'] -opus/document/letterText/edit[@ref='2491'] -opus/document/letterText/edit[@ref='2493'] -opus/document/letterText/edit[@ref='2494'] -opus/document/letterText/edit[@ref='2495'] -opus/document/letterText/edit[@ref='2496'] -opus/document/letterText/edit[@ref='2497'] -opus/document/letterText/edit[@ref='2498'] -opus/document/letterText/edit[@ref='2499'] -opus/document/letterText/edit[@ref='250'] -opus/document/letterText/edit[@ref='2500'] -opus/document/letterText/edit[@ref='2501'] -opus/document/letterText/edit[@ref='2502'] -opus/document/letterText/edit[@ref='2503'] -opus/document/letterText/edit[@ref='2504'] -opus/document/letterText/edit[@ref='2505'] -opus/document/letterText/edit[@ref='2506'] -opus/document/letterText/edit[@ref='2507'] -opus/document/letterText/edit[@ref='2508'] -opus/document/letterText/edit[@ref='2509'] -opus/document/letterText/edit[@ref='251'] -opus/document/letterText/edit[@ref='2510'] -opus/document/letterText/edit[@ref='2511'] -opus/document/letterText/edit[@ref='2512'] -opus/document/letterText/edit[@ref='2513'] -opus/document/letterText/edit[@ref='2514'] -opus/document/letterText/edit[@ref='2515'] -opus/document/letterText/edit[@ref='2516'] -opus/document/letterText/edit[@ref='2518'] -opus/document/letterText/edit[@ref='2519'] -opus/document/letterText/edit[@ref='252'] -opus/document/letterText/edit[@ref='2520'] -opus/document/letterText/edit[@ref='2521'] -opus/document/letterText/edit[@ref='2522'] -opus/document/letterText/edit[@ref='2523'] -opus/document/letterText/edit[@ref='2524'] -opus/document/letterText/edit[@ref='2525'] -opus/document/letterText/edit[@ref='2526'] -opus/document/letterText/edit[@ref='2527'] -opus/document/letterText/edit[@ref='2528'] -opus/document/letterText/edit[@ref='2529'] -opus/document/letterText/edit[@ref='253'] -opus/document/letterText/edit[@ref='2530'] -opus/document/letterText/edit[@ref='2531'] -opus/document/letterText/edit[@ref='2532'] -opus/document/letterText/edit[@ref='2533'] -opus/document/letterText/edit[@ref='2534'] -opus/document/letterText/edit[@ref='2535'] -opus/document/letterText/edit[@ref='2536'] -opus/document/letterText/edit[@ref='2537'] -opus/document/letterText/edit[@ref='2538'] -opus/document/letterText/edit[@ref='2539'] -opus/document/letterText/edit[@ref='254'] -opus/document/letterText/edit[@ref='2540'] -opus/document/letterText/edit[@ref='2541'] -opus/document/letterText/edit[@ref='2542'] -opus/document/letterText/edit[@ref='2543'] -opus/document/letterText/edit[@ref='2544'] -opus/document/letterText/edit[@ref='2545'] -opus/document/letterText/edit[@ref='2546'] -opus/document/letterText/edit[@ref='2548'] -opus/document/letterText/edit[@ref='2549'] -opus/document/letterText/edit[@ref='255'] -opus/document/letterText/edit[@ref='2550'] -opus/document/letterText/edit[@ref='2551'] -opus/document/letterText/edit[@ref='2552'] -opus/document/letterText/edit[@ref='2553'] -opus/document/letterText/edit[@ref='2554'] -opus/document/letterText/edit[@ref='2555'] -opus/document/letterText/edit[@ref='2556'] -opus/document/letterText/edit[@ref='2557'] -opus/document/letterText/edit[@ref='2558'] -opus/document/letterText/edit[@ref='2559'] -opus/document/letterText/edit[@ref='256'] -opus/document/letterText/edit[@ref='2560'] -opus/document/letterText/edit[@ref='2561'] -opus/document/letterText/edit[@ref='2562'] -opus/document/letterText/edit[@ref='2563'] -opus/document/letterText/edit[@ref='2564'] -opus/document/letterText/edit[@ref='2565'] -opus/document/letterText/edit[@ref='2566'] -opus/document/letterText/edit[@ref='2567'] -opus/document/letterText/edit[@ref='2568'] -opus/document/letterText/edit[@ref='2569'] -opus/document/letterText/edit[@ref='257'] -opus/document/letterText/edit[@ref='2570'] -opus/document/letterText/edit[@ref='2571'] -opus/document/letterText/edit[@ref='2572'] -opus/document/letterText/edit[@ref='2576'] -opus/document/letterText/edit[@ref='2577'] -opus/document/letterText/edit[@ref='2578'] -opus/document/letterText/edit[@ref='2579'] -opus/document/letterText/edit[@ref='258'] -opus/document/letterText/edit[@ref='2580'] -opus/document/letterText/edit[@ref='2581'] -opus/document/letterText/edit[@ref='2582'] -opus/document/letterText/edit[@ref='2583'] -opus/document/letterText/edit[@ref='2584'] -opus/document/letterText/edit[@ref='2585'] -opus/document/letterText/edit[@ref='2586'] -opus/document/letterText/edit[@ref='2587'] -opus/document/letterText/edit[@ref='2588'] -opus/document/letterText/edit[@ref='2589'] -opus/document/letterText/edit[@ref='259'] -opus/document/letterText/edit[@ref='2590'] -opus/document/letterText/edit[@ref='2591'] -opus/document/letterText/edit[@ref='2592'] -opus/document/letterText/edit[@ref='2593'] -opus/document/letterText/edit[@ref='2594'] -opus/document/letterText/edit[@ref='2595'] -opus/document/letterText/edit[@ref='2596'] -opus/document/letterText/edit[@ref='2597'] -opus/document/letterText/edit[@ref='2598'] -opus/document/letterText/edit[@ref='26'] -opus/document/letterText/edit[@ref='260'] -opus/document/letterText/edit[@ref='2600'] -opus/document/letterText/edit[@ref='2601'] -opus/document/letterText/edit[@ref='2602'] -opus/document/letterText/edit[@ref='2603'] -opus/document/letterText/edit[@ref='2604'] -opus/document/letterText/edit[@ref='2605'] -opus/document/letterText/edit[@ref='2606'] -opus/document/letterText/edit[@ref='2607'] -opus/document/letterText/edit[@ref='2608'] -opus/document/letterText/edit[@ref='2609'] -opus/document/letterText/edit[@ref='261'] -opus/document/letterText/edit[@ref='2610'] -opus/document/letterText/edit[@ref='2611'] -opus/document/letterText/edit[@ref='2612'] -opus/document/letterText/edit[@ref='2613'] -opus/document/letterText/edit[@ref='2614'] -opus/document/letterText/edit[@ref='2615'] -opus/document/letterText/edit[@ref='2616'] -opus/document/letterText/edit[@ref='2617'] -opus/document/letterText/edit[@ref='2618'] -opus/document/letterText/edit[@ref='2619'] -opus/document/letterText/edit[@ref='262'] -opus/document/letterText/edit[@ref='2620'] -opus/document/letterText/edit[@ref='2621'] -opus/document/letterText/edit[@ref='2622'] -opus/document/letterText/edit[@ref='2623'] -opus/document/letterText/edit[@ref='2624'] -opus/document/letterText/edit[@ref='2625'] -opus/document/letterText/edit[@ref='2626'] -opus/document/letterText/edit[@ref='2627'] -opus/document/letterText/edit[@ref='2628'] -opus/document/letterText/edit[@ref='2629'] -opus/document/letterText/edit[@ref='263'] -opus/document/letterText/edit[@ref='2630'] -opus/document/letterText/edit[@ref='2631'] -opus/document/letterText/edit[@ref='2632'] -opus/document/letterText/edit[@ref='2633'] -opus/document/letterText/edit[@ref='2634'] -opus/document/letterText/edit[@ref='2635'] -opus/document/letterText/edit[@ref='2636'] -opus/document/letterText/edit[@ref='2637'] -opus/document/letterText/edit[@ref='2638'] -opus/document/letterText/edit[@ref='2639'] -opus/document/letterText/edit[@ref='264'] -opus/document/letterText/edit[@ref='2640'] -opus/document/letterText/edit[@ref='2641'] -opus/document/letterText/edit[@ref='2642'] -opus/document/letterText/edit[@ref='2643'] -opus/document/letterText/edit[@ref='2644'] -opus/document/letterText/edit[@ref='2645'] -opus/document/letterText/edit[@ref='2646'] -opus/document/letterText/edit[@ref='2647'] -opus/document/letterText/edit[@ref='2648'] -opus/document/letterText/edit[@ref='2649'] -opus/document/letterText/edit[@ref='265'] -opus/document/letterText/edit[@ref='2650'] -opus/document/letterText/edit[@ref='2651'] -opus/document/letterText/edit[@ref='2652'] -opus/document/letterText/edit[@ref='2653'] -opus/document/letterText/edit[@ref='2655'] -opus/document/letterText/edit[@ref='2656'] -opus/document/letterText/edit[@ref='2657'] -opus/document/letterText/edit[@ref='2658'] -opus/document/letterText/edit[@ref='2659'] -opus/document/letterText/edit[@ref='266'] -opus/document/letterText/edit[@ref='2660'] -opus/document/letterText/edit[@ref='2661'] -opus/document/letterText/edit[@ref='2662'] -opus/document/letterText/edit[@ref='2663'] -opus/document/letterText/edit[@ref='2664'] -opus/document/letterText/edit[@ref='2665'] -opus/document/letterText/edit[@ref='2666'] -opus/document/letterText/edit[@ref='2667'] -opus/document/letterText/edit[@ref='2668'] -opus/document/letterText/edit[@ref='2669'] -opus/document/letterText/edit[@ref='2670'] -opus/document/letterText/edit[@ref='2671'] -opus/document/letterText/edit[@ref='2672'] -opus/document/letterText/edit[@ref='2673'] -opus/document/letterText/edit[@ref='2674'] -opus/document/letterText/edit[@ref='2675'] -opus/document/letterText/edit[@ref='2676'] -opus/document/letterText/edit[@ref='2677'] -opus/document/letterText/edit[@ref='2679'] -opus/document/letterText/edit[@ref='2680'] -opus/document/letterText/edit[@ref='2681'] -opus/document/letterText/edit[@ref='2682'] -opus/document/letterText/edit[@ref='2683'] -opus/document/letterText/edit[@ref='2684'] -opus/document/letterText/edit[@ref='2685'] -opus/document/letterText/edit[@ref='2686'] -opus/document/letterText/edit[@ref='2687'] -opus/document/letterText/edit[@ref='2688'] -opus/document/letterText/edit[@ref='2689'] -opus/document/letterText/edit[@ref='2690'] -opus/document/letterText/edit[@ref='2691'] -opus/document/letterText/edit[@ref='2692'] -opus/document/letterText/edit[@ref='2693'] -opus/document/letterText/edit[@ref='2694'] -opus/document/letterText/edit[@ref='2695'] -opus/document/letterText/edit[@ref='2696'] -opus/document/letterText/edit[@ref='2697'] -opus/document/letterText/edit[@ref='2698'] -opus/document/letterText/edit[@ref='2699'] -opus/document/letterText/edit[@ref='27'] -opus/document/letterText/edit[@ref='270'] -opus/document/letterText/edit[@ref='2700'] -opus/document/letterText/edit[@ref='2701'] -opus/document/letterText/edit[@ref='2702'] -opus/document/letterText/edit[@ref='2704'] -opus/document/letterText/edit[@ref='2705'] -opus/document/letterText/edit[@ref='2708'] -opus/document/letterText/edit[@ref='2709'] -opus/document/letterText/edit[@ref='271'] -opus/document/letterText/edit[@ref='2710'] -opus/document/letterText/edit[@ref='2711'] -opus/document/letterText/edit[@ref='2712'] -opus/document/letterText/edit[@ref='2713'] -opus/document/letterText/edit[@ref='2714'] -opus/document/letterText/edit[@ref='2717'] -opus/document/letterText/edit[@ref='2718'] -opus/document/letterText/edit[@ref='2719'] -opus/document/letterText/edit[@ref='272'] -opus/document/letterText/edit[@ref='2720'] -opus/document/letterText/edit[@ref='2721'] -opus/document/letterText/edit[@ref='2722'] -opus/document/letterText/edit[@ref='2723'] -opus/document/letterText/edit[@ref='2724'] -opus/document/letterText/edit[@ref='2725'] -opus/document/letterText/edit[@ref='2726'] -opus/document/letterText/edit[@ref='2727'] -opus/document/letterText/edit[@ref='2728'] -opus/document/letterText/edit[@ref='2729'] -opus/document/letterText/edit[@ref='273'] -opus/document/letterText/edit[@ref='2730'] -opus/document/letterText/edit[@ref='2731'] -opus/document/letterText/edit[@ref='2732'] -opus/document/letterText/edit[@ref='2733'] -opus/document/letterText/edit[@ref='2734'] -opus/document/letterText/edit[@ref='2735'] -opus/document/letterText/edit[@ref='2736'] -opus/document/letterText/edit[@ref='2737'] -opus/document/letterText/edit[@ref='2738'] -opus/document/letterText/edit[@ref='2739'] -opus/document/letterText/edit[@ref='274'] -opus/document/letterText/edit[@ref='2740'] -opus/document/letterText/edit[@ref='2741'] -opus/document/letterText/edit[@ref='2742'] -opus/document/letterText/edit[@ref='2743'] -opus/document/letterText/edit[@ref='2744'] -opus/document/letterText/edit[@ref='2745'] -opus/document/letterText/edit[@ref='2746'] -opus/document/letterText/edit[@ref='2747'] -opus/document/letterText/edit[@ref='2748'] -opus/document/letterText/edit[@ref='2749'] -opus/document/letterText/edit[@ref='275'] -opus/document/letterText/edit[@ref='2750'] -opus/document/letterText/edit[@ref='2751'] -opus/document/letterText/edit[@ref='2752'] -opus/document/letterText/edit[@ref='2753'] -opus/document/letterText/edit[@ref='2754'] -opus/document/letterText/edit[@ref='2755'] -opus/document/letterText/edit[@ref='2756'] -opus/document/letterText/edit[@ref='2757'] -opus/document/letterText/edit[@ref='2758'] -opus/document/letterText/edit[@ref='2759'] -opus/document/letterText/edit[@ref='276'] -opus/document/letterText/edit[@ref='2760'] -opus/document/letterText/edit[@ref='2761'] -opus/document/letterText/edit[@ref='2762'] -opus/document/letterText/edit[@ref='2763'] -opus/document/letterText/edit[@ref='2764'] -opus/document/letterText/edit[@ref='2765'] -opus/document/letterText/edit[@ref='2766'] -opus/document/letterText/edit[@ref='2767'] -opus/document/letterText/edit[@ref='2768'] -opus/document/letterText/edit[@ref='2769'] -opus/document/letterText/edit[@ref='277'] -opus/document/letterText/edit[@ref='2770'] -opus/document/letterText/edit[@ref='2771'] -opus/document/letterText/edit[@ref='2772'] -opus/document/letterText/edit[@ref='2773'] -opus/document/letterText/edit[@ref='2775'] -opus/document/letterText/edit[@ref='2776'] -opus/document/letterText/edit[@ref='2777'] -opus/document/letterText/edit[@ref='2778'] -opus/document/letterText/edit[@ref='2779'] -opus/document/letterText/edit[@ref='278'] -opus/document/letterText/edit[@ref='2780'] -opus/document/letterText/edit[@ref='2781'] -opus/document/letterText/edit[@ref='2782'] -opus/document/letterText/edit[@ref='2783'] -opus/document/letterText/edit[@ref='2784'] -opus/document/letterText/edit[@ref='2785'] -opus/document/letterText/edit[@ref='2786'] -opus/document/letterText/edit[@ref='2787'] -opus/document/letterText/edit[@ref='2789'] -opus/document/letterText/edit[@ref='279'] -opus/document/letterText/edit[@ref='2790'] -opus/document/letterText/edit[@ref='2791'] -opus/document/letterText/edit[@ref='2792'] -opus/document/letterText/edit[@ref='2793'] -opus/document/letterText/edit[@ref='2794'] -opus/document/letterText/edit[@ref='2795'] -opus/document/letterText/edit[@ref='2796'] -opus/document/letterText/edit[@ref='2797'] -opus/document/letterText/edit[@ref='2798'] -opus/document/letterText/edit[@ref='2799'] -opus/document/letterText/edit[@ref='28'] -opus/document/letterText/edit[@ref='280'] -opus/document/letterText/edit[@ref='2800'] -opus/document/letterText/edit[@ref='2801'] -opus/document/letterText/edit[@ref='2802'] -opus/document/letterText/edit[@ref='2804'] -opus/document/letterText/edit[@ref='2805'] -opus/document/letterText/edit[@ref='2807'] -opus/document/letterText/edit[@ref='2809'] -opus/document/letterText/edit[@ref='281'] -opus/document/letterText/edit[@ref='2810'] -opus/document/letterText/edit[@ref='2811'] -opus/document/letterText/edit[@ref='2812'] -opus/document/letterText/edit[@ref='2813'] -opus/document/letterText/edit[@ref='2814'] -opus/document/letterText/edit[@ref='2815'] -opus/document/letterText/edit[@ref='2816'] -opus/document/letterText/edit[@ref='2817'] -opus/document/letterText/edit[@ref='2818'] -opus/document/letterText/edit[@ref='2819'] -opus/document/letterText/edit[@ref='282'] -opus/document/letterText/edit[@ref='2820'] -opus/document/letterText/edit[@ref='2821'] -opus/document/letterText/edit[@ref='2822'] -opus/document/letterText/edit[@ref='2823'] -opus/document/letterText/edit[@ref='2824'] -opus/document/letterText/edit[@ref='2825'] -opus/document/letterText/edit[@ref='2826'] -opus/document/letterText/edit[@ref='2827'] -opus/document/letterText/edit[@ref='2828'] -opus/document/letterText/edit[@ref='2829'] -opus/document/letterText/edit[@ref='283'] -opus/document/letterText/edit[@ref='2830'] -opus/document/letterText/edit[@ref='2831'] -opus/document/letterText/edit[@ref='2832'] -opus/document/letterText/edit[@ref='2833'] -opus/document/letterText/edit[@ref='2834'] -opus/document/letterText/edit[@ref='2835'] -opus/document/letterText/edit[@ref='2836'] -opus/document/letterText/edit[@ref='2837'] -opus/document/letterText/edit[@ref='2838'] -opus/document/letterText/edit[@ref='2839'] -opus/document/letterText/edit[@ref='284'] -opus/document/letterText/edit[@ref='2840'] -opus/document/letterText/edit[@ref='2841'] -opus/document/letterText/edit[@ref='2842'] -opus/document/letterText/edit[@ref='2843'] -opus/document/letterText/edit[@ref='2844'] -opus/document/letterText/edit[@ref='2845'] -opus/document/letterText/edit[@ref='2846'] -opus/document/letterText/edit[@ref='2848'] -opus/document/letterText/edit[@ref='2849'] -opus/document/letterText/edit[@ref='285'] -opus/document/letterText/edit[@ref='2850'] -opus/document/letterText/edit[@ref='2851'] -opus/document/letterText/edit[@ref='2852'] -opus/document/letterText/edit[@ref='2853'] -opus/document/letterText/edit[@ref='2854'] -opus/document/letterText/edit[@ref='2855'] -opus/document/letterText/edit[@ref='2856'] -opus/document/letterText/edit[@ref='2857'] -opus/document/letterText/edit[@ref='2858'] -opus/document/letterText/edit[@ref='2859'] -opus/document/letterText/edit[@ref='286'] -opus/document/letterText/edit[@ref='2860'] -opus/document/letterText/edit[@ref='2861'] -opus/document/letterText/edit[@ref='2862'] -opus/document/letterText/edit[@ref='2863'] -opus/document/letterText/edit[@ref='2864'] -opus/document/letterText/edit[@ref='2865'] -opus/document/letterText/edit[@ref='2866'] -opus/document/letterText/edit[@ref='2867'] -opus/document/letterText/edit[@ref='2868'] -opus/document/letterText/edit[@ref='2869'] -opus/document/letterText/edit[@ref='287'] -opus/document/letterText/edit[@ref='2870'] -opus/document/letterText/edit[@ref='2871'] -opus/document/letterText/edit[@ref='2872'] -opus/document/letterText/edit[@ref='2873'] -opus/document/letterText/edit[@ref='2874'] -opus/document/letterText/edit[@ref='2875'] -opus/document/letterText/edit[@ref='2876'] -opus/document/letterText/edit[@ref='2877'] -opus/document/letterText/edit[@ref='2878'] -opus/document/letterText/edit[@ref='2879'] -opus/document/letterText/edit[@ref='2880'] -opus/document/letterText/edit[@ref='2881'] -opus/document/letterText/edit[@ref='2882'] -opus/document/letterText/edit[@ref='2883'] -opus/document/letterText/edit[@ref='2884'] -opus/document/letterText/edit[@ref='2885'] -opus/document/letterText/edit[@ref='2886'] -opus/document/letterText/edit[@ref='2887'] -opus/document/letterText/edit[@ref='2888'] -opus/document/letterText/edit[@ref='2889'] -opus/document/letterText/edit[@ref='289'] -opus/document/letterText/edit[@ref='2890'] -opus/document/letterText/edit[@ref='2891'] -opus/document/letterText/edit[@ref='2892'] -opus/document/letterText/edit[@ref='2893'] -opus/document/letterText/edit[@ref='2894'] -opus/document/letterText/edit[@ref='2895'] -opus/document/letterText/edit[@ref='2896'] -opus/document/letterText/edit[@ref='2897'] -opus/document/letterText/edit[@ref='2898'] -opus/document/letterText/edit[@ref='2899'] -opus/document/letterText/edit[@ref='29'] -opus/document/letterText/edit[@ref='2900'] -opus/document/letterText/edit[@ref='2901'] -opus/document/letterText/edit[@ref='2902'] -opus/document/letterText/edit[@ref='2903'] -opus/document/letterText/edit[@ref='2904'] -opus/document/letterText/edit[@ref='2905'] -opus/document/letterText/edit[@ref='2906'] -opus/document/letterText/edit[@ref='2907'] -opus/document/letterText/edit[@ref='2908'] -opus/document/letterText/edit[@ref='2909'] -opus/document/letterText/edit[@ref='291'] -opus/document/letterText/edit[@ref='2910'] -opus/document/letterText/edit[@ref='2911'] -opus/document/letterText/edit[@ref='2912'] -opus/document/letterText/edit[@ref='2913'] -opus/document/letterText/edit[@ref='2914'] -opus/document/letterText/edit[@ref='2915'] -opus/document/letterText/edit[@ref='2916'] -opus/document/letterText/edit[@ref='2917'] -opus/document/letterText/edit[@ref='2918'] -opus/document/letterText/edit[@ref='2919'] -opus/document/letterText/edit[@ref='292'] -opus/document/letterText/edit[@ref='2921'] -opus/document/letterText/edit[@ref='2922'] -opus/document/letterText/edit[@ref='2923'] -opus/document/letterText/edit[@ref='2925'] -opus/document/letterText/edit[@ref='2926'] -opus/document/letterText/edit[@ref='2927'] -opus/document/letterText/edit[@ref='2928'] -opus/document/letterText/edit[@ref='2929'] -opus/document/letterText/edit[@ref='293'] -opus/document/letterText/edit[@ref='2930'] -opus/document/letterText/edit[@ref='2931'] -opus/document/letterText/edit[@ref='2932'] -opus/document/letterText/edit[@ref='2933'] -opus/document/letterText/edit[@ref='2934'] -opus/document/letterText/edit[@ref='2935'] -opus/document/letterText/edit[@ref='2936'] -opus/document/letterText/edit[@ref='2937'] -opus/document/letterText/edit[@ref='2938'] -opus/document/letterText/edit[@ref='2939'] -opus/document/letterText/edit[@ref='294'] -opus/document/letterText/edit[@ref='2940'] -opus/document/letterText/edit[@ref='2941'] -opus/document/letterText/edit[@ref='2942'] -opus/document/letterText/edit[@ref='2943'] -opus/document/letterText/edit[@ref='2944'] -opus/document/letterText/edit[@ref='2945'] -opus/document/letterText/edit[@ref='2946'] -opus/document/letterText/edit[@ref='2947'] -opus/document/letterText/edit[@ref='2948'] -opus/document/letterText/edit[@ref='2949'] -opus/document/letterText/edit[@ref='295'] -opus/document/letterText/edit[@ref='2950'] -opus/document/letterText/edit[@ref='2951'] -opus/document/letterText/edit[@ref='2952'] -opus/document/letterText/edit[@ref='2953'] -opus/document/letterText/edit[@ref='2954'] -opus/document/letterText/edit[@ref='2955'] -opus/document/letterText/edit[@ref='2956'] -opus/document/letterText/edit[@ref='2957'] -opus/document/letterText/edit[@ref='2958'] -opus/document/letterText/edit[@ref='2959'] -opus/document/letterText/edit[@ref='296'] -opus/document/letterText/edit[@ref='2960'] -opus/document/letterText/edit[@ref='2961'] -opus/document/letterText/edit[@ref='2962'] -opus/document/letterText/edit[@ref='2963'] -opus/document/letterText/edit[@ref='2964'] -opus/document/letterText/edit[@ref='2965'] -opus/document/letterText/edit[@ref='2966'] -opus/document/letterText/edit[@ref='2968'] -opus/document/letterText/edit[@ref='2969'] -opus/document/letterText/edit[@ref='297'] -opus/document/letterText/edit[@ref='2970'] -opus/document/letterText/edit[@ref='2971'] -opus/document/letterText/edit[@ref='2972'] -opus/document/letterText/edit[@ref='2973'] -opus/document/letterText/edit[@ref='2974'] -opus/document/letterText/edit[@ref='2975'] -opus/document/letterText/edit[@ref='2976'] -opus/document/letterText/edit[@ref='2977'] -opus/document/letterText/edit[@ref='2978'] -opus/document/letterText/edit[@ref='298'] -opus/document/letterText/edit[@ref='2980'] -opus/document/letterText/edit[@ref='2981'] -opus/document/letterText/edit[@ref='2982'] -opus/document/letterText/edit[@ref='2983'] -opus/document/letterText/edit[@ref='2984'] -opus/document/letterText/edit[@ref='2985'] -opus/document/letterText/edit[@ref='2986'] -opus/document/letterText/edit[@ref='2987'] -opus/document/letterText/edit[@ref='2988'] -opus/document/letterText/edit[@ref='2989'] -opus/document/letterText/edit[@ref='299'] -opus/document/letterText/edit[@ref='2990'] -opus/document/letterText/edit[@ref='2991'] -opus/document/letterText/edit[@ref='2992'] -opus/document/letterText/edit[@ref='2993'] -opus/document/letterText/edit[@ref='2994'] -opus/document/letterText/edit[@ref='2995'] -opus/document/letterText/edit[@ref='2996'] -opus/document/letterText/edit[@ref='2997'] -opus/document/letterText/edit[@ref='2998'] -opus/document/letterText/edit[@ref='2999'] -opus/document/letterText/edit[@ref='3'] -opus/document/letterText/edit[@ref='30'] -opus/document/letterText/edit[@ref='300'] -opus/document/letterText/edit[@ref='3000'] -opus/document/letterText/edit[@ref='3001'] -opus/document/letterText/edit[@ref='3002'] -opus/document/letterText/edit[@ref='3003'] -opus/document/letterText/edit[@ref='3004'] -opus/document/letterText/edit[@ref='3005'] -opus/document/letterText/edit[@ref='3006'] -opus/document/letterText/edit[@ref='3007'] -opus/document/letterText/edit[@ref='3008'] -opus/document/letterText/edit[@ref='3009'] -opus/document/letterText/edit[@ref='301'] -opus/document/letterText/edit[@ref='3010'] -opus/document/letterText/edit[@ref='3011'] -opus/document/letterText/edit[@ref='3012'] -opus/document/letterText/edit[@ref='3013'] -opus/document/letterText/edit[@ref='3014'] -opus/document/letterText/edit[@ref='3015'] -opus/document/letterText/edit[@ref='3016'] -opus/document/letterText/edit[@ref='3017'] -opus/document/letterText/edit[@ref='3018'] -opus/document/letterText/edit[@ref='3019'] -opus/document/letterText/edit[@ref='302'] -opus/document/letterText/edit[@ref='3020'] -opus/document/letterText/edit[@ref='3021'] -opus/document/letterText/edit[@ref='3022'] -opus/document/letterText/edit[@ref='3023'] -opus/document/letterText/edit[@ref='3024'] -opus/document/letterText/edit[@ref='3025'] -opus/document/letterText/edit[@ref='3026'] -opus/document/letterText/edit[@ref='3027'] -opus/document/letterText/edit[@ref='3028'] -opus/document/letterText/edit[@ref='3029'] -opus/document/letterText/edit[@ref='303'] -opus/document/letterText/edit[@ref='3031'] -opus/document/letterText/edit[@ref='3035'] -opus/document/letterText/edit[@ref='3036'] -opus/document/letterText/edit[@ref='3037'] -opus/document/letterText/edit[@ref='3038'] -opus/document/letterText/edit[@ref='3039'] -opus/document/letterText/edit[@ref='304'] -opus/document/letterText/edit[@ref='3040'] -opus/document/letterText/edit[@ref='3041'] -opus/document/letterText/edit[@ref='3042'] -opus/document/letterText/edit[@ref='3043'] -opus/document/letterText/edit[@ref='3044'] -opus/document/letterText/edit[@ref='3045'] -opus/document/letterText/edit[@ref='3046'] -opus/document/letterText/edit[@ref='3047'] -opus/document/letterText/edit[@ref='3048'] -opus/document/letterText/edit[@ref='3049'] -opus/document/letterText/edit[@ref='305'] -opus/document/letterText/edit[@ref='3050'] -opus/document/letterText/edit[@ref='3051'] -opus/document/letterText/edit[@ref='3052'] -opus/document/letterText/edit[@ref='3053'] -opus/document/letterText/edit[@ref='3054'] -opus/document/letterText/edit[@ref='3055'] -opus/document/letterText/edit[@ref='3057'] -opus/document/letterText/edit[@ref='3058'] -opus/document/letterText/edit[@ref='3059'] -opus/document/letterText/edit[@ref='306'] -opus/document/letterText/edit[@ref='3060'] -opus/document/letterText/edit[@ref='3061'] -opus/document/letterText/edit[@ref='3063'] -opus/document/letterText/edit[@ref='3064'] -opus/document/letterText/edit[@ref='3065'] -opus/document/letterText/edit[@ref='3066'] -opus/document/letterText/edit[@ref='3067'] -opus/document/letterText/edit[@ref='3068'] -opus/document/letterText/edit[@ref='3069'] -opus/document/letterText/edit[@ref='307'] -opus/document/letterText/edit[@ref='3070'] -opus/document/letterText/edit[@ref='3071'] -opus/document/letterText/edit[@ref='3072'] -opus/document/letterText/edit[@ref='3073'] -opus/document/letterText/edit[@ref='3074'] -opus/document/letterText/edit[@ref='3076'] -opus/document/letterText/edit[@ref='3077'] -opus/document/letterText/edit[@ref='3078'] -opus/document/letterText/edit[@ref='3079'] -opus/document/letterText/edit[@ref='308'] -opus/document/letterText/edit[@ref='3080'] -opus/document/letterText/edit[@ref='3081'] -opus/document/letterText/edit[@ref='3082'] -opus/document/letterText/edit[@ref='3083'] -opus/document/letterText/edit[@ref='3084'] -opus/document/letterText/edit[@ref='3085'] -opus/document/letterText/edit[@ref='3086'] -opus/document/letterText/edit[@ref='3087'] -opus/document/letterText/edit[@ref='3088'] -opus/document/letterText/edit[@ref='3089'] -opus/document/letterText/edit[@ref='309'] -opus/document/letterText/edit[@ref='3090'] -opus/document/letterText/edit[@ref='3091'] -opus/document/letterText/edit[@ref='3092'] -opus/document/letterText/edit[@ref='3094'] -opus/document/letterText/edit[@ref='3095'] -opus/document/letterText/edit[@ref='3097'] -opus/document/letterText/edit[@ref='3098'] -opus/document/letterText/edit[@ref='31'] -opus/document/letterText/edit[@ref='310'] -opus/document/letterText/edit[@ref='3100'] -opus/document/letterText/edit[@ref='3101'] -opus/document/letterText/edit[@ref='3102'] -opus/document/letterText/edit[@ref='3103'] -opus/document/letterText/edit[@ref='3104'] -opus/document/letterText/edit[@ref='3105'] -opus/document/letterText/edit[@ref='3106'] -opus/document/letterText/edit[@ref='3107'] -opus/document/letterText/edit[@ref='3108'] -opus/document/letterText/edit[@ref='3109'] -opus/document/letterText/edit[@ref='311'] -opus/document/letterText/edit[@ref='3110'] -opus/document/letterText/edit[@ref='3111'] -opus/document/letterText/edit[@ref='3112'] -opus/document/letterText/edit[@ref='3113'] -opus/document/letterText/edit[@ref='3114'] -opus/document/letterText/edit[@ref='3115'] -opus/document/letterText/edit[@ref='3116'] -opus/document/letterText/edit[@ref='3117'] -opus/document/letterText/edit[@ref='3118'] -opus/document/letterText/edit[@ref='3119'] -opus/document/letterText/edit[@ref='312'] -opus/document/letterText/edit[@ref='3120'] -opus/document/letterText/edit[@ref='3121'] -opus/document/letterText/edit[@ref='3122'] -opus/document/letterText/edit[@ref='3123'] -opus/document/letterText/edit[@ref='3124'] -opus/document/letterText/edit[@ref='3125'] -opus/document/letterText/edit[@ref='3126'] -opus/document/letterText/edit[@ref='3127'] -opus/document/letterText/edit[@ref='3128'] -opus/document/letterText/edit[@ref='3129'] -opus/document/letterText/edit[@ref='313'] -opus/document/letterText/edit[@ref='3130'] -opus/document/letterText/edit[@ref='3131'] -opus/document/letterText/edit[@ref='3132'] -opus/document/letterText/edit[@ref='3133'] -opus/document/letterText/edit[@ref='3134'] -opus/document/letterText/edit[@ref='3135'] -opus/document/letterText/edit[@ref='3136'] -opus/document/letterText/edit[@ref='3137'] -opus/document/letterText/edit[@ref='3138'] -opus/document/letterText/edit[@ref='3139'] -opus/document/letterText/edit[@ref='314'] -opus/document/letterText/edit[@ref='3140'] -opus/document/letterText/edit[@ref='3141'] -opus/document/letterText/edit[@ref='3142'] -opus/document/letterText/edit[@ref='3143'] -opus/document/letterText/edit[@ref='3144'] -opus/document/letterText/edit[@ref='3145'] -opus/document/letterText/edit[@ref='3146'] -opus/document/letterText/edit[@ref='3147'] -opus/document/letterText/edit[@ref='3148'] -opus/document/letterText/edit[@ref='3149'] -opus/document/letterText/edit[@ref='315'] -opus/document/letterText/edit[@ref='3150'] -opus/document/letterText/edit[@ref='3151'] -opus/document/letterText/edit[@ref='3152'] -opus/document/letterText/edit[@ref='3153'] -opus/document/letterText/edit[@ref='3154'] -opus/document/letterText/edit[@ref='3155'] -opus/document/letterText/edit[@ref='3156'] -opus/document/letterText/edit[@ref='3157'] -opus/document/letterText/edit[@ref='3158'] -opus/document/letterText/edit[@ref='3159'] -opus/document/letterText/edit[@ref='316'] -opus/document/letterText/edit[@ref='3160'] -opus/document/letterText/edit[@ref='3161'] -opus/document/letterText/edit[@ref='3162'] -opus/document/letterText/edit[@ref='3163'] -opus/document/letterText/edit[@ref='3164'] -opus/document/letterText/edit[@ref='3165'] -opus/document/letterText/edit[@ref='3166'] -opus/document/letterText/edit[@ref='3167'] -opus/document/letterText/edit[@ref='3168'] -opus/document/letterText/edit[@ref='3169'] -opus/document/letterText/edit[@ref='317'] -opus/document/letterText/edit[@ref='3170'] -opus/document/letterText/edit[@ref='3171'] -opus/document/letterText/edit[@ref='3172'] -opus/document/letterText/edit[@ref='3173'] -opus/document/letterText/edit[@ref='3174'] -opus/document/letterText/edit[@ref='3175'] -opus/document/letterText/edit[@ref='3176'] -opus/document/letterText/edit[@ref='3177'] -opus/document/letterText/edit[@ref='3178'] -opus/document/letterText/edit[@ref='3179'] -opus/document/letterText/edit[@ref='318'] -opus/document/letterText/edit[@ref='3180'] -opus/document/letterText/edit[@ref='3181'] -opus/document/letterText/edit[@ref='3182'] -opus/document/letterText/edit[@ref='3183'] -opus/document/letterText/edit[@ref='3184'] -opus/document/letterText/edit[@ref='3185'] -opus/document/letterText/edit[@ref='3186'] -opus/document/letterText/edit[@ref='3187'] -opus/document/letterText/edit[@ref='3188'] -opus/document/letterText/edit[@ref='3189'] -opus/document/letterText/edit[@ref='319'] -opus/document/letterText/edit[@ref='3190'] -opus/document/letterText/edit[@ref='3191'] -opus/document/letterText/edit[@ref='3192'] -opus/document/letterText/edit[@ref='3193'] -opus/document/letterText/edit[@ref='3194'] -opus/document/letterText/edit[@ref='3195'] -opus/document/letterText/edit[@ref='3196'] -opus/document/letterText/edit[@ref='3197'] -opus/document/letterText/edit[@ref='3198'] -opus/document/letterText/edit[@ref='3199'] -opus/document/letterText/edit[@ref='32'] -opus/document/letterText/edit[@ref='320'] -opus/document/letterText/edit[@ref='3200'] -opus/document/letterText/edit[@ref='3201'] -opus/document/letterText/edit[@ref='3202'] -opus/document/letterText/edit[@ref='3203'] -opus/document/letterText/edit[@ref='3204'] -opus/document/letterText/edit[@ref='3205'] -opus/document/letterText/edit[@ref='3207'] -opus/document/letterText/edit[@ref='3208'] -opus/document/letterText/edit[@ref='3209'] -opus/document/letterText/edit[@ref='321'] -opus/document/letterText/edit[@ref='3210'] -opus/document/letterText/edit[@ref='3211'] -opus/document/letterText/edit[@ref='3212'] -opus/document/letterText/edit[@ref='3213'] -opus/document/letterText/edit[@ref='3214'] -opus/document/letterText/edit[@ref='3215'] -opus/document/letterText/edit[@ref='3216'] -opus/document/letterText/edit[@ref='3217'] -opus/document/letterText/edit[@ref='3218'] -opus/document/letterText/edit[@ref='3219'] -opus/document/letterText/edit[@ref='322'] -opus/document/letterText/edit[@ref='3220'] -opus/document/letterText/edit[@ref='3221'] -opus/document/letterText/edit[@ref='3222'] -opus/document/letterText/edit[@ref='3223'] -opus/document/letterText/edit[@ref='3224'] -opus/document/letterText/edit[@ref='3225'] -opus/document/letterText/edit[@ref='3227'] -opus/document/letterText/edit[@ref='3228'] -opus/document/letterText/edit[@ref='3229'] -opus/document/letterText/edit[@ref='323'] -opus/document/letterText/edit[@ref='3230'] -opus/document/letterText/edit[@ref='3231'] -opus/document/letterText/edit[@ref='3232'] -opus/document/letterText/edit[@ref='3233'] -opus/document/letterText/edit[@ref='3234'] -opus/document/letterText/edit[@ref='3235'] -opus/document/letterText/edit[@ref='3236'] -opus/document/letterText/edit[@ref='3237'] -opus/document/letterText/edit[@ref='3238'] -opus/document/letterText/edit[@ref='3239'] -opus/document/letterText/edit[@ref='3240'] -opus/document/letterText/edit[@ref='3241'] -opus/document/letterText/edit[@ref='3242'] -opus/document/letterText/edit[@ref='3243'] -opus/document/letterText/edit[@ref='3246'] -opus/document/letterText/edit[@ref='3247'] -opus/document/letterText/edit[@ref='3248'] -opus/document/letterText/edit[@ref='3249'] -opus/document/letterText/edit[@ref='3250'] -opus/document/letterText/edit[@ref='3251'] -opus/document/letterText/edit[@ref='3252'] -opus/document/letterText/edit[@ref='3253'] -opus/document/letterText/edit[@ref='3254'] -opus/document/letterText/edit[@ref='3255'] -opus/document/letterText/edit[@ref='3256'] -opus/document/letterText/edit[@ref='3257'] -opus/document/letterText/edit[@ref='3258'] -opus/document/letterText/edit[@ref='3259'] -opus/document/letterText/edit[@ref='326'] -opus/document/letterText/edit[@ref='3260'] -opus/document/letterText/edit[@ref='3261'] -opus/document/letterText/edit[@ref='3262'] -opus/document/letterText/edit[@ref='3263'] -opus/document/letterText/edit[@ref='3264'] -opus/document/letterText/edit[@ref='3265'] -opus/document/letterText/edit[@ref='3266'] -opus/document/letterText/edit[@ref='3267'] -opus/document/letterText/edit[@ref='3268'] -opus/document/letterText/edit[@ref='3269'] -opus/document/letterText/edit[@ref='327'] -opus/document/letterText/edit[@ref='3270'] -opus/document/letterText/edit[@ref='3271'] -opus/document/letterText/edit[@ref='3273'] -opus/document/letterText/edit[@ref='3274'] -opus/document/letterText/edit[@ref='3275'] -opus/document/letterText/edit[@ref='3276'] -opus/document/letterText/edit[@ref='3277'] -opus/document/letterText/edit[@ref='3279'] -opus/document/letterText/edit[@ref='328'] -opus/document/letterText/edit[@ref='3280'] -opus/document/letterText/edit[@ref='3281'] -opus/document/letterText/edit[@ref='3282'] -opus/document/letterText/edit[@ref='3283'] -opus/document/letterText/edit[@ref='3284'] -opus/document/letterText/edit[@ref='3285'] -opus/document/letterText/edit[@ref='3286'] -opus/document/letterText/edit[@ref='3287'] -opus/document/letterText/edit[@ref='3288'] -opus/document/letterText/edit[@ref='3289'] -opus/document/letterText/edit[@ref='329'] -opus/document/letterText/edit[@ref='3290'] -opus/document/letterText/edit[@ref='3291'] -opus/document/letterText/edit[@ref='3292'] -opus/document/letterText/edit[@ref='3293'] -opus/document/letterText/edit[@ref='3294'] -opus/document/letterText/edit[@ref='3295'] -opus/document/letterText/edit[@ref='3296'] -opus/document/letterText/edit[@ref='3297'] -opus/document/letterText/edit[@ref='3298'] -opus/document/letterText/edit[@ref='3299'] -opus/document/letterText/edit[@ref='33'] -opus/document/letterText/edit[@ref='330'] -opus/document/letterText/edit[@ref='3300'] -opus/document/letterText/edit[@ref='3301'] -opus/document/letterText/edit[@ref='3302'] -opus/document/letterText/edit[@ref='3303'] -opus/document/letterText/edit[@ref='3304'] -opus/document/letterText/edit[@ref='3305'] -opus/document/letterText/edit[@ref='3306'] -opus/document/letterText/edit[@ref='3307'] -opus/document/letterText/edit[@ref='3308'] -opus/document/letterText/edit[@ref='3309'] -opus/document/letterText/edit[@ref='331'] -opus/document/letterText/edit[@ref='3312'] -opus/document/letterText/edit[@ref='3313'] -opus/document/letterText/edit[@ref='3314'] -opus/document/letterText/edit[@ref='3315'] -opus/document/letterText/edit[@ref='3316'] -opus/document/letterText/edit[@ref='3317'] -opus/document/letterText/edit[@ref='3318'] -opus/document/letterText/edit[@ref='3319'] -opus/document/letterText/edit[@ref='332'] -opus/document/letterText/edit[@ref='3320'] -opus/document/letterText/edit[@ref='3321'] -opus/document/letterText/edit[@ref='3322'] -opus/document/letterText/edit[@ref='3323'] -opus/document/letterText/edit[@ref='3324'] -opus/document/letterText/edit[@ref='3325'] -opus/document/letterText/edit[@ref='3326'] -opus/document/letterText/edit[@ref='3327'] -opus/document/letterText/edit[@ref='3328'] -opus/document/letterText/edit[@ref='3329'] -opus/document/letterText/edit[@ref='333'] -opus/document/letterText/edit[@ref='3330'] -opus/document/letterText/edit[@ref='3333'] -opus/document/letterText/edit[@ref='3334'] -opus/document/letterText/edit[@ref='3335'] -opus/document/letterText/edit[@ref='3336'] -opus/document/letterText/edit[@ref='3337'] -opus/document/letterText/edit[@ref='3338'] -opus/document/letterText/edit[@ref='3339'] -opus/document/letterText/edit[@ref='334'] -opus/document/letterText/edit[@ref='3340'] -opus/document/letterText/edit[@ref='3342'] -opus/document/letterText/edit[@ref='3343'] -opus/document/letterText/edit[@ref='3344'] -opus/document/letterText/edit[@ref='3345'] -opus/document/letterText/edit[@ref='3346'] -opus/document/letterText/edit[@ref='3351'] -opus/document/letterText/edit[@ref='3352'] -opus/document/letterText/edit[@ref='3353'] -opus/document/letterText/edit[@ref='3354'] -opus/document/letterText/edit[@ref='3357'] -opus/document/letterText/edit[@ref='3358'] -opus/document/letterText/edit[@ref='3359'] -opus/document/letterText/edit[@ref='336'] -opus/document/letterText/edit[@ref='3360'] -opus/document/letterText/edit[@ref='3361'] -opus/document/letterText/edit[@ref='3362'] -opus/document/letterText/edit[@ref='3363'] -opus/document/letterText/edit[@ref='3364'] -opus/document/letterText/edit[@ref='3365'] -opus/document/letterText/edit[@ref='3366'] -opus/document/letterText/edit[@ref='3367'] -opus/document/letterText/edit[@ref='3368'] -opus/document/letterText/edit[@ref='3369'] -opus/document/letterText/edit[@ref='337'] -opus/document/letterText/edit[@ref='3370'] -opus/document/letterText/edit[@ref='3371'] -opus/document/letterText/edit[@ref='3372'] -opus/document/letterText/edit[@ref='3373'] -opus/document/letterText/edit[@ref='3374'] -opus/document/letterText/edit[@ref='3375'] -opus/document/letterText/edit[@ref='3376'] -opus/document/letterText/edit[@ref='3377'] -opus/document/letterText/edit[@ref='3378'] -opus/document/letterText/edit[@ref='3379'] -opus/document/letterText/edit[@ref='338'] -opus/document/letterText/edit[@ref='3380'] -opus/document/letterText/edit[@ref='3381'] -opus/document/letterText/edit[@ref='3382'] -opus/document/letterText/edit[@ref='3383'] -opus/document/letterText/edit[@ref='3384'] -opus/document/letterText/edit[@ref='3385'] -opus/document/letterText/edit[@ref='3386'] -opus/document/letterText/edit[@ref='3387'] -opus/document/letterText/edit[@ref='3388'] -opus/document/letterText/edit[@ref='3389'] -opus/document/letterText/edit[@ref='339'] -opus/document/letterText/edit[@ref='3390'] -opus/document/letterText/edit[@ref='3391'] -opus/document/letterText/edit[@ref='3392'] -opus/document/letterText/edit[@ref='3393'] -opus/document/letterText/edit[@ref='3394'] -opus/document/letterText/edit[@ref='3395'] -opus/document/letterText/edit[@ref='3396'] -opus/document/letterText/edit[@ref='3397'] -opus/document/letterText/edit[@ref='3398'] -opus/document/letterText/edit[@ref='34'] -opus/document/letterText/edit[@ref='340'] -opus/document/letterText/edit[@ref='3400'] -opus/document/letterText/edit[@ref='3401'] -opus/document/letterText/edit[@ref='3402'] -opus/document/letterText/edit[@ref='3403'] -opus/document/letterText/edit[@ref='3404'] -opus/document/letterText/edit[@ref='3405'] -opus/document/letterText/edit[@ref='3406'] -opus/document/letterText/edit[@ref='3407'] -opus/document/letterText/edit[@ref='3408'] -opus/document/letterText/edit[@ref='3409'] -opus/document/letterText/edit[@ref='341'] -opus/document/letterText/edit[@ref='3410'] -opus/document/letterText/edit[@ref='3411'] -opus/document/letterText/edit[@ref='3413'] -opus/document/letterText/edit[@ref='3414'] -opus/document/letterText/edit[@ref='3415'] -opus/document/letterText/edit[@ref='3416'] -opus/document/letterText/edit[@ref='3417'] -opus/document/letterText/edit[@ref='3418'] -opus/document/letterText/edit[@ref='3419'] -opus/document/letterText/edit[@ref='342'] -opus/document/letterText/edit[@ref='3420'] -opus/document/letterText/edit[@ref='3421'] -opus/document/letterText/edit[@ref='3422'] -opus/document/letterText/edit[@ref='3423'] -opus/document/letterText/edit[@ref='3424'] -opus/document/letterText/edit[@ref='3425'] -opus/document/letterText/edit[@ref='3426'] -opus/document/letterText/edit[@ref='3427'] -opus/document/letterText/edit[@ref='3429'] -opus/document/letterText/edit[@ref='343'] -opus/document/letterText/edit[@ref='3430'] -opus/document/letterText/edit[@ref='3431'] -opus/document/letterText/edit[@ref='3432'] -opus/document/letterText/edit[@ref='3433'] -opus/document/letterText/edit[@ref='3434'] -opus/document/letterText/edit[@ref='3435'] -opus/document/letterText/edit[@ref='3436'] -opus/document/letterText/edit[@ref='3437'] -opus/document/letterText/edit[@ref='3438'] -opus/document/letterText/edit[@ref='3439'] -opus/document/letterText/edit[@ref='344'] -opus/document/letterText/edit[@ref='3440'] -opus/document/letterText/edit[@ref='3441'] -opus/document/letterText/edit[@ref='3442'] -opus/document/letterText/edit[@ref='3443'] -opus/document/letterText/edit[@ref='3444'] -opus/document/letterText/edit[@ref='3445'] -opus/document/letterText/edit[@ref='3446'] -opus/document/letterText/edit[@ref='3448'] -opus/document/letterText/edit[@ref='3449'] -opus/document/letterText/edit[@ref='345'] -opus/document/letterText/edit[@ref='3450'] -opus/document/letterText/edit[@ref='3451'] -opus/document/letterText/edit[@ref='3452'] -opus/document/letterText/edit[@ref='3453'] -opus/document/letterText/edit[@ref='3454'] -opus/document/letterText/edit[@ref='3455'] -opus/document/letterText/edit[@ref='3456'] -opus/document/letterText/edit[@ref='3457'] -opus/document/letterText/edit[@ref='3458'] -opus/document/letterText/edit[@ref='3459'] -opus/document/letterText/edit[@ref='346'] -opus/document/letterText/edit[@ref='3460'] -opus/document/letterText/edit[@ref='3461'] -opus/document/letterText/edit[@ref='3462'] -opus/document/letterText/edit[@ref='3463'] -opus/document/letterText/edit[@ref='3464'] -opus/document/letterText/edit[@ref='3465'] -opus/document/letterText/edit[@ref='3466'] -opus/document/letterText/edit[@ref='3467'] -opus/document/letterText/edit[@ref='3468'] -opus/document/letterText/edit[@ref='3469'] -opus/document/letterText/edit[@ref='347'] -opus/document/letterText/edit[@ref='3470'] -opus/document/letterText/edit[@ref='3471'] -opus/document/letterText/edit[@ref='3472'] -opus/document/letterText/edit[@ref='3473'] -opus/document/letterText/edit[@ref='3474'] -opus/document/letterText/edit[@ref='3475'] -opus/document/letterText/edit[@ref='3476'] -opus/document/letterText/edit[@ref='3477'] -opus/document/letterText/edit[@ref='3478'] -opus/document/letterText/edit[@ref='3479'] -opus/document/letterText/edit[@ref='348'] -opus/document/letterText/edit[@ref='3480'] -opus/document/letterText/edit[@ref='3481'] -opus/document/letterText/edit[@ref='3482'] -opus/document/letterText/edit[@ref='3483'] -opus/document/letterText/edit[@ref='3484'] -opus/document/letterText/edit[@ref='3485'] -opus/document/letterText/edit[@ref='3486'] -opus/document/letterText/edit[@ref='3487'] -opus/document/letterText/edit[@ref='3488'] -opus/document/letterText/edit[@ref='3489'] -opus/document/letterText/edit[@ref='349'] -opus/document/letterText/edit[@ref='3490'] -opus/document/letterText/edit[@ref='3491'] -opus/document/letterText/edit[@ref='3492'] -opus/document/letterText/edit[@ref='3493'] -opus/document/letterText/edit[@ref='3494'] -opus/document/letterText/edit[@ref='3495'] -opus/document/letterText/edit[@ref='3496'] -opus/document/letterText/edit[@ref='3497'] -opus/document/letterText/edit[@ref='3498'] -opus/document/letterText/edit[@ref='3499'] -opus/document/letterText/edit[@ref='35'] -opus/document/letterText/edit[@ref='350'] -opus/document/letterText/edit[@ref='3500'] -opus/document/letterText/edit[@ref='3501'] -opus/document/letterText/edit[@ref='3503'] -opus/document/letterText/edit[@ref='3504'] -opus/document/letterText/edit[@ref='3505'] -opus/document/letterText/edit[@ref='3506'] -opus/document/letterText/edit[@ref='3507'] -opus/document/letterText/edit[@ref='3508'] -opus/document/letterText/edit[@ref='3509'] -opus/document/letterText/edit[@ref='351'] -opus/document/letterText/edit[@ref='3510'] -opus/document/letterText/edit[@ref='3511'] -opus/document/letterText/edit[@ref='3512'] -opus/document/letterText/edit[@ref='3515'] -opus/document/letterText/edit[@ref='3516'] -opus/document/letterText/edit[@ref='3517'] -opus/document/letterText/edit[@ref='3518'] -opus/document/letterText/edit[@ref='352'] -opus/document/letterText/edit[@ref='3520'] -opus/document/letterText/edit[@ref='3521'] -opus/document/letterText/edit[@ref='3522'] -opus/document/letterText/edit[@ref='3523'] -opus/document/letterText/edit[@ref='3524'] -opus/document/letterText/edit[@ref='3525'] -opus/document/letterText/edit[@ref='3526'] -opus/document/letterText/edit[@ref='3527'] -opus/document/letterText/edit[@ref='3528'] -opus/document/letterText/edit[@ref='3529'] -opus/document/letterText/edit[@ref='353'] -opus/document/letterText/edit[@ref='3530'] -opus/document/letterText/edit[@ref='3531'] -opus/document/letterText/edit[@ref='3532'] -opus/document/letterText/edit[@ref='3533'] -opus/document/letterText/edit[@ref='3534'] -opus/document/letterText/edit[@ref='3535'] -opus/document/letterText/edit[@ref='3536'] -opus/document/letterText/edit[@ref='3537'] -opus/document/letterText/edit[@ref='3538'] -opus/document/letterText/edit[@ref='3539'] -opus/document/letterText/edit[@ref='354'] -opus/document/letterText/edit[@ref='3540'] -opus/document/letterText/edit[@ref='3541'] -opus/document/letterText/edit[@ref='3542'] -opus/document/letterText/edit[@ref='3543'] -opus/document/letterText/edit[@ref='3544'] -opus/document/letterText/edit[@ref='3545'] -opus/document/letterText/edit[@ref='3546'] -opus/document/letterText/edit[@ref='3547'] -opus/document/letterText/edit[@ref='3548'] -opus/document/letterText/edit[@ref='3549'] -opus/document/letterText/edit[@ref='355'] -opus/document/letterText/edit[@ref='3550'] -opus/document/letterText/edit[@ref='3551'] -opus/document/letterText/edit[@ref='3552'] -opus/document/letterText/edit[@ref='3554'] -opus/document/letterText/edit[@ref='3555'] -opus/document/letterText/edit[@ref='3556'] -opus/document/letterText/edit[@ref='3557'] -opus/document/letterText/edit[@ref='3558'] -opus/document/letterText/edit[@ref='3559'] -opus/document/letterText/edit[@ref='356'] -opus/document/letterText/edit[@ref='3560'] -opus/document/letterText/edit[@ref='3561'] -opus/document/letterText/edit[@ref='3562'] -opus/document/letterText/edit[@ref='3563'] -opus/document/letterText/edit[@ref='3564'] -opus/document/letterText/edit[@ref='3565'] -opus/document/letterText/edit[@ref='3566'] -opus/document/letterText/edit[@ref='3567'] -opus/document/letterText/edit[@ref='3568'] -opus/document/letterText/edit[@ref='3569'] -opus/document/letterText/edit[@ref='357'] -opus/document/letterText/edit[@ref='3570'] -opus/document/letterText/edit[@ref='3571'] -opus/document/letterText/edit[@ref='3572'] -opus/document/letterText/edit[@ref='3573'] -opus/document/letterText/edit[@ref='3574'] -opus/document/letterText/edit[@ref='3575'] -opus/document/letterText/edit[@ref='3576'] -opus/document/letterText/edit[@ref='3577'] -opus/document/letterText/edit[@ref='3578'] -opus/document/letterText/edit[@ref='3579'] -opus/document/letterText/edit[@ref='358'] -opus/document/letterText/edit[@ref='3580'] -opus/document/letterText/edit[@ref='3581'] -opus/document/letterText/edit[@ref='3582'] -opus/document/letterText/edit[@ref='3583'] -opus/document/letterText/edit[@ref='3584'] -opus/document/letterText/edit[@ref='3585'] -opus/document/letterText/edit[@ref='3587'] -opus/document/letterText/edit[@ref='3588'] -opus/document/letterText/edit[@ref='3589'] -opus/document/letterText/edit[@ref='359'] -opus/document/letterText/edit[@ref='3590'] -opus/document/letterText/edit[@ref='3591'] -opus/document/letterText/edit[@ref='3592'] -opus/document/letterText/edit[@ref='3593'] -opus/document/letterText/edit[@ref='3594'] -opus/document/letterText/edit[@ref='3595'] -opus/document/letterText/edit[@ref='3596'] -opus/document/letterText/edit[@ref='3597'] -opus/document/letterText/edit[@ref='3598'] -opus/document/letterText/edit[@ref='3599'] -opus/document/letterText/edit[@ref='360'] -opus/document/letterText/edit[@ref='3600'] -opus/document/letterText/edit[@ref='3601'] -opus/document/letterText/edit[@ref='3602'] -opus/document/letterText/edit[@ref='3603'] -opus/document/letterText/edit[@ref='3604'] -opus/document/letterText/edit[@ref='3605'] -opus/document/letterText/edit[@ref='3606'] -opus/document/letterText/edit[@ref='3607'] -opus/document/letterText/edit[@ref='3608'] -opus/document/letterText/edit[@ref='3609'] -opus/document/letterText/edit[@ref='361'] -opus/document/letterText/edit[@ref='3610'] -opus/document/letterText/edit[@ref='3611'] -opus/document/letterText/edit[@ref='3612'] -opus/document/letterText/edit[@ref='3613'] -opus/document/letterText/edit[@ref='3614'] -opus/document/letterText/edit[@ref='3615'] -opus/document/letterText/edit[@ref='3616'] -opus/document/letterText/edit[@ref='3617'] -opus/document/letterText/edit[@ref='3618'] -opus/document/letterText/edit[@ref='3619'] -opus/document/letterText/edit[@ref='362'] -opus/document/letterText/edit[@ref='3621'] -opus/document/letterText/edit[@ref='3622'] -opus/document/letterText/edit[@ref='3623'] -opus/document/letterText/edit[@ref='3624'] -opus/document/letterText/edit[@ref='3625'] -opus/document/letterText/edit[@ref='3626'] -opus/document/letterText/edit[@ref='3627'] -opus/document/letterText/edit[@ref='3628'] -opus/document/letterText/edit[@ref='3629'] -opus/document/letterText/edit[@ref='3630'] -opus/document/letterText/edit[@ref='3631'] -opus/document/letterText/edit[@ref='3632'] -opus/document/letterText/edit[@ref='3633'] -opus/document/letterText/edit[@ref='3634'] -opus/document/letterText/edit[@ref='3635'] -opus/document/letterText/edit[@ref='3636'] -opus/document/letterText/edit[@ref='3637'] -opus/document/letterText/edit[@ref='3638'] -opus/document/letterText/edit[@ref='3639'] -opus/document/letterText/edit[@ref='3641'] -opus/document/letterText/edit[@ref='3642'] -opus/document/letterText/edit[@ref='3643'] -opus/document/letterText/edit[@ref='3644'] -opus/document/letterText/edit[@ref='3645'] -opus/document/letterText/edit[@ref='3646'] -opus/document/letterText/edit[@ref='3647'] -opus/document/letterText/edit[@ref='3648'] -opus/document/letterText/edit[@ref='3649'] -opus/document/letterText/edit[@ref='3650'] -opus/document/letterText/edit[@ref='3651'] -opus/document/letterText/edit[@ref='3653'] -opus/document/letterText/edit[@ref='3654'] -opus/document/letterText/edit[@ref='3655'] -opus/document/letterText/edit[@ref='3656'] -opus/document/letterText/edit[@ref='3657'] -opus/document/letterText/edit[@ref='3658'] -opus/document/letterText/edit[@ref='3659'] -opus/document/letterText/edit[@ref='3660'] -opus/document/letterText/edit[@ref='3661'] -opus/document/letterText/edit[@ref='3663'] -opus/document/letterText/edit[@ref='3664'] -opus/document/letterText/edit[@ref='3665'] -opus/document/letterText/edit[@ref='3666'] -opus/document/letterText/edit[@ref='3667'] -opus/document/letterText/edit[@ref='3668'] -opus/document/letterText/edit[@ref='3669'] -opus/document/letterText/edit[@ref='3670'] -opus/document/letterText/edit[@ref='3671'] -opus/document/letterText/edit[@ref='3672'] -opus/document/letterText/edit[@ref='3673'] -opus/document/letterText/edit[@ref='3674'] -opus/document/letterText/edit[@ref='3675'] -opus/document/letterText/edit[@ref='3676'] -opus/document/letterText/edit[@ref='3677'] -opus/document/letterText/edit[@ref='3678'] -opus/document/letterText/edit[@ref='3679'] -opus/document/letterText/edit[@ref='368'] -opus/document/letterText/edit[@ref='3680'] -opus/document/letterText/edit[@ref='3681'] -opus/document/letterText/edit[@ref='3682'] -opus/document/letterText/edit[@ref='3683'] -opus/document/letterText/edit[@ref='3684'] -opus/document/letterText/edit[@ref='3685'] -opus/document/letterText/edit[@ref='3686'] -opus/document/letterText/edit[@ref='3687'] -opus/document/letterText/edit[@ref='3688'] -opus/document/letterText/edit[@ref='3689'] -opus/document/letterText/edit[@ref='369'] -opus/document/letterText/edit[@ref='3690'] -opus/document/letterText/edit[@ref='3691'] -opus/document/letterText/edit[@ref='3692'] -opus/document/letterText/edit[@ref='3695'] -opus/document/letterText/edit[@ref='3696'] -opus/document/letterText/edit[@ref='3697'] -opus/document/letterText/edit[@ref='3698'] -opus/document/letterText/edit[@ref='3699'] -opus/document/letterText/edit[@ref='37'] -opus/document/letterText/edit[@ref='370'] -opus/document/letterText/edit[@ref='3700'] -opus/document/letterText/edit[@ref='3701'] -opus/document/letterText/edit[@ref='3702'] -opus/document/letterText/edit[@ref='3703'] -opus/document/letterText/edit[@ref='3704'] -opus/document/letterText/edit[@ref='3705'] -opus/document/letterText/edit[@ref='3706'] -opus/document/letterText/edit[@ref='3707'] -opus/document/letterText/edit[@ref='3708'] -opus/document/letterText/edit[@ref='371'] -opus/document/letterText/edit[@ref='3710'] -opus/document/letterText/edit[@ref='3711'] -opus/document/letterText/edit[@ref='3712'] -opus/document/letterText/edit[@ref='3713'] -opus/document/letterText/edit[@ref='3714'] -opus/document/letterText/edit[@ref='3715'] -opus/document/letterText/edit[@ref='3716'] -opus/document/letterText/edit[@ref='3717'] -opus/document/letterText/edit[@ref='3718'] -opus/document/letterText/edit[@ref='3719'] -opus/document/letterText/edit[@ref='372'] -opus/document/letterText/edit[@ref='3720'] -opus/document/letterText/edit[@ref='3721'] -opus/document/letterText/edit[@ref='3722'] -opus/document/letterText/edit[@ref='3723'] -opus/document/letterText/edit[@ref='3724'] -opus/document/letterText/edit[@ref='3725'] -opus/document/letterText/edit[@ref='3726'] -opus/document/letterText/edit[@ref='3727'] -opus/document/letterText/edit[@ref='3728'] -opus/document/letterText/edit[@ref='3729'] -opus/document/letterText/edit[@ref='373'] -opus/document/letterText/edit[@ref='3730'] -opus/document/letterText/edit[@ref='3731'] -opus/document/letterText/edit[@ref='3732'] -opus/document/letterText/edit[@ref='3733'] -opus/document/letterText/edit[@ref='3734'] -opus/document/letterText/edit[@ref='3735'] -opus/document/letterText/edit[@ref='3736'] -opus/document/letterText/edit[@ref='3737'] -opus/document/letterText/edit[@ref='3738'] -opus/document/letterText/edit[@ref='3739'] -opus/document/letterText/edit[@ref='374'] -opus/document/letterText/edit[@ref='3740'] -opus/document/letterText/edit[@ref='3742'] -opus/document/letterText/edit[@ref='3743'] -opus/document/letterText/edit[@ref='3744'] -opus/document/letterText/edit[@ref='3745'] -opus/document/letterText/edit[@ref='3746'] -opus/document/letterText/edit[@ref='3747'] -opus/document/letterText/edit[@ref='3748'] -opus/document/letterText/edit[@ref='3749'] -opus/document/letterText/edit[@ref='3750'] -opus/document/letterText/edit[@ref='3751'] -opus/document/letterText/edit[@ref='3752'] -opus/document/letterText/edit[@ref='3753'] -opus/document/letterText/edit[@ref='3755'] -opus/document/letterText/edit[@ref='3756'] -opus/document/letterText/edit[@ref='3757'] -opus/document/letterText/edit[@ref='3758'] -opus/document/letterText/edit[@ref='3759'] -opus/document/letterText/edit[@ref='376'] -opus/document/letterText/edit[@ref='3760'] -opus/document/letterText/edit[@ref='3761'] -opus/document/letterText/edit[@ref='3762'] -opus/document/letterText/edit[@ref='3763'] -opus/document/letterText/edit[@ref='3764'] -opus/document/letterText/edit[@ref='3765'] -opus/document/letterText/edit[@ref='3766'] -opus/document/letterText/edit[@ref='3767'] -opus/document/letterText/edit[@ref='3768'] -opus/document/letterText/edit[@ref='3769'] -opus/document/letterText/edit[@ref='377'] -opus/document/letterText/edit[@ref='3770'] -opus/document/letterText/edit[@ref='3771'] -opus/document/letterText/edit[@ref='3772'] -opus/document/letterText/edit[@ref='3773'] -opus/document/letterText/edit[@ref='3774'] -opus/document/letterText/edit[@ref='3775'] -opus/document/letterText/edit[@ref='3778'] -opus/document/letterText/edit[@ref='3779'] -opus/document/letterText/edit[@ref='3780'] -opus/document/letterText/edit[@ref='3781'] -opus/document/letterText/edit[@ref='3782'] -opus/document/letterText/edit[@ref='3786'] -opus/document/letterText/edit[@ref='3787'] -opus/document/letterText/edit[@ref='3788'] -opus/document/letterText/edit[@ref='3789'] -opus/document/letterText/edit[@ref='379'] -opus/document/letterText/edit[@ref='3790'] -opus/document/letterText/edit[@ref='3791'] -opus/document/letterText/edit[@ref='3792'] -opus/document/letterText/edit[@ref='3793'] -opus/document/letterText/edit[@ref='3794'] -opus/document/letterText/edit[@ref='3795'] -opus/document/letterText/edit[@ref='3796'] -opus/document/letterText/edit[@ref='3797'] -opus/document/letterText/edit[@ref='3798'] -opus/document/letterText/edit[@ref='3799'] -opus/document/letterText/edit[@ref='38'] -opus/document/letterText/edit[@ref='380'] -opus/document/letterText/edit[@ref='3800'] -opus/document/letterText/edit[@ref='3801'] -opus/document/letterText/edit[@ref='3802'] -opus/document/letterText/edit[@ref='3804'] -opus/document/letterText/edit[@ref='3805'] -opus/document/letterText/edit[@ref='3806'] -opus/document/letterText/edit[@ref='3808'] -opus/document/letterText/edit[@ref='3809'] -opus/document/letterText/edit[@ref='381'] -opus/document/letterText/edit[@ref='3810'] -opus/document/letterText/edit[@ref='3812'] -opus/document/letterText/edit[@ref='3813'] -opus/document/letterText/edit[@ref='3815'] -opus/document/letterText/edit[@ref='3816'] -opus/document/letterText/edit[@ref='3817'] -opus/document/letterText/edit[@ref='3818'] -opus/document/letterText/edit[@ref='3819'] -opus/document/letterText/edit[@ref='382'] -opus/document/letterText/edit[@ref='3820'] -opus/document/letterText/edit[@ref='3821'] -opus/document/letterText/edit[@ref='3822'] -opus/document/letterText/edit[@ref='3823'] -opus/document/letterText/edit[@ref='3824'] -opus/document/letterText/edit[@ref='3825'] -opus/document/letterText/edit[@ref='3826'] -opus/document/letterText/edit[@ref='3827'] -opus/document/letterText/edit[@ref='3828'] -opus/document/letterText/edit[@ref='3829'] -opus/document/letterText/edit[@ref='3830'] -opus/document/letterText/edit[@ref='3831'] -opus/document/letterText/edit[@ref='3832'] -opus/document/letterText/edit[@ref='3833'] -opus/document/letterText/edit[@ref='3834'] -opus/document/letterText/edit[@ref='3835'] -opus/document/letterText/edit[@ref='3836'] -opus/document/letterText/edit[@ref='3837'] -opus/document/letterText/edit[@ref='3838'] -opus/document/letterText/edit[@ref='3839'] -opus/document/letterText/edit[@ref='3840'] -opus/document/letterText/edit[@ref='3841'] -opus/document/letterText/edit[@ref='3842'] -opus/document/letterText/edit[@ref='3843'] -opus/document/letterText/edit[@ref='3844'] -opus/document/letterText/edit[@ref='3845'] -opus/document/letterText/edit[@ref='3846'] -opus/document/letterText/edit[@ref='3847'] -opus/document/letterText/edit[@ref='3848'] -opus/document/letterText/edit[@ref='3849'] -opus/document/letterText/edit[@ref='385'] -opus/document/letterText/edit[@ref='3850'] -opus/document/letterText/edit[@ref='3851'] -opus/document/letterText/edit[@ref='3852'] -opus/document/letterText/edit[@ref='3853'] -opus/document/letterText/edit[@ref='3854'] -opus/document/letterText/edit[@ref='3855'] -opus/document/letterText/edit[@ref='3856'] -opus/document/letterText/edit[@ref='3857'] -opus/document/letterText/edit[@ref='3858'] -opus/document/letterText/edit[@ref='3859'] -opus/document/letterText/edit[@ref='386'] -opus/document/letterText/edit[@ref='3861'] -opus/document/letterText/edit[@ref='3862'] -opus/document/letterText/edit[@ref='3863'] -opus/document/letterText/edit[@ref='3866'] -opus/document/letterText/edit[@ref='3867'] -opus/document/letterText/edit[@ref='3868'] -opus/document/letterText/edit[@ref='387'] -opus/document/letterText/edit[@ref='3870'] -opus/document/letterText/edit[@ref='3871'] -opus/document/letterText/edit[@ref='3872'] -opus/document/letterText/edit[@ref='3873'] -opus/document/letterText/edit[@ref='3874'] -opus/document/letterText/edit[@ref='3875'] -opus/document/letterText/edit[@ref='3876'] -opus/document/letterText/edit[@ref='3877'] -opus/document/letterText/edit[@ref='3878'] -opus/document/letterText/edit[@ref='3879'] -opus/document/letterText/edit[@ref='388'] -opus/document/letterText/edit[@ref='3880'] -opus/document/letterText/edit[@ref='3881'] -opus/document/letterText/edit[@ref='3882'] -opus/document/letterText/edit[@ref='3883'] -opus/document/letterText/edit[@ref='3884'] -opus/document/letterText/edit[@ref='3885'] -opus/document/letterText/edit[@ref='3886'] -opus/document/letterText/edit[@ref='3888'] -opus/document/letterText/edit[@ref='3889'] -opus/document/letterText/edit[@ref='3890'] -opus/document/letterText/edit[@ref='3891'] -opus/document/letterText/edit[@ref='3892'] -opus/document/letterText/edit[@ref='3894'] -opus/document/letterText/edit[@ref='3895'] -opus/document/letterText/edit[@ref='3896'] -opus/document/letterText/edit[@ref='3897'] -opus/document/letterText/edit[@ref='3898'] -opus/document/letterText/edit[@ref='3899'] -opus/document/letterText/edit[@ref='39'] -opus/document/letterText/edit[@ref='3900'] -opus/document/letterText/edit[@ref='3901'] -opus/document/letterText/edit[@ref='3902'] -opus/document/letterText/edit[@ref='3903'] -opus/document/letterText/edit[@ref='3904'] -opus/document/letterText/edit[@ref='3905'] -opus/document/letterText/edit[@ref='3906'] -opus/document/letterText/edit[@ref='3907'] -opus/document/letterText/edit[@ref='3908'] -opus/document/letterText/edit[@ref='3909'] -opus/document/letterText/edit[@ref='3910'] -opus/document/letterText/edit[@ref='3911'] -opus/document/letterText/edit[@ref='3913'] -opus/document/letterText/edit[@ref='3914'] -opus/document/letterText/edit[@ref='3915'] -opus/document/letterText/edit[@ref='3916'] -opus/document/letterText/edit[@ref='3917'] -opus/document/letterText/edit[@ref='3918'] -opus/document/letterText/edit[@ref='3919'] -opus/document/letterText/edit[@ref='3920'] -opus/document/letterText/edit[@ref='3921'] -opus/document/letterText/edit[@ref='3922'] -opus/document/letterText/edit[@ref='3923'] -opus/document/letterText/edit[@ref='3924'] -opus/document/letterText/edit[@ref='3925'] -opus/document/letterText/edit[@ref='3926'] -opus/document/letterText/edit[@ref='3927'] -opus/document/letterText/edit[@ref='3928'] -opus/document/letterText/edit[@ref='3929'] -opus/document/letterText/edit[@ref='3930'] -opus/document/letterText/edit[@ref='3931'] -opus/document/letterText/edit[@ref='3932'] -opus/document/letterText/edit[@ref='3933'] -opus/document/letterText/edit[@ref='3935'] -opus/document/letterText/edit[@ref='3937'] -opus/document/letterText/edit[@ref='3938'] -opus/document/letterText/edit[@ref='3939'] -opus/document/letterText/edit[@ref='3940'] -opus/document/letterText/edit[@ref='3941'] -opus/document/letterText/edit[@ref='3942'] -opus/document/letterText/edit[@ref='3943'] -opus/document/letterText/edit[@ref='3944'] -opus/document/letterText/edit[@ref='3945'] -opus/document/letterText/edit[@ref='3946'] -opus/document/letterText/edit[@ref='3948'] -opus/document/letterText/edit[@ref='3949'] -opus/document/letterText/edit[@ref='3951'] -opus/document/letterText/edit[@ref='3952'] -opus/document/letterText/edit[@ref='3953'] -opus/document/letterText/edit[@ref='3954'] -opus/document/letterText/edit[@ref='3955'] -opus/document/letterText/edit[@ref='3956'] -opus/document/letterText/edit[@ref='3957'] -opus/document/letterText/edit[@ref='3958'] -opus/document/letterText/edit[@ref='3959'] -opus/document/letterText/edit[@ref='3960'] -opus/document/letterText/edit[@ref='3961'] -opus/document/letterText/edit[@ref='3962'] -opus/document/letterText/edit[@ref='3963'] -opus/document/letterText/edit[@ref='3964'] -opus/document/letterText/edit[@ref='3965'] -opus/document/letterText/edit[@ref='3966'] -opus/document/letterText/edit[@ref='3967'] -opus/document/letterText/edit[@ref='3968'] -opus/document/letterText/edit[@ref='3972'] -opus/document/letterText/edit[@ref='3973'] -opus/document/letterText/edit[@ref='3975'] -opus/document/letterText/edit[@ref='3977'] -opus/document/letterText/edit[@ref='3978'] -opus/document/letterText/edit[@ref='3979'] -opus/document/letterText/edit[@ref='3980'] -opus/document/letterText/edit[@ref='3981'] -opus/document/letterText/edit[@ref='3982'] -opus/document/letterText/edit[@ref='3983'] -opus/document/letterText/edit[@ref='3984'] -opus/document/letterText/edit[@ref='3985'] -opus/document/letterText/edit[@ref='3986'] -opus/document/letterText/edit[@ref='3987'] -opus/document/letterText/edit[@ref='3988'] -opus/document/letterText/edit[@ref='3989'] -opus/document/letterText/edit[@ref='399'] -opus/document/letterText/edit[@ref='3990'] -opus/document/letterText/edit[@ref='3991'] -opus/document/letterText/edit[@ref='3992'] -opus/document/letterText/edit[@ref='3993'] -opus/document/letterText/edit[@ref='3995'] -opus/document/letterText/edit[@ref='3996'] -opus/document/letterText/edit[@ref='3997'] -opus/document/letterText/edit[@ref='3998'] -opus/document/letterText/edit[@ref='3999'] -opus/document/letterText/edit[@ref='40'] -opus/document/letterText/edit[@ref='400'] -opus/document/letterText/edit[@ref='4001'] -opus/document/letterText/edit[@ref='4002'] -opus/document/letterText/edit[@ref='4003'] -opus/document/letterText/edit[@ref='4004'] -opus/document/letterText/edit[@ref='4005'] -opus/document/letterText/edit[@ref='4006'] -opus/document/letterText/edit[@ref='4007'] -opus/document/letterText/edit[@ref='4008'] -opus/document/letterText/edit[@ref='4009'] -opus/document/letterText/edit[@ref='4010'] -opus/document/letterText/edit[@ref='4011'] -opus/document/letterText/edit[@ref='4012'] -opus/document/letterText/edit[@ref='4013'] -opus/document/letterText/edit[@ref='4014'] -opus/document/letterText/edit[@ref='4015'] -opus/document/letterText/edit[@ref='4016'] -opus/document/letterText/edit[@ref='4017'] -opus/document/letterText/edit[@ref='4018'] -opus/document/letterText/edit[@ref='4019'] -opus/document/letterText/edit[@ref='402'] -opus/document/letterText/edit[@ref='4020'] -opus/document/letterText/edit[@ref='4021'] -opus/document/letterText/edit[@ref='4022'] -opus/document/letterText/edit[@ref='4023'] -opus/document/letterText/edit[@ref='4024'] -opus/document/letterText/edit[@ref='4025'] -opus/document/letterText/edit[@ref='4026'] -opus/document/letterText/edit[@ref='4027'] -opus/document/letterText/edit[@ref='4028'] -opus/document/letterText/edit[@ref='4029'] -opus/document/letterText/edit[@ref='403'] -opus/document/letterText/edit[@ref='4030'] -opus/document/letterText/edit[@ref='4031'] -opus/document/letterText/edit[@ref='4032'] -opus/document/letterText/edit[@ref='4033'] -opus/document/letterText/edit[@ref='4034'] -opus/document/letterText/edit[@ref='4035'] -opus/document/letterText/edit[@ref='4036'] -opus/document/letterText/edit[@ref='4038'] -opus/document/letterText/edit[@ref='4039'] -opus/document/letterText/edit[@ref='404'] -opus/document/letterText/edit[@ref='4040'] -opus/document/letterText/edit[@ref='4041'] -opus/document/letterText/edit[@ref='4042'] -opus/document/letterText/edit[@ref='4043'] -opus/document/letterText/edit[@ref='4044'] -opus/document/letterText/edit[@ref='4045'] -opus/document/letterText/edit[@ref='4046'] -opus/document/letterText/edit[@ref='4047'] -opus/document/letterText/edit[@ref='4048'] -opus/document/letterText/edit[@ref='4049'] -opus/document/letterText/edit[@ref='405'] -opus/document/letterText/edit[@ref='4050'] -opus/document/letterText/edit[@ref='4051'] -opus/document/letterText/edit[@ref='4052'] -opus/document/letterText/edit[@ref='4053'] -opus/document/letterText/edit[@ref='4054'] -opus/document/letterText/edit[@ref='4055'] -opus/document/letterText/edit[@ref='4056'] -opus/document/letterText/edit[@ref='4057'] -opus/document/letterText/edit[@ref='4058'] -opus/document/letterText/edit[@ref='406'] -opus/document/letterText/edit[@ref='4060'] -opus/document/letterText/edit[@ref='4061'] -opus/document/letterText/edit[@ref='4062'] -opus/document/letterText/edit[@ref='4063'] -opus/document/letterText/edit[@ref='4064'] -opus/document/letterText/edit[@ref='4065'] -opus/document/letterText/edit[@ref='4066'] -opus/document/letterText/edit[@ref='4068'] -opus/document/letterText/edit[@ref='4069'] -opus/document/letterText/edit[@ref='407'] -opus/document/letterText/edit[@ref='4070'] -opus/document/letterText/edit[@ref='4071'] -opus/document/letterText/edit[@ref='4072'] -opus/document/letterText/edit[@ref='4073'] -opus/document/letterText/edit[@ref='4074'] -opus/document/letterText/edit[@ref='4075'] -opus/document/letterText/edit[@ref='4076'] -opus/document/letterText/edit[@ref='4077'] -opus/document/letterText/edit[@ref='4078'] -opus/document/letterText/edit[@ref='4079'] -opus/document/letterText/edit[@ref='408'] -opus/document/letterText/edit[@ref='4080'] -opus/document/letterText/edit[@ref='4081'] -opus/document/letterText/edit[@ref='4082'] -opus/document/letterText/edit[@ref='4083'] -opus/document/letterText/edit[@ref='4084'] -opus/document/letterText/edit[@ref='4085'] -opus/document/letterText/edit[@ref='4086'] -opus/document/letterText/edit[@ref='4087'] -opus/document/letterText/edit[@ref='4089'] -opus/document/letterText/edit[@ref='409'] -opus/document/letterText/edit[@ref='4095'] -opus/document/letterText/edit[@ref='4096'] -opus/document/letterText/edit[@ref='4097'] -opus/document/letterText/edit[@ref='4098'] -opus/document/letterText/edit[@ref='4099'] -opus/document/letterText/edit[@ref='41'] -opus/document/letterText/edit[@ref='410'] -opus/document/letterText/edit[@ref='4100'] -opus/document/letterText/edit[@ref='4101'] -opus/document/letterText/edit[@ref='4102'] -opus/document/letterText/edit[@ref='4103'] -opus/document/letterText/edit[@ref='4104'] -opus/document/letterText/edit[@ref='4105'] -opus/document/letterText/edit[@ref='4106'] -opus/document/letterText/edit[@ref='4107'] -opus/document/letterText/edit[@ref='4108'] -opus/document/letterText/edit[@ref='4109'] -opus/document/letterText/edit[@ref='411'] -opus/document/letterText/edit[@ref='4110'] -opus/document/letterText/edit[@ref='4111'] -opus/document/letterText/edit[@ref='4112'] -opus/document/letterText/edit[@ref='4113'] -opus/document/letterText/edit[@ref='4114'] -opus/document/letterText/edit[@ref='4115'] -opus/document/letterText/edit[@ref='4116'] -opus/document/letterText/edit[@ref='4117'] -opus/document/letterText/edit[@ref='4118'] -opus/document/letterText/edit[@ref='4119'] -opus/document/letterText/edit[@ref='412'] -opus/document/letterText/edit[@ref='4120'] -opus/document/letterText/edit[@ref='4121'] -opus/document/letterText/edit[@ref='4122'] -opus/document/letterText/edit[@ref='4123'] -opus/document/letterText/edit[@ref='4124'] -opus/document/letterText/edit[@ref='4129'] -opus/document/letterText/edit[@ref='413'] -opus/document/letterText/edit[@ref='4130'] -opus/document/letterText/edit[@ref='4131'] -opus/document/letterText/edit[@ref='4133'] -opus/document/letterText/edit[@ref='4134'] -opus/document/letterText/edit[@ref='4135'] -opus/document/letterText/edit[@ref='4136'] -opus/document/letterText/edit[@ref='4137'] -opus/document/letterText/edit[@ref='4138'] -opus/document/letterText/edit[@ref='4139'] -opus/document/letterText/edit[@ref='414'] -opus/document/letterText/edit[@ref='4140'] -opus/document/letterText/edit[@ref='4141'] -opus/document/letterText/edit[@ref='4143'] -opus/document/letterText/edit[@ref='4144'] -opus/document/letterText/edit[@ref='4146'] -opus/document/letterText/edit[@ref='4147'] -opus/document/letterText/edit[@ref='4149'] -opus/document/letterText/edit[@ref='415'] -opus/document/letterText/edit[@ref='4150'] -opus/document/letterText/edit[@ref='4151'] -opus/document/letterText/edit[@ref='4152'] -opus/document/letterText/edit[@ref='4153'] -opus/document/letterText/edit[@ref='4154'] -opus/document/letterText/edit[@ref='4155'] -opus/document/letterText/edit[@ref='4156'] -opus/document/letterText/edit[@ref='4157'] -opus/document/letterText/edit[@ref='4158'] -opus/document/letterText/edit[@ref='4159'] -opus/document/letterText/edit[@ref='416'] -opus/document/letterText/edit[@ref='4160'] -opus/document/letterText/edit[@ref='4161'] -opus/document/letterText/edit[@ref='4162'] -opus/document/letterText/edit[@ref='4163'] -opus/document/letterText/edit[@ref='4164'] -opus/document/letterText/edit[@ref='4165'] -opus/document/letterText/edit[@ref='4166'] -opus/document/letterText/edit[@ref='4167'] -opus/document/letterText/edit[@ref='4168'] -opus/document/letterText/edit[@ref='4169'] -opus/document/letterText/edit[@ref='417'] -opus/document/letterText/edit[@ref='4170'] -opus/document/letterText/edit[@ref='4171'] -opus/document/letterText/edit[@ref='4172'] -opus/document/letterText/edit[@ref='4173'] -opus/document/letterText/edit[@ref='4174'] -opus/document/letterText/edit[@ref='4176'] -opus/document/letterText/edit[@ref='4177'] -opus/document/letterText/edit[@ref='4178'] -opus/document/letterText/edit[@ref='4179'] -opus/document/letterText/edit[@ref='418'] -opus/document/letterText/edit[@ref='4180'] -opus/document/letterText/edit[@ref='4181'] -opus/document/letterText/edit[@ref='4182'] -opus/document/letterText/edit[@ref='4183'] -opus/document/letterText/edit[@ref='4184'] -opus/document/letterText/edit[@ref='4185'] -opus/document/letterText/edit[@ref='4186'] -opus/document/letterText/edit[@ref='4187'] -opus/document/letterText/edit[@ref='4188'] -opus/document/letterText/edit[@ref='4189'] -opus/document/letterText/edit[@ref='419'] -opus/document/letterText/edit[@ref='4190'] -opus/document/letterText/edit[@ref='4191'] -opus/document/letterText/edit[@ref='4192'] -opus/document/letterText/edit[@ref='4193'] -opus/document/letterText/edit[@ref='4194'] -opus/document/letterText/edit[@ref='4195'] -opus/document/letterText/edit[@ref='4196'] -opus/document/letterText/edit[@ref='4197'] -opus/document/letterText/edit[@ref='4198'] -opus/document/letterText/edit[@ref='4199'] -opus/document/letterText/edit[@ref='42'] -opus/document/letterText/edit[@ref='420'] -opus/document/letterText/edit[@ref='4201'] -opus/document/letterText/edit[@ref='4202'] -opus/document/letterText/edit[@ref='4203'] -opus/document/letterText/edit[@ref='4204'] -opus/document/letterText/edit[@ref='4205'] -opus/document/letterText/edit[@ref='4206'] -opus/document/letterText/edit[@ref='4207'] -opus/document/letterText/edit[@ref='4208'] -opus/document/letterText/edit[@ref='421'] -opus/document/letterText/edit[@ref='4210'] -opus/document/letterText/edit[@ref='4211'] -opus/document/letterText/edit[@ref='4212'] -opus/document/letterText/edit[@ref='4213'] -opus/document/letterText/edit[@ref='4214'] -opus/document/letterText/edit[@ref='4215'] -opus/document/letterText/edit[@ref='4216'] -opus/document/letterText/edit[@ref='4217'] -opus/document/letterText/edit[@ref='4218'] -opus/document/letterText/edit[@ref='4219'] -opus/document/letterText/edit[@ref='422'] -opus/document/letterText/edit[@ref='4220'] -opus/document/letterText/edit[@ref='4221'] -opus/document/letterText/edit[@ref='4222'] -opus/document/letterText/edit[@ref='4223'] -opus/document/letterText/edit[@ref='4224'] -opus/document/letterText/edit[@ref='4225'] -opus/document/letterText/edit[@ref='4226'] -opus/document/letterText/edit[@ref='4227'] -opus/document/letterText/edit[@ref='4228'] -opus/document/letterText/edit[@ref='4229'] -opus/document/letterText/edit[@ref='423'] -opus/document/letterText/edit[@ref='4230'] -opus/document/letterText/edit[@ref='4231'] -opus/document/letterText/edit[@ref='4232'] -opus/document/letterText/edit[@ref='4233'] -opus/document/letterText/edit[@ref='4235'] -opus/document/letterText/edit[@ref='4237'] -opus/document/letterText/edit[@ref='4238'] -opus/document/letterText/edit[@ref='4239'] -opus/document/letterText/edit[@ref='424'] -opus/document/letterText/edit[@ref='4240'] -opus/document/letterText/edit[@ref='4241'] -opus/document/letterText/edit[@ref='4242'] -opus/document/letterText/edit[@ref='4243'] -opus/document/letterText/edit[@ref='4244'] -opus/document/letterText/edit[@ref='4245'] -opus/document/letterText/edit[@ref='4246'] -opus/document/letterText/edit[@ref='4249'] -opus/document/letterText/edit[@ref='425'] -opus/document/letterText/edit[@ref='4250'] -opus/document/letterText/edit[@ref='4251'] -opus/document/letterText/edit[@ref='4252'] -opus/document/letterText/edit[@ref='4253'] -opus/document/letterText/edit[@ref='4254'] -opus/document/letterText/edit[@ref='4255'] -opus/document/letterText/edit[@ref='4256'] -opus/document/letterText/edit[@ref='4257'] -opus/document/letterText/edit[@ref='4258'] -opus/document/letterText/edit[@ref='4260'] -opus/document/letterText/edit[@ref='4262'] -opus/document/letterText/edit[@ref='4263'] -opus/document/letterText/edit[@ref='4264'] -opus/document/letterText/edit[@ref='4266'] -opus/document/letterText/edit[@ref='4267'] -opus/document/letterText/edit[@ref='4268'] -opus/document/letterText/edit[@ref='4269'] -opus/document/letterText/edit[@ref='427'] -opus/document/letterText/edit[@ref='4270'] -opus/document/letterText/edit[@ref='4271'] -opus/document/letterText/edit[@ref='4272'] -opus/document/letterText/edit[@ref='4273'] -opus/document/letterText/edit[@ref='4274'] -opus/document/letterText/edit[@ref='4275'] -opus/document/letterText/edit[@ref='4276'] -opus/document/letterText/edit[@ref='4277'] -opus/document/letterText/edit[@ref='4278'] -opus/document/letterText/edit[@ref='4279'] -opus/document/letterText/edit[@ref='428'] -opus/document/letterText/edit[@ref='4280'] -opus/document/letterText/edit[@ref='4281'] -opus/document/letterText/edit[@ref='4282'] -opus/document/letterText/edit[@ref='4283'] -opus/document/letterText/edit[@ref='4284'] -opus/document/letterText/edit[@ref='4285'] -opus/document/letterText/edit[@ref='4286'] -opus/document/letterText/edit[@ref='4287'] -opus/document/letterText/edit[@ref='429'] -opus/document/letterText/edit[@ref='4291'] -opus/document/letterText/edit[@ref='4292'] -opus/document/letterText/edit[@ref='4293'] -opus/document/letterText/edit[@ref='4294'] -opus/document/letterText/edit[@ref='4295'] -opus/document/letterText/edit[@ref='4297'] -opus/document/letterText/edit[@ref='4298'] -opus/document/letterText/edit[@ref='4299'] -opus/document/letterText/edit[@ref='43'] -opus/document/letterText/edit[@ref='430'] -opus/document/letterText/edit[@ref='4300'] -opus/document/letterText/edit[@ref='4301'] -opus/document/letterText/edit[@ref='4302'] -opus/document/letterText/edit[@ref='4304'] -opus/document/letterText/edit[@ref='4305'] -opus/document/letterText/edit[@ref='4306'] -opus/document/letterText/edit[@ref='4307'] -opus/document/letterText/edit[@ref='4308'] -opus/document/letterText/edit[@ref='4309'] -opus/document/letterText/edit[@ref='431'] -opus/document/letterText/edit[@ref='4310'] -opus/document/letterText/edit[@ref='4311'] -opus/document/letterText/edit[@ref='4312'] -opus/document/letterText/edit[@ref='4313'] -opus/document/letterText/edit[@ref='4314'] -opus/document/letterText/edit[@ref='4315'] -opus/document/letterText/edit[@ref='4316'] -opus/document/letterText/edit[@ref='4317'] -opus/document/letterText/edit[@ref='4318'] -opus/document/letterText/edit[@ref='4319'] -opus/document/letterText/edit[@ref='432'] -opus/document/letterText/edit[@ref='4320'] -opus/document/letterText/edit[@ref='4321'] -opus/document/letterText/edit[@ref='4322'] -opus/document/letterText/edit[@ref='4323'] -opus/document/letterText/edit[@ref='4324'] -opus/document/letterText/edit[@ref='4326'] -opus/document/letterText/edit[@ref='4329'] -opus/document/letterText/edit[@ref='433'] -opus/document/letterText/edit[@ref='4330'] -opus/document/letterText/edit[@ref='4331'] -opus/document/letterText/edit[@ref='4332'] -opus/document/letterText/edit[@ref='4333'] -opus/document/letterText/edit[@ref='4334'] -opus/document/letterText/edit[@ref='4335'] -opus/document/letterText/edit[@ref='4336'] -opus/document/letterText/edit[@ref='4337'] -opus/document/letterText/edit[@ref='4338'] -opus/document/letterText/edit[@ref='434'] -opus/document/letterText/edit[@ref='4341'] -opus/document/letterText/edit[@ref='4342'] -opus/document/letterText/edit[@ref='4343'] -opus/document/letterText/edit[@ref='4345'] -opus/document/letterText/edit[@ref='4346'] -opus/document/letterText/edit[@ref='4347'] -opus/document/letterText/edit[@ref='4348'] -opus/document/letterText/edit[@ref='4349'] -opus/document/letterText/edit[@ref='435'] -opus/document/letterText/edit[@ref='4350'] -opus/document/letterText/edit[@ref='4353'] -opus/document/letterText/edit[@ref='4355'] -opus/document/letterText/edit[@ref='4356'] -opus/document/letterText/edit[@ref='4357'] -opus/document/letterText/edit[@ref='4358'] -opus/document/letterText/edit[@ref='4360'] -opus/document/letterText/edit[@ref='4361'] -opus/document/letterText/edit[@ref='4362'] -opus/document/letterText/edit[@ref='4363'] -opus/document/letterText/edit[@ref='4364'] -opus/document/letterText/edit[@ref='4365'] -opus/document/letterText/edit[@ref='4366'] -opus/document/letterText/edit[@ref='4368'] -opus/document/letterText/edit[@ref='437'] -opus/document/letterText/edit[@ref='4370'] -opus/document/letterText/edit[@ref='4371'] -opus/document/letterText/edit[@ref='4372'] -opus/document/letterText/edit[@ref='4384'] -opus/document/letterText/edit[@ref='4385'] -opus/document/letterText/edit[@ref='4386'] -opus/document/letterText/edit[@ref='4387'] -opus/document/letterText/edit[@ref='4388'] -opus/document/letterText/edit[@ref='4389'] -opus/document/letterText/edit[@ref='439'] -opus/document/letterText/edit[@ref='4390'] -opus/document/letterText/edit[@ref='4391'] -opus/document/letterText/edit[@ref='4392'] -opus/document/letterText/edit[@ref='4393'] -opus/document/letterText/edit[@ref='4394'] -opus/document/letterText/edit[@ref='4395'] -opus/document/letterText/edit[@ref='4396'] -opus/document/letterText/edit[@ref='4397'] -opus/document/letterText/edit[@ref='4398'] -opus/document/letterText/edit[@ref='4399'] -opus/document/letterText/edit[@ref='44'] -opus/document/letterText/edit[@ref='440'] -opus/document/letterText/edit[@ref='4401'] -opus/document/letterText/edit[@ref='4402'] -opus/document/letterText/edit[@ref='4403'] -opus/document/letterText/edit[@ref='4404'] -opus/document/letterText/edit[@ref='4406'] -opus/document/letterText/edit[@ref='4407'] -opus/document/letterText/edit[@ref='441'] -opus/document/letterText/edit[@ref='4411'] -opus/document/letterText/edit[@ref='4412'] -opus/document/letterText/edit[@ref='4414'] -opus/document/letterText/edit[@ref='4415'] -opus/document/letterText/edit[@ref='4416'] -opus/document/letterText/edit[@ref='4417'] -opus/document/letterText/edit[@ref='4418'] -opus/document/letterText/edit[@ref='4419'] -opus/document/letterText/edit[@ref='442'] -opus/document/letterText/edit[@ref='4420'] -opus/document/letterText/edit[@ref='4421'] -opus/document/letterText/edit[@ref='4422'] -opus/document/letterText/edit[@ref='4423'] -opus/document/letterText/edit[@ref='4424'] -opus/document/letterText/edit[@ref='4425'] -opus/document/letterText/edit[@ref='4426'] -opus/document/letterText/edit[@ref='4427'] -opus/document/letterText/edit[@ref='4428'] -opus/document/letterText/edit[@ref='4429'] -opus/document/letterText/edit[@ref='443'] -opus/document/letterText/edit[@ref='4430'] -opus/document/letterText/edit[@ref='4431'] -opus/document/letterText/edit[@ref='4432'] -opus/document/letterText/edit[@ref='4433'] -opus/document/letterText/edit[@ref='4435'] -opus/document/letterText/edit[@ref='4436'] -opus/document/letterText/edit[@ref='4437'] -opus/document/letterText/edit[@ref='4438'] -opus/document/letterText/edit[@ref='4439'] -opus/document/letterText/edit[@ref='444'] -opus/document/letterText/edit[@ref='4440'] -opus/document/letterText/edit[@ref='4441'] -opus/document/letterText/edit[@ref='4442'] -opus/document/letterText/edit[@ref='4443'] -opus/document/letterText/edit[@ref='4444'] -opus/document/letterText/edit[@ref='4446'] -opus/document/letterText/edit[@ref='4447'] -opus/document/letterText/edit[@ref='4448'] -opus/document/letterText/edit[@ref='4449'] -opus/document/letterText/edit[@ref='445'] -opus/document/letterText/edit[@ref='4450'] -opus/document/letterText/edit[@ref='4451'] -opus/document/letterText/edit[@ref='4452'] -opus/document/letterText/edit[@ref='4453'] -opus/document/letterText/edit[@ref='4454'] -opus/document/letterText/edit[@ref='4455'] -opus/document/letterText/edit[@ref='4456'] -opus/document/letterText/edit[@ref='4457'] -opus/document/letterText/edit[@ref='4458'] -opus/document/letterText/edit[@ref='4459'] -opus/document/letterText/edit[@ref='446'] -opus/document/letterText/edit[@ref='4460'] -opus/document/letterText/edit[@ref='4461'] -opus/document/letterText/edit[@ref='4462'] -opus/document/letterText/edit[@ref='4463'] -opus/document/letterText/edit[@ref='4464'] -opus/document/letterText/edit[@ref='4465'] -opus/document/letterText/edit[@ref='4466'] -opus/document/letterText/edit[@ref='4467'] -opus/document/letterText/edit[@ref='4468'] -opus/document/letterText/edit[@ref='447'] -opus/document/letterText/edit[@ref='4473'] -opus/document/letterText/edit[@ref='4474'] -opus/document/letterText/edit[@ref='4475'] -opus/document/letterText/edit[@ref='4476'] -opus/document/letterText/edit[@ref='4477'] -opus/document/letterText/edit[@ref='4478'] -opus/document/letterText/edit[@ref='448'] -opus/document/letterText/edit[@ref='4481'] -opus/document/letterText/edit[@ref='4483'] -opus/document/letterText/edit[@ref='4484'] -opus/document/letterText/edit[@ref='4485'] -opus/document/letterText/edit[@ref='4486'] -opus/document/letterText/edit[@ref='4487'] -opus/document/letterText/edit[@ref='4488'] -opus/document/letterText/edit[@ref='4489'] -opus/document/letterText/edit[@ref='449'] -opus/document/letterText/edit[@ref='4490'] -opus/document/letterText/edit[@ref='4492'] -opus/document/letterText/edit[@ref='4493'] -opus/document/letterText/edit[@ref='4494'] -opus/document/letterText/edit[@ref='4495'] -opus/document/letterText/edit[@ref='4496'] -opus/document/letterText/edit[@ref='4497'] -opus/document/letterText/edit[@ref='4498'] -opus/document/letterText/edit[@ref='4499'] -opus/document/letterText/edit[@ref='45'] -opus/document/letterText/edit[@ref='450'] -opus/document/letterText/edit[@ref='4500'] -opus/document/letterText/edit[@ref='4501'] -opus/document/letterText/edit[@ref='4502'] -opus/document/letterText/edit[@ref='4503'] -opus/document/letterText/edit[@ref='4504'] -opus/document/letterText/edit[@ref='4505'] -opus/document/letterText/edit[@ref='4506'] -opus/document/letterText/edit[@ref='451'] -opus/document/letterText/edit[@ref='4513'] -opus/document/letterText/edit[@ref='4514'] -opus/document/letterText/edit[@ref='4515'] -opus/document/letterText/edit[@ref='4517'] -opus/document/letterText/edit[@ref='4518'] -opus/document/letterText/edit[@ref='4519'] -opus/document/letterText/edit[@ref='452'] -opus/document/letterText/edit[@ref='4520'] -opus/document/letterText/edit[@ref='4521'] -opus/document/letterText/edit[@ref='4522'] -opus/document/letterText/edit[@ref='4523'] -opus/document/letterText/edit[@ref='4524'] -opus/document/letterText/edit[@ref='4525'] -opus/document/letterText/edit[@ref='4526'] -opus/document/letterText/edit[@ref='4527'] -opus/document/letterText/edit[@ref='4528'] -opus/document/letterText/edit[@ref='4529'] -opus/document/letterText/edit[@ref='453'] -opus/document/letterText/edit[@ref='4530'] -opus/document/letterText/edit[@ref='4531'] -opus/document/letterText/edit[@ref='4532'] -opus/document/letterText/edit[@ref='4533'] -opus/document/letterText/edit[@ref='4534'] -opus/document/letterText/edit[@ref='4535'] -opus/document/letterText/edit[@ref='4536'] -opus/document/letterText/edit[@ref='4537'] -opus/document/letterText/edit[@ref='4538'] -opus/document/letterText/edit[@ref='4539'] -opus/document/letterText/edit[@ref='454'] -opus/document/letterText/edit[@ref='4540'] -opus/document/letterText/edit[@ref='4541'] -opus/document/letterText/edit[@ref='4542'] -opus/document/letterText/edit[@ref='4543'] -opus/document/letterText/edit[@ref='4544'] -opus/document/letterText/edit[@ref='4545'] -opus/document/letterText/edit[@ref='4552'] -opus/document/letterText/edit[@ref='4553'] -opus/document/letterText/edit[@ref='4554'] -opus/document/letterText/edit[@ref='4555'] -opus/document/letterText/edit[@ref='4556'] -opus/document/letterText/edit[@ref='4557'] -opus/document/letterText/edit[@ref='4558'] -opus/document/letterText/edit[@ref='4559'] -opus/document/letterText/edit[@ref='456'] -opus/document/letterText/edit[@ref='4560'] -opus/document/letterText/edit[@ref='4561'] -opus/document/letterText/edit[@ref='4563'] -opus/document/letterText/edit[@ref='4564'] -opus/document/letterText/edit[@ref='4565'] -opus/document/letterText/edit[@ref='4566'] -opus/document/letterText/edit[@ref='4567'] -opus/document/letterText/edit[@ref='4568'] -opus/document/letterText/edit[@ref='4569'] -opus/document/letterText/edit[@ref='457'] -opus/document/letterText/edit[@ref='4570'] -opus/document/letterText/edit[@ref='4571'] -opus/document/letterText/edit[@ref='4572'] -opus/document/letterText/edit[@ref='4573'] -opus/document/letterText/edit[@ref='4574'] -opus/document/letterText/edit[@ref='4575'] -opus/document/letterText/edit[@ref='4576'] -opus/document/letterText/edit[@ref='4577'] -opus/document/letterText/edit[@ref='4578'] -opus/document/letterText/edit[@ref='4579'] -opus/document/letterText/edit[@ref='458'] -opus/document/letterText/edit[@ref='4580'] -opus/document/letterText/edit[@ref='4581'] -opus/document/letterText/edit[@ref='4582'] -opus/document/letterText/edit[@ref='4583'] -opus/document/letterText/edit[@ref='4584'] -opus/document/letterText/edit[@ref='459'] -opus/document/letterText/edit[@ref='4590'] -opus/document/letterText/edit[@ref='4591'] -opus/document/letterText/edit[@ref='4593'] -opus/document/letterText/edit[@ref='4594'] -opus/document/letterText/edit[@ref='4595'] -opus/document/letterText/edit[@ref='4596'] -opus/document/letterText/edit[@ref='4597'] -opus/document/letterText/edit[@ref='4598'] -opus/document/letterText/edit[@ref='46'] -opus/document/letterText/edit[@ref='460'] -opus/document/letterText/edit[@ref='4600'] -opus/document/letterText/edit[@ref='4602'] -opus/document/letterText/edit[@ref='4603'] -opus/document/letterText/edit[@ref='4604'] -opus/document/letterText/edit[@ref='4605'] -opus/document/letterText/edit[@ref='4607'] -opus/document/letterText/edit[@ref='461'] -opus/document/letterText/edit[@ref='4610'] -opus/document/letterText/edit[@ref='4611'] -opus/document/letterText/edit[@ref='4612'] -opus/document/letterText/edit[@ref='4613'] -opus/document/letterText/edit[@ref='4614'] -opus/document/letterText/edit[@ref='4615'] -opus/document/letterText/edit[@ref='4616'] -opus/document/letterText/edit[@ref='4617'] -opus/document/letterText/edit[@ref='4618'] -opus/document/letterText/edit[@ref='4619'] -opus/document/letterText/edit[@ref='462'] -opus/document/letterText/edit[@ref='4620'] -opus/document/letterText/edit[@ref='4621'] -opus/document/letterText/edit[@ref='4622'] -opus/document/letterText/edit[@ref='4623'] -opus/document/letterText/edit[@ref='4624'] -opus/document/letterText/edit[@ref='4625'] -opus/document/letterText/edit[@ref='4626'] -opus/document/letterText/edit[@ref='4627'] -opus/document/letterText/edit[@ref='4628'] -opus/document/letterText/edit[@ref='4629'] -opus/document/letterText/edit[@ref='463'] -opus/document/letterText/edit[@ref='4630'] -opus/document/letterText/edit[@ref='4631'] -opus/document/letterText/edit[@ref='4632'] -opus/document/letterText/edit[@ref='4633'] -opus/document/letterText/edit[@ref='4636'] -opus/document/letterText/edit[@ref='4637'] -opus/document/letterText/edit[@ref='4638'] -opus/document/letterText/edit[@ref='4639'] -opus/document/letterText/edit[@ref='464'] -opus/document/letterText/edit[@ref='4640'] -opus/document/letterText/edit[@ref='4644'] -opus/document/letterText/edit[@ref='4645'] -opus/document/letterText/edit[@ref='4646'] -opus/document/letterText/edit[@ref='4647'] -opus/document/letterText/edit[@ref='4649'] -opus/document/letterText/edit[@ref='465'] -opus/document/letterText/edit[@ref='4650'] -opus/document/letterText/edit[@ref='4651'] -opus/document/letterText/edit[@ref='4653'] -opus/document/letterText/edit[@ref='4654'] -opus/document/letterText/edit[@ref='4655'] -opus/document/letterText/edit[@ref='4656'] -opus/document/letterText/edit[@ref='4657'] -opus/document/letterText/edit[@ref='4658'] -opus/document/letterText/edit[@ref='4659'] -opus/document/letterText/edit[@ref='4660'] -opus/document/letterText/edit[@ref='4661'] -opus/document/letterText/edit[@ref='4662'] -opus/document/letterText/edit[@ref='4663'] -opus/document/letterText/edit[@ref='4664'] -opus/document/letterText/edit[@ref='4665'] -opus/document/letterText/edit[@ref='4666'] -opus/document/letterText/edit[@ref='4668'] -opus/document/letterText/edit[@ref='4669'] -opus/document/letterText/edit[@ref='4670'] -opus/document/letterText/edit[@ref='4671'] -opus/document/letterText/edit[@ref='4672'] -opus/document/letterText/edit[@ref='4673'] -opus/document/letterText/edit[@ref='4674'] -opus/document/letterText/edit[@ref='4675'] -opus/document/letterText/edit[@ref='4676'] -opus/document/letterText/edit[@ref='4677'] -opus/document/letterText/edit[@ref='4678'] -opus/document/letterText/edit[@ref='4679'] -opus/document/letterText/edit[@ref='4681'] -opus/document/letterText/edit[@ref='4682'] -opus/document/letterText/edit[@ref='4683'] -opus/document/letterText/edit[@ref='4684'] -opus/document/letterText/edit[@ref='4685'] -opus/document/letterText/edit[@ref='4686'] -opus/document/letterText/edit[@ref='4687'] -opus/document/letterText/edit[@ref='4688'] -opus/document/letterText/edit[@ref='4689'] -opus/document/letterText/edit[@ref='4690'] -opus/document/letterText/edit[@ref='4691'] -opus/document/letterText/edit[@ref='4692'] -opus/document/letterText/edit[@ref='4693'] -opus/document/letterText/edit[@ref='4694'] -opus/document/letterText/edit[@ref='4695'] -opus/document/letterText/edit[@ref='4696'] -opus/document/letterText/edit[@ref='4697'] -opus/document/letterText/edit[@ref='4698'] -opus/document/letterText/edit[@ref='47'] -opus/document/letterText/edit[@ref='4700'] -opus/document/letterText/edit[@ref='4701'] -opus/document/letterText/edit[@ref='4702'] -opus/document/letterText/edit[@ref='4703'] -opus/document/letterText/edit[@ref='4704'] -opus/document/letterText/edit[@ref='4705'] -opus/document/letterText/edit[@ref='4706'] -opus/document/letterText/edit[@ref='4707'] -opus/document/letterText/edit[@ref='4708'] -opus/document/letterText/edit[@ref='4709'] -opus/document/letterText/edit[@ref='4710'] -opus/document/letterText/edit[@ref='4711'] -opus/document/letterText/edit[@ref='4712'] -opus/document/letterText/edit[@ref='4713'] -opus/document/letterText/edit[@ref='4714'] -opus/document/letterText/edit[@ref='4715'] -opus/document/letterText/edit[@ref='4716'] -opus/document/letterText/edit[@ref='4717'] -opus/document/letterText/edit[@ref='4724'] -opus/document/letterText/edit[@ref='4725'] -opus/document/letterText/edit[@ref='4726'] -opus/document/letterText/edit[@ref='4727'] -opus/document/letterText/edit[@ref='4728'] -opus/document/letterText/edit[@ref='473'] -opus/document/letterText/edit[@ref='474'] -opus/document/letterText/edit[@ref='475'] -opus/document/letterText/edit[@ref='4755'] -opus/document/letterText/edit[@ref='4756'] -opus/document/letterText/edit[@ref='4757'] -opus/document/letterText/edit[@ref='4758'] -opus/document/letterText/edit[@ref='4759'] -opus/document/letterText/edit[@ref='476'] -opus/document/letterText/edit[@ref='4760'] -opus/document/letterText/edit[@ref='4761'] -opus/document/letterText/edit[@ref='4762'] -opus/document/letterText/edit[@ref='4764'] -opus/document/letterText/edit[@ref='4765'] -opus/document/letterText/edit[@ref='4766'] -opus/document/letterText/edit[@ref='4767'] -opus/document/letterText/edit[@ref='4768'] -opus/document/letterText/edit[@ref='477'] -opus/document/letterText/edit[@ref='4771'] -opus/document/letterText/edit[@ref='4772'] -opus/document/letterText/edit[@ref='4773'] -opus/document/letterText/edit[@ref='4774'] -opus/document/letterText/edit[@ref='4775'] -opus/document/letterText/edit[@ref='4776'] -opus/document/letterText/edit[@ref='4777'] -opus/document/letterText/edit[@ref='4778'] -opus/document/letterText/edit[@ref='4779'] -opus/document/letterText/edit[@ref='478'] -opus/document/letterText/edit[@ref='4780'] -opus/document/letterText/edit[@ref='4781'] -opus/document/letterText/edit[@ref='4782'] -opus/document/letterText/edit[@ref='4783'] -opus/document/letterText/edit[@ref='4784'] -opus/document/letterText/edit[@ref='4785'] -opus/document/letterText/edit[@ref='4786'] -opus/document/letterText/edit[@ref='4787'] -opus/document/letterText/edit[@ref='4788'] -opus/document/letterText/edit[@ref='4789'] -opus/document/letterText/edit[@ref='479'] -opus/document/letterText/edit[@ref='4790'] -opus/document/letterText/edit[@ref='4791'] -opus/document/letterText/edit[@ref='4792'] -opus/document/letterText/edit[@ref='4793'] -opus/document/letterText/edit[@ref='4794'] -opus/document/letterText/edit[@ref='4795'] -opus/document/letterText/edit[@ref='4796'] -opus/document/letterText/edit[@ref='4797'] -opus/document/letterText/edit[@ref='4798'] -opus/document/letterText/edit[@ref='4799'] -opus/document/letterText/edit[@ref='48'] -opus/document/letterText/edit[@ref='480'] -opus/document/letterText/edit[@ref='4800'] -opus/document/letterText/edit[@ref='4801'] -opus/document/letterText/edit[@ref='4802'] -opus/document/letterText/edit[@ref='4803'] -opus/document/letterText/edit[@ref='4804'] -opus/document/letterText/edit[@ref='4805'] -opus/document/letterText/edit[@ref='4806'] -opus/document/letterText/edit[@ref='4807'] -opus/document/letterText/edit[@ref='4808'] -opus/document/letterText/edit[@ref='4809'] -opus/document/letterText/edit[@ref='481'] -opus/document/letterText/edit[@ref='4810'] -opus/document/letterText/edit[@ref='4811'] -opus/document/letterText/edit[@ref='4812'] -opus/document/letterText/edit[@ref='4813'] -opus/document/letterText/edit[@ref='4814'] -opus/document/letterText/edit[@ref='4815'] -opus/document/letterText/edit[@ref='4819'] -opus/document/letterText/edit[@ref='482'] -opus/document/letterText/edit[@ref='4820'] -opus/document/letterText/edit[@ref='4821'] -opus/document/letterText/edit[@ref='4822'] -opus/document/letterText/edit[@ref='4823'] -opus/document/letterText/edit[@ref='4824'] -opus/document/letterText/edit[@ref='4825'] -opus/document/letterText/edit[@ref='4827'] -opus/document/letterText/edit[@ref='4828'] -opus/document/letterText/edit[@ref='4829'] -opus/document/letterText/edit[@ref='483'] -opus/document/letterText/edit[@ref='4830'] -opus/document/letterText/edit[@ref='4831'] -opus/document/letterText/edit[@ref='4832'] -opus/document/letterText/edit[@ref='4837'] -opus/document/letterText/edit[@ref='4838'] -opus/document/letterText/edit[@ref='4839'] -opus/document/letterText/edit[@ref='4840'] -opus/document/letterText/edit[@ref='4841'] -opus/document/letterText/edit[@ref='4847'] -opus/document/letterText/edit[@ref='4848'] -opus/document/letterText/edit[@ref='485'] -opus/document/letterText/edit[@ref='4851'] -opus/document/letterText/edit[@ref='4852'] -opus/document/letterText/edit[@ref='4853'] -opus/document/letterText/edit[@ref='4854'] -opus/document/letterText/edit[@ref='4855'] -opus/document/letterText/edit[@ref='4856'] -opus/document/letterText/edit[@ref='4858'] -opus/document/letterText/edit[@ref='4859'] -opus/document/letterText/edit[@ref='486'] -opus/document/letterText/edit[@ref='4860'] -opus/document/letterText/edit[@ref='4861'] -opus/document/letterText/edit[@ref='4862'] -opus/document/letterText/edit[@ref='4863'] -opus/document/letterText/edit[@ref='4864'] -opus/document/letterText/edit[@ref='4865'] -opus/document/letterText/edit[@ref='4866'] -opus/document/letterText/edit[@ref='4867'] -opus/document/letterText/edit[@ref='4868'] -opus/document/letterText/edit[@ref='4869'] -opus/document/letterText/edit[@ref='4871'] -opus/document/letterText/edit[@ref='4872'] -opus/document/letterText/edit[@ref='4873'] -opus/document/letterText/edit[@ref='4874'] -opus/document/letterText/edit[@ref='4875'] -opus/document/letterText/edit[@ref='4877'] -opus/document/letterText/edit[@ref='4878'] -opus/document/letterText/edit[@ref='4879'] -opus/document/letterText/edit[@ref='488'] -opus/document/letterText/edit[@ref='4880'] -opus/document/letterText/edit[@ref='4881'] -opus/document/letterText/edit[@ref='4883'] -opus/document/letterText/edit[@ref='4884'] -opus/document/letterText/edit[@ref='4885'] -opus/document/letterText/edit[@ref='4886'] -opus/document/letterText/edit[@ref='4887'] -opus/document/letterText/edit[@ref='4888'] -opus/document/letterText/edit[@ref='4889'] -opus/document/letterText/edit[@ref='4890'] -opus/document/letterText/edit[@ref='4891'] -opus/document/letterText/edit[@ref='4893'] -opus/document/letterText/edit[@ref='4894'] -opus/document/letterText/edit[@ref='4895'] -opus/document/letterText/edit[@ref='4896'] -opus/document/letterText/edit[@ref='4898'] -opus/document/letterText/edit[@ref='4899'] -opus/document/letterText/edit[@ref='49'] -opus/document/letterText/edit[@ref='490'] -opus/document/letterText/edit[@ref='4900'] -opus/document/letterText/edit[@ref='4901'] -opus/document/letterText/edit[@ref='4902'] -opus/document/letterText/edit[@ref='4903'] -opus/document/letterText/edit[@ref='4904'] -opus/document/letterText/edit[@ref='4905'] -opus/document/letterText/edit[@ref='4906'] -opus/document/letterText/edit[@ref='4907'] -opus/document/letterText/edit[@ref='4908'] -opus/document/letterText/edit[@ref='4909'] -opus/document/letterText/edit[@ref='491'] -opus/document/letterText/edit[@ref='4910'] -opus/document/letterText/edit[@ref='4911'] -opus/document/letterText/edit[@ref='492'] -opus/document/letterText/edit[@ref='4929'] -opus/document/letterText/edit[@ref='4930'] -opus/document/letterText/edit[@ref='4931'] -opus/document/letterText/edit[@ref='4932'] -opus/document/letterText/edit[@ref='4933'] -opus/document/letterText/edit[@ref='4934'] -opus/document/letterText/edit[@ref='4936'] -opus/document/letterText/edit[@ref='4937'] -opus/document/letterText/edit[@ref='4938'] -opus/document/letterText/edit[@ref='494'] -opus/document/letterText/edit[@ref='4940'] -opus/document/letterText/edit[@ref='4941'] -opus/document/letterText/edit[@ref='4942'] -opus/document/letterText/edit[@ref='4946'] -opus/document/letterText/edit[@ref='4947'] -opus/document/letterText/edit[@ref='4948'] -opus/document/letterText/edit[@ref='4949'] -opus/document/letterText/edit[@ref='495'] -opus/document/letterText/edit[@ref='4950'] -opus/document/letterText/edit[@ref='4951'] -opus/document/letterText/edit[@ref='4954'] -opus/document/letterText/edit[@ref='4955'] -opus/document/letterText/edit[@ref='4956'] -opus/document/letterText/edit[@ref='4957'] -opus/document/letterText/edit[@ref='4958'] -opus/document/letterText/edit[@ref='4959'] -opus/document/letterText/edit[@ref='496'] -opus/document/letterText/edit[@ref='4960'] -opus/document/letterText/edit[@ref='4961'] -opus/document/letterText/edit[@ref='4962'] -opus/document/letterText/edit[@ref='4963'] -opus/document/letterText/edit[@ref='4964'] -opus/document/letterText/edit[@ref='4965'] -opus/document/letterText/edit[@ref='4966'] -opus/document/letterText/edit[@ref='4967'] -opus/document/letterText/edit[@ref='4968'] -opus/document/letterText/edit[@ref='4969'] -opus/document/letterText/edit[@ref='497'] -opus/document/letterText/edit[@ref='4970'] -opus/document/letterText/edit[@ref='4971'] -opus/document/letterText/edit[@ref='4972'] -opus/document/letterText/edit[@ref='4973'] -opus/document/letterText/edit[@ref='4974'] -opus/document/letterText/edit[@ref='4975'] -opus/document/letterText/edit[@ref='4976'] -opus/document/letterText/edit[@ref='4977'] -opus/document/letterText/edit[@ref='4979'] -opus/document/letterText/edit[@ref='498'] -opus/document/letterText/edit[@ref='4984'] -opus/document/letterText/edit[@ref='4985'] -opus/document/letterText/edit[@ref='4986'] -opus/document/letterText/edit[@ref='4987'] -opus/document/letterText/edit[@ref='4988'] -opus/document/letterText/edit[@ref='4989'] -opus/document/letterText/edit[@ref='499'] -opus/document/letterText/edit[@ref='4990'] -opus/document/letterText/edit[@ref='4991'] -opus/document/letterText/edit[@ref='4992'] -opus/document/letterText/edit[@ref='4993'] -opus/document/letterText/edit[@ref='4994'] -opus/document/letterText/edit[@ref='4995'] -opus/document/letterText/edit[@ref='4996'] -opus/document/letterText/edit[@ref='4997'] -opus/document/letterText/edit[@ref='4998'] -opus/document/letterText/edit[@ref='4999'] -opus/document/letterText/edit[@ref='50'] -opus/document/letterText/edit[@ref='500'] -opus/document/letterText/edit[@ref='501'] -opus/document/letterText/edit[@ref='5026'] -opus/document/letterText/edit[@ref='503'] -opus/document/letterText/edit[@ref='5030'] -opus/document/letterText/edit[@ref='5031'] -opus/document/letterText/edit[@ref='5034'] -opus/document/letterText/edit[@ref='5036'] -opus/document/letterText/edit[@ref='5037'] -opus/document/letterText/edit[@ref='5038'] -opus/document/letterText/edit[@ref='5039'] -opus/document/letterText/edit[@ref='5040'] -opus/document/letterText/edit[@ref='5041'] -opus/document/letterText/edit[@ref='5042'] -opus/document/letterText/edit[@ref='5044'] -opus/document/letterText/edit[@ref='5045'] -opus/document/letterText/edit[@ref='5046'] -opus/document/letterText/edit[@ref='5047'] -opus/document/letterText/edit[@ref='5048'] -opus/document/letterText/edit[@ref='505'] -opus/document/letterText/edit[@ref='5050'] -opus/document/letterText/edit[@ref='5052'] -opus/document/letterText/edit[@ref='5053'] -opus/document/letterText/edit[@ref='5054'] -opus/document/letterText/edit[@ref='5055'] -opus/document/letterText/edit[@ref='5056'] -opus/document/letterText/edit[@ref='5057'] -opus/document/letterText/edit[@ref='5058'] -opus/document/letterText/edit[@ref='5059'] -opus/document/letterText/edit[@ref='506'] -opus/document/letterText/edit[@ref='5060'] -opus/document/letterText/edit[@ref='5061'] -opus/document/letterText/edit[@ref='5063'] -opus/document/letterText/edit[@ref='5064'] -opus/document/letterText/edit[@ref='5065'] -opus/document/letterText/edit[@ref='507'] -opus/document/letterText/edit[@ref='5070'] -opus/document/letterText/edit[@ref='5071'] -opus/document/letterText/edit[@ref='5072'] -opus/document/letterText/edit[@ref='5073'] -opus/document/letterText/edit[@ref='5075'] -opus/document/letterText/edit[@ref='5076'] -opus/document/letterText/edit[@ref='5077'] -opus/document/letterText/edit[@ref='5079'] -opus/document/letterText/edit[@ref='508'] -opus/document/letterText/edit[@ref='5081'] -opus/document/letterText/edit[@ref='5082'] -opus/document/letterText/edit[@ref='5083'] -opus/document/letterText/edit[@ref='5084'] -opus/document/letterText/edit[@ref='5086'] -opus/document/letterText/edit[@ref='5087'] -opus/document/letterText/edit[@ref='5088'] -opus/document/letterText/edit[@ref='5089'] -opus/document/letterText/edit[@ref='509'] -opus/document/letterText/edit[@ref='5091'] -opus/document/letterText/edit[@ref='5092'] -opus/document/letterText/edit[@ref='5093'] -opus/document/letterText/edit[@ref='5094'] -opus/document/letterText/edit[@ref='5096'] -opus/document/letterText/edit[@ref='5097'] -opus/document/letterText/edit[@ref='5099'] -opus/document/letterText/edit[@ref='51'] -opus/document/letterText/edit[@ref='510'] -opus/document/letterText/edit[@ref='5100'] -opus/document/letterText/edit[@ref='5101'] -opus/document/letterText/edit[@ref='5102'] -opus/document/letterText/edit[@ref='5107'] -opus/document/letterText/edit[@ref='511'] -opus/document/letterText/edit[@ref='5110'] -opus/document/letterText/edit[@ref='5115'] -opus/document/letterText/edit[@ref='5116'] -opus/document/letterText/edit[@ref='5117'] -opus/document/letterText/edit[@ref='5118'] -opus/document/letterText/edit[@ref='5119'] -opus/document/letterText/edit[@ref='512'] -opus/document/letterText/edit[@ref='5120'] -opus/document/letterText/edit[@ref='5121'] -opus/document/letterText/edit[@ref='5122'] -opus/document/letterText/edit[@ref='5123'] -opus/document/letterText/edit[@ref='5124'] -opus/document/letterText/edit[@ref='5125'] -opus/document/letterText/edit[@ref='5126'] -opus/document/letterText/edit[@ref='5127'] -opus/document/letterText/edit[@ref='5130'] -opus/document/letterText/edit[@ref='5131'] -opus/document/letterText/edit[@ref='5133'] -opus/document/letterText/edit[@ref='5134'] -opus/document/letterText/edit[@ref='5138'] -opus/document/letterText/edit[@ref='5139'] -opus/document/letterText/edit[@ref='5140'] -opus/document/letterText/edit[@ref='5141'] -opus/document/letterText/edit[@ref='5142'] -opus/document/letterText/edit[@ref='5143'] -opus/document/letterText/edit[@ref='5144'] -opus/document/letterText/edit[@ref='5145'] -opus/document/letterText/edit[@ref='5146'] -opus/document/letterText/edit[@ref='5147'] -opus/document/letterText/edit[@ref='5148'] -opus/document/letterText/edit[@ref='5149'] -opus/document/letterText/edit[@ref='5150'] -opus/document/letterText/edit[@ref='5151'] -opus/document/letterText/edit[@ref='5152'] -opus/document/letterText/edit[@ref='5153'] -opus/document/letterText/edit[@ref='5154'] -opus/document/letterText/edit[@ref='5155'] -opus/document/letterText/edit[@ref='5156'] -opus/document/letterText/edit[@ref='5157'] -opus/document/letterText/edit[@ref='5158'] -opus/document/letterText/edit[@ref='516'] -opus/document/letterText/edit[@ref='5162'] -opus/document/letterText/edit[@ref='5163'] -opus/document/letterText/edit[@ref='5164'] -opus/document/letterText/edit[@ref='5165'] -opus/document/letterText/edit[@ref='5166'] -opus/document/letterText/edit[@ref='5167'] -opus/document/letterText/edit[@ref='5168'] -opus/document/letterText/edit[@ref='5169'] -opus/document/letterText/edit[@ref='5170'] -opus/document/letterText/edit[@ref='5171'] -opus/document/letterText/edit[@ref='5172'] -opus/document/letterText/edit[@ref='5175'] -opus/document/letterText/edit[@ref='518'] -opus/document/letterText/edit[@ref='5180'] -opus/document/letterText/edit[@ref='5181'] -opus/document/letterText/edit[@ref='5182'] -opus/document/letterText/edit[@ref='5183'] -opus/document/letterText/edit[@ref='5184'] -opus/document/letterText/edit[@ref='5185'] -opus/document/letterText/edit[@ref='5186'] -opus/document/letterText/edit[@ref='5187'] -opus/document/letterText/edit[@ref='5188'] -opus/document/letterText/edit[@ref='5189'] -opus/document/letterText/edit[@ref='519'] -opus/document/letterText/edit[@ref='5190'] -opus/document/letterText/edit[@ref='5191'] -opus/document/letterText/edit[@ref='5192'] -opus/document/letterText/edit[@ref='5193'] -opus/document/letterText/edit[@ref='5194'] -opus/document/letterText/edit[@ref='5195'] -opus/document/letterText/edit[@ref='5196'] -opus/document/letterText/edit[@ref='5197'] -opus/document/letterText/edit[@ref='5198'] -opus/document/letterText/edit[@ref='5199'] -opus/document/letterText/edit[@ref='52'] -opus/document/letterText/edit[@ref='520'] -opus/document/letterText/edit[@ref='524'] -opus/document/letterText/edit[@ref='528'] -opus/document/letterText/edit[@ref='529'] -opus/document/letterText/edit[@ref='53'] -opus/document/letterText/edit[@ref='530'] -opus/document/letterText/edit[@ref='531'] -opus/document/letterText/edit[@ref='532'] -opus/document/letterText/edit[@ref='535'] -opus/document/letterText/edit[@ref='536'] -opus/document/letterText/edit[@ref='537'] -opus/document/letterText/edit[@ref='538'] -opus/document/letterText/edit[@ref='539'] -opus/document/letterText/edit[@ref='54'] -opus/document/letterText/edit[@ref='540'] -opus/document/letterText/edit[@ref='541'] -opus/document/letterText/edit[@ref='543'] -opus/document/letterText/edit[@ref='544'] -opus/document/letterText/edit[@ref='545'] -opus/document/letterText/edit[@ref='546'] -opus/document/letterText/edit[@ref='547'] -opus/document/letterText/edit[@ref='55'] -opus/document/letterText/edit[@ref='550'] -opus/document/letterText/edit[@ref='551'] -opus/document/letterText/edit[@ref='552'] -opus/document/letterText/edit[@ref='553'] -opus/document/letterText/edit[@ref='554'] -opus/document/letterText/edit[@ref='555'] -opus/document/letterText/edit[@ref='556'] -opus/document/letterText/edit[@ref='557'] -opus/document/letterText/edit[@ref='558'] -opus/document/letterText/edit[@ref='559'] -opus/document/letterText/edit[@ref='56'] -opus/document/letterText/edit[@ref='560'] -opus/document/letterText/edit[@ref='5600'] -opus/document/letterText/edit[@ref='5601'] -opus/document/letterText/edit[@ref='5602'] -opus/document/letterText/edit[@ref='5604'] -opus/document/letterText/edit[@ref='5605'] -opus/document/letterText/edit[@ref='5606'] -opus/document/letterText/edit[@ref='5607'] -opus/document/letterText/edit[@ref='561'] -opus/document/letterText/edit[@ref='562'] -opus/document/letterText/edit[@ref='563'] -opus/document/letterText/edit[@ref='5633'] -opus/document/letterText/edit[@ref='5634'] -opus/document/letterText/edit[@ref='5635'] -opus/document/letterText/edit[@ref='5636'] -opus/document/letterText/edit[@ref='5637'] -opus/document/letterText/edit[@ref='5638'] -opus/document/letterText/edit[@ref='5639'] -opus/document/letterText/edit[@ref='564'] -opus/document/letterText/edit[@ref='5640'] -opus/document/letterText/edit[@ref='5642'] -opus/document/letterText/edit[@ref='5643'] -opus/document/letterText/edit[@ref='5645'] -opus/document/letterText/edit[@ref='5648'] -opus/document/letterText/edit[@ref='5649'] -opus/document/letterText/edit[@ref='565'] -opus/document/letterText/edit[@ref='5650'] -opus/document/letterText/edit[@ref='5651'] -opus/document/letterText/edit[@ref='5652'] -opus/document/letterText/edit[@ref='5653'] -opus/document/letterText/edit[@ref='5654'] -opus/document/letterText/edit[@ref='5655'] -opus/document/letterText/edit[@ref='5656'] -opus/document/letterText/edit[@ref='5657'] -opus/document/letterText/edit[@ref='5658'] -opus/document/letterText/edit[@ref='5659'] -opus/document/letterText/edit[@ref='566'] -opus/document/letterText/edit[@ref='5660'] -opus/document/letterText/edit[@ref='5661'] -opus/document/letterText/edit[@ref='5662'] -opus/document/letterText/edit[@ref='5663'] -opus/document/letterText/edit[@ref='5664'] -opus/document/letterText/edit[@ref='5665'] -opus/document/letterText/edit[@ref='5666'] -opus/document/letterText/edit[@ref='5667'] -opus/document/letterText/edit[@ref='5668'] -opus/document/letterText/edit[@ref='5669'] -opus/document/letterText/edit[@ref='567'] -opus/document/letterText/edit[@ref='5671'] -opus/document/letterText/edit[@ref='5672'] -opus/document/letterText/edit[@ref='5673'] -opus/document/letterText/edit[@ref='5674'] -opus/document/letterText/edit[@ref='5675'] -opus/document/letterText/edit[@ref='5676'] -opus/document/letterText/edit[@ref='5678'] -opus/document/letterText/edit[@ref='5679'] -opus/document/letterText/edit[@ref='568'] -opus/document/letterText/edit[@ref='5680'] -opus/document/letterText/edit[@ref='5681'] -opus/document/letterText/edit[@ref='5682'] -opus/document/letterText/edit[@ref='5684'] -opus/document/letterText/edit[@ref='5685'] -opus/document/letterText/edit[@ref='5687'] -opus/document/letterText/edit[@ref='5688'] -opus/document/letterText/edit[@ref='5689'] -opus/document/letterText/edit[@ref='569'] -opus/document/letterText/edit[@ref='5690'] -opus/document/letterText/edit[@ref='5691'] -opus/document/letterText/edit[@ref='5692'] -opus/document/letterText/edit[@ref='5693'] -opus/document/letterText/edit[@ref='5694'] -opus/document/letterText/edit[@ref='5696'] -opus/document/letterText/edit[@ref='5697'] -opus/document/letterText/edit[@ref='5698'] -opus/document/letterText/edit[@ref='5699'] -opus/document/letterText/edit[@ref='57'] -opus/document/letterText/edit[@ref='570'] -opus/document/letterText/edit[@ref='5700'] -opus/document/letterText/edit[@ref='5701'] -opus/document/letterText/edit[@ref='5703'] -opus/document/letterText/edit[@ref='5705'] -opus/document/letterText/edit[@ref='5706'] -opus/document/letterText/edit[@ref='5707'] -opus/document/letterText/edit[@ref='5708'] -opus/document/letterText/edit[@ref='5709'] -opus/document/letterText/edit[@ref='571'] -opus/document/letterText/edit[@ref='5710'] -opus/document/letterText/edit[@ref='5711'] -opus/document/letterText/edit[@ref='5712'] -opus/document/letterText/edit[@ref='5713'] -opus/document/letterText/edit[@ref='5714'] -opus/document/letterText/edit[@ref='5715'] -opus/document/letterText/edit[@ref='5716'] -opus/document/letterText/edit[@ref='5717'] -opus/document/letterText/edit[@ref='5718'] -opus/document/letterText/edit[@ref='5719'] -opus/document/letterText/edit[@ref='572'] -opus/document/letterText/edit[@ref='5720'] -opus/document/letterText/edit[@ref='5721'] -opus/document/letterText/edit[@ref='5722'] -opus/document/letterText/edit[@ref='5723'] -opus/document/letterText/edit[@ref='5724'] -opus/document/letterText/edit[@ref='5725'] -opus/document/letterText/edit[@ref='5726'] -opus/document/letterText/edit[@ref='5727'] -opus/document/letterText/edit[@ref='5728'] -opus/document/letterText/edit[@ref='5729'] -opus/document/letterText/edit[@ref='573'] -opus/document/letterText/edit[@ref='5730'] -opus/document/letterText/edit[@ref='5731'] -opus/document/letterText/edit[@ref='5732'] -opus/document/letterText/edit[@ref='5733'] -opus/document/letterText/edit[@ref='5734'] -opus/document/letterText/edit[@ref='5735'] -opus/document/letterText/edit[@ref='5736'] -opus/document/letterText/edit[@ref='5737'] -opus/document/letterText/edit[@ref='5738'] -opus/document/letterText/edit[@ref='5739'] -opus/document/letterText/edit[@ref='574'] -opus/document/letterText/edit[@ref='5740'] -opus/document/letterText/edit[@ref='5741'] -opus/document/letterText/edit[@ref='5742'] -opus/document/letterText/edit[@ref='5743'] -opus/document/letterText/edit[@ref='5744'] -opus/document/letterText/edit[@ref='5745'] -opus/document/letterText/edit[@ref='5746'] -opus/document/letterText/edit[@ref='5747'] -opus/document/letterText/edit[@ref='5748'] -opus/document/letterText/edit[@ref='5749'] -opus/document/letterText/edit[@ref='575'] -opus/document/letterText/edit[@ref='5750'] -opus/document/letterText/edit[@ref='5751'] -opus/document/letterText/edit[@ref='5752'] -opus/document/letterText/edit[@ref='5753'] -opus/document/letterText/edit[@ref='5754'] -opus/document/letterText/edit[@ref='5755'] -opus/document/letterText/edit[@ref='5756'] -opus/document/letterText/edit[@ref='5757'] -opus/document/letterText/edit[@ref='5758'] -opus/document/letterText/edit[@ref='5759'] -opus/document/letterText/edit[@ref='576'] -opus/document/letterText/edit[@ref='5760'] -opus/document/letterText/edit[@ref='5763'] -opus/document/letterText/edit[@ref='5764'] -opus/document/letterText/edit[@ref='5765'] -opus/document/letterText/edit[@ref='577'] -opus/document/letterText/edit[@ref='5774'] -opus/document/letterText/edit[@ref='5775'] -opus/document/letterText/edit[@ref='5776'] -opus/document/letterText/edit[@ref='5777'] -opus/document/letterText/edit[@ref='5778'] -opus/document/letterText/edit[@ref='5779'] -opus/document/letterText/edit[@ref='578'] -opus/document/letterText/edit[@ref='5780'] -opus/document/letterText/edit[@ref='5781'] -opus/document/letterText/edit[@ref='5782'] -opus/document/letterText/edit[@ref='5783'] -opus/document/letterText/edit[@ref='5784'] -opus/document/letterText/edit[@ref='5786'] -opus/document/letterText/edit[@ref='5787'] -opus/document/letterText/edit[@ref='5788'] -opus/document/letterText/edit[@ref='5789'] -opus/document/letterText/edit[@ref='579'] -opus/document/letterText/edit[@ref='5790'] -opus/document/letterText/edit[@ref='5791'] -opus/document/letterText/edit[@ref='5792'] -opus/document/letterText/edit[@ref='5793'] -opus/document/letterText/edit[@ref='5794'] -opus/document/letterText/edit[@ref='5795'] -opus/document/letterText/edit[@ref='5796'] -opus/document/letterText/edit[@ref='5797'] -opus/document/letterText/edit[@ref='5798'] -opus/document/letterText/edit[@ref='5799'] -opus/document/letterText/edit[@ref='58'] -opus/document/letterText/edit[@ref='580'] -opus/document/letterText/edit[@ref='5800'] -opus/document/letterText/edit[@ref='5801'] -opus/document/letterText/edit[@ref='5802'] -opus/document/letterText/edit[@ref='5803'] -opus/document/letterText/edit[@ref='5804'] -opus/document/letterText/edit[@ref='5805'] -opus/document/letterText/edit[@ref='5806'] -opus/document/letterText/edit[@ref='5807'] -opus/document/letterText/edit[@ref='5808'] -opus/document/letterText/edit[@ref='5809'] -opus/document/letterText/edit[@ref='581'] -opus/document/letterText/edit[@ref='5810'] -opus/document/letterText/edit[@ref='5811'] -opus/document/letterText/edit[@ref='5812'] -opus/document/letterText/edit[@ref='5813'] -opus/document/letterText/edit[@ref='5814'] -opus/document/letterText/edit[@ref='5815'] -opus/document/letterText/edit[@ref='5816'] -opus/document/letterText/edit[@ref='5818'] -opus/document/letterText/edit[@ref='5819'] -opus/document/letterText/edit[@ref='582'] -opus/document/letterText/edit[@ref='5820'] -opus/document/letterText/edit[@ref='5821'] -opus/document/letterText/edit[@ref='5823'] -opus/document/letterText/edit[@ref='5824'] -opus/document/letterText/edit[@ref='5826'] -opus/document/letterText/edit[@ref='5828'] -opus/document/letterText/edit[@ref='5829'] -opus/document/letterText/edit[@ref='583'] -opus/document/letterText/edit[@ref='5830'] -opus/document/letterText/edit[@ref='5831'] -opus/document/letterText/edit[@ref='5832'] -opus/document/letterText/edit[@ref='5835'] -opus/document/letterText/edit[@ref='5836'] -opus/document/letterText/edit[@ref='5837'] -opus/document/letterText/edit[@ref='5838'] -opus/document/letterText/edit[@ref='5839'] -opus/document/letterText/edit[@ref='584'] -opus/document/letterText/edit[@ref='5840'] -opus/document/letterText/edit[@ref='5841'] -opus/document/letterText/edit[@ref='5842'] -opus/document/letterText/edit[@ref='5843'] -opus/document/letterText/edit[@ref='5844'] -opus/document/letterText/edit[@ref='5845'] -opus/document/letterText/edit[@ref='5846'] -opus/document/letterText/edit[@ref='5847'] -opus/document/letterText/edit[@ref='5848'] -opus/document/letterText/edit[@ref='5849'] -opus/document/letterText/edit[@ref='585'] -opus/document/letterText/edit[@ref='5851'] -opus/document/letterText/edit[@ref='5852'] -opus/document/letterText/edit[@ref='5853'] -opus/document/letterText/edit[@ref='5854'] -opus/document/letterText/edit[@ref='5855'] -opus/document/letterText/edit[@ref='5856'] -opus/document/letterText/edit[@ref='5857'] -opus/document/letterText/edit[@ref='5858'] -opus/document/letterText/edit[@ref='5859'] -opus/document/letterText/edit[@ref='586'] -opus/document/letterText/edit[@ref='5860'] -opus/document/letterText/edit[@ref='5861'] -opus/document/letterText/edit[@ref='5862'] -opus/document/letterText/edit[@ref='5863'] -opus/document/letterText/edit[@ref='5864'] -opus/document/letterText/edit[@ref='5865'] -opus/document/letterText/edit[@ref='5866'] -opus/document/letterText/edit[@ref='5867'] -opus/document/letterText/edit[@ref='5868'] -opus/document/letterText/edit[@ref='5869'] -opus/document/letterText/edit[@ref='587'] -opus/document/letterText/edit[@ref='5870'] -opus/document/letterText/edit[@ref='5871'] -opus/document/letterText/edit[@ref='5872'] -opus/document/letterText/edit[@ref='5873'] -opus/document/letterText/edit[@ref='5874'] -opus/document/letterText/edit[@ref='5875'] -opus/document/letterText/edit[@ref='5876'] -opus/document/letterText/edit[@ref='5877'] -opus/document/letterText/edit[@ref='5878'] -opus/document/letterText/edit[@ref='5879'] -opus/document/letterText/edit[@ref='588'] -opus/document/letterText/edit[@ref='5880'] -opus/document/letterText/edit[@ref='5881'] -opus/document/letterText/edit[@ref='5882'] -opus/document/letterText/edit[@ref='5883'] -opus/document/letterText/edit[@ref='5884'] -opus/document/letterText/edit[@ref='5887'] -opus/document/letterText/edit[@ref='5888'] -opus/document/letterText/edit[@ref='5889'] -opus/document/letterText/edit[@ref='589'] -opus/document/letterText/edit[@ref='5890'] -opus/document/letterText/edit[@ref='5891'] -opus/document/letterText/edit[@ref='5892'] -opus/document/letterText/edit[@ref='5893'] -opus/document/letterText/edit[@ref='5894'] -opus/document/letterText/edit[@ref='5895'] -opus/document/letterText/edit[@ref='5896'] -opus/document/letterText/edit[@ref='5897'] -opus/document/letterText/edit[@ref='5898'] -opus/document/letterText/edit[@ref='59'] -opus/document/letterText/edit[@ref='590'] -opus/document/letterText/edit[@ref='5901'] -opus/document/letterText/edit[@ref='5902'] -opus/document/letterText/edit[@ref='5903'] -opus/document/letterText/edit[@ref='5904'] -opus/document/letterText/edit[@ref='5905'] -opus/document/letterText/edit[@ref='5906'] -opus/document/letterText/edit[@ref='5907'] -opus/document/letterText/edit[@ref='5908'] -opus/document/letterText/edit[@ref='5909'] -opus/document/letterText/edit[@ref='591'] -opus/document/letterText/edit[@ref='5910'] -opus/document/letterText/edit[@ref='5913'] -opus/document/letterText/edit[@ref='5914'] -opus/document/letterText/edit[@ref='5915'] -opus/document/letterText/edit[@ref='5916'] -opus/document/letterText/edit[@ref='5917'] -opus/document/letterText/edit[@ref='5918'] -opus/document/letterText/edit[@ref='592'] -opus/document/letterText/edit[@ref='5920'] -opus/document/letterText/edit[@ref='5921'] -opus/document/letterText/edit[@ref='5922'] -opus/document/letterText/edit[@ref='5923'] -opus/document/letterText/edit[@ref='5927'] -opus/document/letterText/edit[@ref='5928'] -opus/document/letterText/edit[@ref='5929'] -opus/document/letterText/edit[@ref='593'] -opus/document/letterText/edit[@ref='5930'] -opus/document/letterText/edit[@ref='5931'] -opus/document/letterText/edit[@ref='5933'] -opus/document/letterText/edit[@ref='5934'] -opus/document/letterText/edit[@ref='5935'] -opus/document/letterText/edit[@ref='5936'] -opus/document/letterText/edit[@ref='5937'] -opus/document/letterText/edit[@ref='5938'] -opus/document/letterText/edit[@ref='5939'] -opus/document/letterText/edit[@ref='594'] -opus/document/letterText/edit[@ref='5940'] -opus/document/letterText/edit[@ref='5941'] -opus/document/letterText/edit[@ref='5942'] -opus/document/letterText/edit[@ref='5943'] -opus/document/letterText/edit[@ref='5944'] -opus/document/letterText/edit[@ref='5945'] -opus/document/letterText/edit[@ref='5946'] -opus/document/letterText/edit[@ref='5947'] -opus/document/letterText/edit[@ref='5948'] -opus/document/letterText/edit[@ref='5949'] -opus/document/letterText/edit[@ref='595'] -opus/document/letterText/edit[@ref='5950'] -opus/document/letterText/edit[@ref='5951'] -opus/document/letterText/edit[@ref='5953'] -opus/document/letterText/edit[@ref='5954'] -opus/document/letterText/edit[@ref='5955'] -opus/document/letterText/edit[@ref='5956'] -opus/document/letterText/edit[@ref='5958'] -opus/document/letterText/edit[@ref='5959'] -opus/document/letterText/edit[@ref='596'] -opus/document/letterText/edit[@ref='5962'] -opus/document/letterText/edit[@ref='5963'] -opus/document/letterText/edit[@ref='5964'] -opus/document/letterText/edit[@ref='5965'] -opus/document/letterText/edit[@ref='5966'] -opus/document/letterText/edit[@ref='5967'] -opus/document/letterText/edit[@ref='5968'] -opus/document/letterText/edit[@ref='5969'] -opus/document/letterText/edit[@ref='5970'] -opus/document/letterText/edit[@ref='5971'] -opus/document/letterText/edit[@ref='5972'] -opus/document/letterText/edit[@ref='5973'] -opus/document/letterText/edit[@ref='5974'] -opus/document/letterText/edit[@ref='5975'] -opus/document/letterText/edit[@ref='5976'] -opus/document/letterText/edit[@ref='5977'] -opus/document/letterText/edit[@ref='5978'] -opus/document/letterText/edit[@ref='5979'] -opus/document/letterText/edit[@ref='598'] -opus/document/letterText/edit[@ref='5980'] -opus/document/letterText/edit[@ref='5981'] -opus/document/letterText/edit[@ref='5982'] -opus/document/letterText/edit[@ref='5983'] -opus/document/letterText/edit[@ref='5985'] -opus/document/letterText/edit[@ref='5986'] -opus/document/letterText/edit[@ref='5987'] -opus/document/letterText/edit[@ref='5988'] -opus/document/letterText/edit[@ref='5989'] -opus/document/letterText/edit[@ref='599'] -opus/document/letterText/edit[@ref='5990'] -opus/document/letterText/edit[@ref='5991'] -opus/document/letterText/edit[@ref='5992'] -opus/document/letterText/edit[@ref='5993'] -opus/document/letterText/edit[@ref='5994'] -opus/document/letterText/edit[@ref='5995'] -opus/document/letterText/edit[@ref='5996'] -opus/document/letterText/edit[@ref='5998'] -opus/document/letterText/edit[@ref='60'] -opus/document/letterText/edit[@ref='600'] -opus/document/letterText/edit[@ref='6000'] -opus/document/letterText/edit[@ref='6001'] -opus/document/letterText/edit[@ref='6002'] -opus/document/letterText/edit[@ref='6003'] -opus/document/letterText/edit[@ref='6004'] -opus/document/letterText/edit[@ref='6005'] -opus/document/letterText/edit[@ref='6006'] -opus/document/letterText/edit[@ref='6007'] -opus/document/letterText/edit[@ref='6008'] -opus/document/letterText/edit[@ref='6009'] -opus/document/letterText/edit[@ref='601'] -opus/document/letterText/edit[@ref='6010'] -opus/document/letterText/edit[@ref='6011'] -opus/document/letterText/edit[@ref='6014'] -opus/document/letterText/edit[@ref='6015'] -opus/document/letterText/edit[@ref='6016'] -opus/document/letterText/edit[@ref='6018'] -opus/document/letterText/edit[@ref='6019'] -opus/document/letterText/edit[@ref='6020'] -opus/document/letterText/edit[@ref='6021'] -opus/document/letterText/edit[@ref='6023'] -opus/document/letterText/edit[@ref='6025'] -opus/document/letterText/edit[@ref='6026'] -opus/document/letterText/edit[@ref='6027'] -opus/document/letterText/edit[@ref='6028'] -opus/document/letterText/edit[@ref='6029'] -opus/document/letterText/edit[@ref='603'] -opus/document/letterText/edit[@ref='6030'] -opus/document/letterText/edit[@ref='6032'] -opus/document/letterText/edit[@ref='6033'] -opus/document/letterText/edit[@ref='6034'] -opus/document/letterText/edit[@ref='6035'] -opus/document/letterText/edit[@ref='6036'] -opus/document/letterText/edit[@ref='6037'] -opus/document/letterText/edit[@ref='6039'] -opus/document/letterText/edit[@ref='604'] -opus/document/letterText/edit[@ref='6040'] -opus/document/letterText/edit[@ref='6041'] -opus/document/letterText/edit[@ref='6042'] -opus/document/letterText/edit[@ref='6043'] -opus/document/letterText/edit[@ref='6044'] -opus/document/letterText/edit[@ref='6045'] -opus/document/letterText/edit[@ref='6046'] -opus/document/letterText/edit[@ref='6047'] -opus/document/letterText/edit[@ref='605'] -opus/document/letterText/edit[@ref='6053'] -opus/document/letterText/edit[@ref='6054'] -opus/document/letterText/edit[@ref='6055'] -opus/document/letterText/edit[@ref='6056'] -opus/document/letterText/edit[@ref='6057'] -opus/document/letterText/edit[@ref='6058'] -opus/document/letterText/edit[@ref='6059'] -opus/document/letterText/edit[@ref='606'] -opus/document/letterText/edit[@ref='6060'] -opus/document/letterText/edit[@ref='6061'] -opus/document/letterText/edit[@ref='6062'] -opus/document/letterText/edit[@ref='6063'] -opus/document/letterText/edit[@ref='6064'] -opus/document/letterText/edit[@ref='6065'] -opus/document/letterText/edit[@ref='6066'] -opus/document/letterText/edit[@ref='6067'] -opus/document/letterText/edit[@ref='6068'] -opus/document/letterText/edit[@ref='6069'] -opus/document/letterText/edit[@ref='607'] -opus/document/letterText/edit[@ref='6071'] -opus/document/letterText/edit[@ref='6072'] -opus/document/letterText/edit[@ref='6073'] -opus/document/letterText/edit[@ref='6074'] -opus/document/letterText/edit[@ref='6075'] -opus/document/letterText/edit[@ref='6076'] -opus/document/letterText/edit[@ref='608'] -opus/document/letterText/edit[@ref='6080'] -opus/document/letterText/edit[@ref='6081'] -opus/document/letterText/edit[@ref='6082'] -opus/document/letterText/edit[@ref='6083'] -opus/document/letterText/edit[@ref='6084'] -opus/document/letterText/edit[@ref='6085'] -opus/document/letterText/edit[@ref='6086'] -opus/document/letterText/edit[@ref='6087'] -opus/document/letterText/edit[@ref='6088'] -opus/document/letterText/edit[@ref='6089'] -opus/document/letterText/edit[@ref='609'] -opus/document/letterText/edit[@ref='6090'] -opus/document/letterText/edit[@ref='6091'] -opus/document/letterText/edit[@ref='6092'] -opus/document/letterText/edit[@ref='6093'] -opus/document/letterText/edit[@ref='6095'] -opus/document/letterText/edit[@ref='6096'] -opus/document/letterText/edit[@ref='6097'] -opus/document/letterText/edit[@ref='6098'] -opus/document/letterText/edit[@ref='6099'] -opus/document/letterText/edit[@ref='61'] -opus/document/letterText/edit[@ref='610'] -opus/document/letterText/edit[@ref='6100'] -opus/document/letterText/edit[@ref='6101'] -opus/document/letterText/edit[@ref='6102'] -opus/document/letterText/edit[@ref='6103'] -opus/document/letterText/edit[@ref='6104'] -opus/document/letterText/edit[@ref='6105'] -opus/document/letterText/edit[@ref='6106'] -opus/document/letterText/edit[@ref='6107'] -opus/document/letterText/edit[@ref='6108'] -opus/document/letterText/edit[@ref='6109'] -opus/document/letterText/edit[@ref='6110'] -opus/document/letterText/edit[@ref='6111'] -opus/document/letterText/edit[@ref='6112'] -opus/document/letterText/edit[@ref='6113'] -opus/document/letterText/edit[@ref='6114'] -opus/document/letterText/edit[@ref='6115'] -opus/document/letterText/edit[@ref='6116'] -opus/document/letterText/edit[@ref='6117'] -opus/document/letterText/edit[@ref='6118'] -opus/document/letterText/edit[@ref='612'] -opus/document/letterText/edit[@ref='6121'] -opus/document/letterText/edit[@ref='6122'] -opus/document/letterText/edit[@ref='6124'] -opus/document/letterText/edit[@ref='6125'] -opus/document/letterText/edit[@ref='6126'] -opus/document/letterText/edit[@ref='6129'] -opus/document/letterText/edit[@ref='613'] -opus/document/letterText/edit[@ref='6134'] -opus/document/letterText/edit[@ref='6135'] -opus/document/letterText/edit[@ref='6136'] -opus/document/letterText/edit[@ref='6137'] -opus/document/letterText/edit[@ref='6138'] -opus/document/letterText/edit[@ref='6139'] -opus/document/letterText/edit[@ref='6140'] -opus/document/letterText/edit[@ref='6141'] -opus/document/letterText/edit[@ref='6143'] -opus/document/letterText/edit[@ref='6144'] -opus/document/letterText/edit[@ref='6145'] -opus/document/letterText/edit[@ref='6146'] -opus/document/letterText/edit[@ref='6148'] -opus/document/letterText/edit[@ref='6149'] -opus/document/letterText/edit[@ref='615'] -opus/document/letterText/edit[@ref='6150'] -opus/document/letterText/edit[@ref='6155'] -opus/document/letterText/edit[@ref='6156'] -opus/document/letterText/edit[@ref='6157'] -opus/document/letterText/edit[@ref='616'] -opus/document/letterText/edit[@ref='6160'] -opus/document/letterText/edit[@ref='6161'] -opus/document/letterText/edit[@ref='6162'] -opus/document/letterText/edit[@ref='6163'] -opus/document/letterText/edit[@ref='6167'] -opus/document/letterText/edit[@ref='617'] -opus/document/letterText/edit[@ref='6171'] -opus/document/letterText/edit[@ref='6172'] -opus/document/letterText/edit[@ref='6173'] -opus/document/letterText/edit[@ref='6174'] -opus/document/letterText/edit[@ref='6175'] -opus/document/letterText/edit[@ref='6176'] -opus/document/letterText/edit[@ref='6177'] -opus/document/letterText/edit[@ref='6178'] -opus/document/letterText/edit[@ref='6179'] -opus/document/letterText/edit[@ref='618'] -opus/document/letterText/edit[@ref='6182'] -opus/document/letterText/edit[@ref='6183'] -opus/document/letterText/edit[@ref='6184'] -opus/document/letterText/edit[@ref='6185'] -opus/document/letterText/edit[@ref='6186'] -opus/document/letterText/edit[@ref='619'] -opus/document/letterText/edit[@ref='6192'] -opus/document/letterText/edit[@ref='6193'] -opus/document/letterText/edit[@ref='6194'] -opus/document/letterText/edit[@ref='6195'] -opus/document/letterText/edit[@ref='6196'] -opus/document/letterText/edit[@ref='6198'] -opus/document/letterText/edit[@ref='62'] -opus/document/letterText/edit[@ref='6207'] -opus/document/letterText/edit[@ref='6209'] -opus/document/letterText/edit[@ref='621'] -opus/document/letterText/edit[@ref='6212'] -opus/document/letterText/edit[@ref='6214'] -opus/document/letterText/edit[@ref='6215'] -opus/document/letterText/edit[@ref='6219'] -opus/document/letterText/edit[@ref='6220'] -opus/document/letterText/edit[@ref='6221'] -opus/document/letterText/edit[@ref='6222'] -opus/document/letterText/edit[@ref='6225'] -opus/document/letterText/edit[@ref='6226'] -opus/document/letterText/edit[@ref='6227'] -opus/document/letterText/edit[@ref='6228'] -opus/document/letterText/edit[@ref='6229'] -opus/document/letterText/edit[@ref='623'] -opus/document/letterText/edit[@ref='6230'] -opus/document/letterText/edit[@ref='6231'] -opus/document/letterText/edit[@ref='6232'] -opus/document/letterText/edit[@ref='6233'] -opus/document/letterText/edit[@ref='6234'] -opus/document/letterText/edit[@ref='6235'] -opus/document/letterText/edit[@ref='6236'] -opus/document/letterText/edit[@ref='6237'] -opus/document/letterText/edit[@ref='6238'] -opus/document/letterText/edit[@ref='624'] -opus/document/letterText/edit[@ref='6240'] -opus/document/letterText/edit[@ref='6241'] -opus/document/letterText/edit[@ref='6243'] -opus/document/letterText/edit[@ref='6244'] -opus/document/letterText/edit[@ref='6245'] -opus/document/letterText/edit[@ref='6246'] -opus/document/letterText/edit[@ref='6248'] -opus/document/letterText/edit[@ref='625'] -opus/document/letterText/edit[@ref='6255'] -opus/document/letterText/edit[@ref='6256'] -opus/document/letterText/edit[@ref='6257'] -opus/document/letterText/edit[@ref='6258'] -opus/document/letterText/edit[@ref='6259'] -opus/document/letterText/edit[@ref='626'] -opus/document/letterText/edit[@ref='6260'] -opus/document/letterText/edit[@ref='6261'] -opus/document/letterText/edit[@ref='6262'] -opus/document/letterText/edit[@ref='6263'] -opus/document/letterText/edit[@ref='6265'] -opus/document/letterText/edit[@ref='6267'] -opus/document/letterText/edit[@ref='627'] -opus/document/letterText/edit[@ref='6272'] -opus/document/letterText/edit[@ref='6273'] -opus/document/letterText/edit[@ref='6274'] -opus/document/letterText/edit[@ref='6275'] -opus/document/letterText/edit[@ref='6276'] -opus/document/letterText/edit[@ref='6277'] -opus/document/letterText/edit[@ref='6278'] -opus/document/letterText/edit[@ref='6279'] -opus/document/letterText/edit[@ref='628'] -opus/document/letterText/edit[@ref='6280'] -opus/document/letterText/edit[@ref='6281'] -opus/document/letterText/edit[@ref='6282'] -opus/document/letterText/edit[@ref='6283'] -opus/document/letterText/edit[@ref='6284'] -opus/document/letterText/edit[@ref='6285'] -opus/document/letterText/edit[@ref='6286'] -opus/document/letterText/edit[@ref='6287'] -opus/document/letterText/edit[@ref='6288'] -opus/document/letterText/edit[@ref='6289'] -opus/document/letterText/edit[@ref='629'] -opus/document/letterText/edit[@ref='6290'] -opus/document/letterText/edit[@ref='6291'] -opus/document/letterText/edit[@ref='6292'] -opus/document/letterText/edit[@ref='6293'] -opus/document/letterText/edit[@ref='6294'] -opus/document/letterText/edit[@ref='6295'] -opus/document/letterText/edit[@ref='6296'] -opus/document/letterText/edit[@ref='6297'] -opus/document/letterText/edit[@ref='6298'] -opus/document/letterText/edit[@ref='63'] -opus/document/letterText/edit[@ref='630'] -opus/document/letterText/edit[@ref='6300'] -opus/document/letterText/edit[@ref='6301'] -opus/document/letterText/edit[@ref='6302'] -opus/document/letterText/edit[@ref='6303'] -opus/document/letterText/edit[@ref='6304'] -opus/document/letterText/edit[@ref='6305'] -opus/document/letterText/edit[@ref='6306'] -opus/document/letterText/edit[@ref='6307'] -opus/document/letterText/edit[@ref='6308'] -opus/document/letterText/edit[@ref='631'] -opus/document/letterText/edit[@ref='6310'] -opus/document/letterText/edit[@ref='6311'] -opus/document/letterText/edit[@ref='6312'] -opus/document/letterText/edit[@ref='6313'] -opus/document/letterText/edit[@ref='6317'] -opus/document/letterText/edit[@ref='6318'] -opus/document/letterText/edit[@ref='6319'] -opus/document/letterText/edit[@ref='632'] -opus/document/letterText/edit[@ref='6320'] -opus/document/letterText/edit[@ref='6323'] -opus/document/letterText/edit[@ref='6324'] -opus/document/letterText/edit[@ref='6325'] -opus/document/letterText/edit[@ref='6326'] -opus/document/letterText/edit[@ref='6327'] -opus/document/letterText/edit[@ref='6328'] -opus/document/letterText/edit[@ref='6329'] -opus/document/letterText/edit[@ref='633'] -opus/document/letterText/edit[@ref='6330'] -opus/document/letterText/edit[@ref='6331'] -opus/document/letterText/edit[@ref='6332'] -opus/document/letterText/edit[@ref='6333'] -opus/document/letterText/edit[@ref='6334'] -opus/document/letterText/edit[@ref='6336'] -opus/document/letterText/edit[@ref='6337'] -opus/document/letterText/edit[@ref='6338'] -opus/document/letterText/edit[@ref='6339'] -opus/document/letterText/edit[@ref='634'] -opus/document/letterText/edit[@ref='6340'] -opus/document/letterText/edit[@ref='6341'] -opus/document/letterText/edit[@ref='6344'] -opus/document/letterText/edit[@ref='6345'] -opus/document/letterText/edit[@ref='6346'] -opus/document/letterText/edit[@ref='6347'] -opus/document/letterText/edit[@ref='6348'] -opus/document/letterText/edit[@ref='635'] -opus/document/letterText/edit[@ref='6350'] -opus/document/letterText/edit[@ref='6351'] -opus/document/letterText/edit[@ref='6352'] -opus/document/letterText/edit[@ref='6353'] -opus/document/letterText/edit[@ref='6357'] -opus/document/letterText/edit[@ref='6358'] -opus/document/letterText/edit[@ref='6359'] -opus/document/letterText/edit[@ref='636'] -opus/document/letterText/edit[@ref='6360'] -opus/document/letterText/edit[@ref='6361'] -opus/document/letterText/edit[@ref='6362'] -opus/document/letterText/edit[@ref='6363'] -opus/document/letterText/edit[@ref='6367'] -opus/document/letterText/edit[@ref='6368'] -opus/document/letterText/edit[@ref='6369'] -opus/document/letterText/edit[@ref='637'] -opus/document/letterText/edit[@ref='6372'] -opus/document/letterText/edit[@ref='6373'] -opus/document/letterText/edit[@ref='6374'] -opus/document/letterText/edit[@ref='6375'] -opus/document/letterText/edit[@ref='6376'] -opus/document/letterText/edit[@ref='6377'] -opus/document/letterText/edit[@ref='6378'] -opus/document/letterText/edit[@ref='6379'] -opus/document/letterText/edit[@ref='638'] -opus/document/letterText/edit[@ref='6380'] -opus/document/letterText/edit[@ref='6381'] -opus/document/letterText/edit[@ref='6382'] -opus/document/letterText/edit[@ref='6383'] -opus/document/letterText/edit[@ref='6384'] -opus/document/letterText/edit[@ref='6385'] -opus/document/letterText/edit[@ref='6386'] -opus/document/letterText/edit[@ref='6387'] -opus/document/letterText/edit[@ref='6388'] -opus/document/letterText/edit[@ref='6389'] -opus/document/letterText/edit[@ref='639'] -opus/document/letterText/edit[@ref='6390'] -opus/document/letterText/edit[@ref='6391'] -opus/document/letterText/edit[@ref='6392'] -opus/document/letterText/edit[@ref='6393'] -opus/document/letterText/edit[@ref='6394'] -opus/document/letterText/edit[@ref='6395'] -opus/document/letterText/edit[@ref='6397'] -opus/document/letterText/edit[@ref='6398'] -opus/document/letterText/edit[@ref='6399'] -opus/document/letterText/edit[@ref='64'] -opus/document/letterText/edit[@ref='640'] -opus/document/letterText/edit[@ref='6400'] -opus/document/letterText/edit[@ref='6401'] -opus/document/letterText/edit[@ref='6402'] -opus/document/letterText/edit[@ref='6403'] -opus/document/letterText/edit[@ref='6404'] -opus/document/letterText/edit[@ref='6405'] -opus/document/letterText/edit[@ref='6408'] -opus/document/letterText/edit[@ref='6409'] -opus/document/letterText/edit[@ref='641'] -opus/document/letterText/edit[@ref='6410'] -opus/document/letterText/edit[@ref='6411'] -opus/document/letterText/edit[@ref='6412'] -opus/document/letterText/edit[@ref='6413'] -opus/document/letterText/edit[@ref='6414'] -opus/document/letterText/edit[@ref='6415'] -opus/document/letterText/edit[@ref='6416'] -opus/document/letterText/edit[@ref='6417'] -opus/document/letterText/edit[@ref='6418'] -opus/document/letterText/edit[@ref='6419'] -opus/document/letterText/edit[@ref='642'] -opus/document/letterText/edit[@ref='6420'] -opus/document/letterText/edit[@ref='6421'] -opus/document/letterText/edit[@ref='6423'] -opus/document/letterText/edit[@ref='6424'] -opus/document/letterText/edit[@ref='6427'] -opus/document/letterText/edit[@ref='6428'] -opus/document/letterText/edit[@ref='6429'] -opus/document/letterText/edit[@ref='643'] -opus/document/letterText/edit[@ref='6430'] -opus/document/letterText/edit[@ref='6432'] -opus/document/letterText/edit[@ref='6433'] -opus/document/letterText/edit[@ref='6434'] -opus/document/letterText/edit[@ref='6435'] -opus/document/letterText/edit[@ref='6436'] -opus/document/letterText/edit[@ref='6437'] -opus/document/letterText/edit[@ref='6438'] -opus/document/letterText/edit[@ref='6439'] -opus/document/letterText/edit[@ref='644'] -opus/document/letterText/edit[@ref='6443'] -opus/document/letterText/edit[@ref='6444'] -opus/document/letterText/edit[@ref='6445'] -opus/document/letterText/edit[@ref='6446'] -opus/document/letterText/edit[@ref='6447'] -opus/document/letterText/edit[@ref='6448'] -opus/document/letterText/edit[@ref='6454'] -opus/document/letterText/edit[@ref='6455'] -opus/document/letterText/edit[@ref='6456'] -opus/document/letterText/edit[@ref='6457'] -opus/document/letterText/edit[@ref='6459'] -opus/document/letterText/edit[@ref='646'] -opus/document/letterText/edit[@ref='6460'] -opus/document/letterText/edit[@ref='6464'] -opus/document/letterText/edit[@ref='6465'] -opus/document/letterText/edit[@ref='6466'] -opus/document/letterText/edit[@ref='6467'] -opus/document/letterText/edit[@ref='6468'] -opus/document/letterText/edit[@ref='6469'] -opus/document/letterText/edit[@ref='647'] -opus/document/letterText/edit[@ref='6473'] -opus/document/letterText/edit[@ref='6474'] -opus/document/letterText/edit[@ref='6476'] -opus/document/letterText/edit[@ref='6477'] -opus/document/letterText/edit[@ref='6478'] -opus/document/letterText/edit[@ref='648'] -opus/document/letterText/edit[@ref='6481'] -opus/document/letterText/edit[@ref='6482'] -opus/document/letterText/edit[@ref='6483'] -opus/document/letterText/edit[@ref='6484'] -opus/document/letterText/edit[@ref='6486'] -opus/document/letterText/edit[@ref='6487'] -opus/document/letterText/edit[@ref='6488'] -opus/document/letterText/edit[@ref='6489'] -opus/document/letterText/edit[@ref='649'] -opus/document/letterText/edit[@ref='6490'] -opus/document/letterText/edit[@ref='6491'] -opus/document/letterText/edit[@ref='6492'] -opus/document/letterText/edit[@ref='6493'] -opus/document/letterText/edit[@ref='6494'] -opus/document/letterText/edit[@ref='6495'] -opus/document/letterText/edit[@ref='6496'] -opus/document/letterText/edit[@ref='65'] -opus/document/letterText/edit[@ref='650'] -opus/document/letterText/edit[@ref='6503'] -opus/document/letterText/edit[@ref='6504'] -opus/document/letterText/edit[@ref='6505'] -opus/document/letterText/edit[@ref='6506'] -opus/document/letterText/edit[@ref='6507'] -opus/document/letterText/edit[@ref='6508'] -opus/document/letterText/edit[@ref='6509'] -opus/document/letterText/edit[@ref='651'] -opus/document/letterText/edit[@ref='6511'] -opus/document/letterText/edit[@ref='6512'] -opus/document/letterText/edit[@ref='6513'] -opus/document/letterText/edit[@ref='6514'] -opus/document/letterText/edit[@ref='6515'] -opus/document/letterText/edit[@ref='652'] -opus/document/letterText/edit[@ref='6520'] -opus/document/letterText/edit[@ref='6521'] -opus/document/letterText/edit[@ref='6523'] -opus/document/letterText/edit[@ref='6524'] -opus/document/letterText/edit[@ref='6526'] -opus/document/letterText/edit[@ref='6527'] -opus/document/letterText/edit[@ref='6528'] -opus/document/letterText/edit[@ref='6529'] -opus/document/letterText/edit[@ref='653'] -opus/document/letterText/edit[@ref='6530'] -opus/document/letterText/edit[@ref='6531'] -opus/document/letterText/edit[@ref='6532'] -opus/document/letterText/edit[@ref='6533'] -opus/document/letterText/edit[@ref='6534'] -opus/document/letterText/edit[@ref='6535'] -opus/document/letterText/edit[@ref='6536'] -opus/document/letterText/edit[@ref='6537'] -opus/document/letterText/edit[@ref='6538'] -opus/document/letterText/edit[@ref='654'] -opus/document/letterText/edit[@ref='6542'] -opus/document/letterText/edit[@ref='6543'] -opus/document/letterText/edit[@ref='6548'] -opus/document/letterText/edit[@ref='655'] -opus/document/letterText/edit[@ref='6555'] -opus/document/letterText/edit[@ref='6556'] -opus/document/letterText/edit[@ref='6557'] -opus/document/letterText/edit[@ref='6558'] -opus/document/letterText/edit[@ref='6559'] -opus/document/letterText/edit[@ref='656'] -opus/document/letterText/edit[@ref='6560'] -opus/document/letterText/edit[@ref='6561'] -opus/document/letterText/edit[@ref='6562'] -opus/document/letterText/edit[@ref='6563'] -opus/document/letterText/edit[@ref='6564'] -opus/document/letterText/edit[@ref='6566'] -opus/document/letterText/edit[@ref='6567'] -opus/document/letterText/edit[@ref='6568'] -opus/document/letterText/edit[@ref='6569'] -opus/document/letterText/edit[@ref='657'] -opus/document/letterText/edit[@ref='6570'] -opus/document/letterText/edit[@ref='6571'] -opus/document/letterText/edit[@ref='6572'] -opus/document/letterText/edit[@ref='6573'] -opus/document/letterText/edit[@ref='6574'] -opus/document/letterText/edit[@ref='6575'] -opus/document/letterText/edit[@ref='6576'] -opus/document/letterText/edit[@ref='6578'] -opus/document/letterText/edit[@ref='6580'] -opus/document/letterText/edit[@ref='6582'] -opus/document/letterText/edit[@ref='6583'] -opus/document/letterText/edit[@ref='6584'] -opus/document/letterText/edit[@ref='6585'] -opus/document/letterText/edit[@ref='6586'] -opus/document/letterText/edit[@ref='6587'] -opus/document/letterText/edit[@ref='6588'] -opus/document/letterText/edit[@ref='6589'] -opus/document/letterText/edit[@ref='6590'] -opus/document/letterText/edit[@ref='6591'] -opus/document/letterText/edit[@ref='6592'] -opus/document/letterText/edit[@ref='6593'] -opus/document/letterText/edit[@ref='6597'] -opus/document/letterText/edit[@ref='6598'] -opus/document/letterText/edit[@ref='6599'] -opus/document/letterText/edit[@ref='66'] -opus/document/letterText/edit[@ref='660'] -opus/document/letterText/edit[@ref='6601'] -opus/document/letterText/edit[@ref='6602'] -opus/document/letterText/edit[@ref='6603'] -opus/document/letterText/edit[@ref='6609'] -opus/document/letterText/edit[@ref='661'] -opus/document/letterText/edit[@ref='6610'] -opus/document/letterText/edit[@ref='6613'] -opus/document/letterText/edit[@ref='6614'] -opus/document/letterText/edit[@ref='6615'] -opus/document/letterText/edit[@ref='6616'] -opus/document/letterText/edit[@ref='6617'] -opus/document/letterText/edit[@ref='6618'] -opus/document/letterText/edit[@ref='6619'] -opus/document/letterText/edit[@ref='662'] -opus/document/letterText/edit[@ref='6623'] -opus/document/letterText/edit[@ref='6624'] -opus/document/letterText/edit[@ref='6625'] -opus/document/letterText/edit[@ref='6626'] -opus/document/letterText/edit[@ref='6627'] -opus/document/letterText/edit[@ref='6628'] -opus/document/letterText/edit[@ref='6629'] -opus/document/letterText/edit[@ref='6630'] -opus/document/letterText/edit[@ref='6631'] -opus/document/letterText/edit[@ref='6632'] -opus/document/letterText/edit[@ref='6633'] -opus/document/letterText/edit[@ref='6634'] -opus/document/letterText/edit[@ref='6635'] -opus/document/letterText/edit[@ref='6637'] -opus/document/letterText/edit[@ref='6638'] -opus/document/letterText/edit[@ref='6639'] -opus/document/letterText/edit[@ref='664'] -opus/document/letterText/edit[@ref='6643'] -opus/document/letterText/edit[@ref='6644'] -opus/document/letterText/edit[@ref='6647'] -opus/document/letterText/edit[@ref='6648'] -opus/document/letterText/edit[@ref='665'] -opus/document/letterText/edit[@ref='6650'] -opus/document/letterText/edit[@ref='6651'] -opus/document/letterText/edit[@ref='6652'] -opus/document/letterText/edit[@ref='6653'] -opus/document/letterText/edit[@ref='6654'] -opus/document/letterText/edit[@ref='6655'] -opus/document/letterText/edit[@ref='6656'] -opus/document/letterText/edit[@ref='6657'] -opus/document/letterText/edit[@ref='6658'] -opus/document/letterText/edit[@ref='6659'] -opus/document/letterText/edit[@ref='6660'] -opus/document/letterText/edit[@ref='6661'] -opus/document/letterText/edit[@ref='6662'] -opus/document/letterText/edit[@ref='6663'] -opus/document/letterText/edit[@ref='6664'] -opus/document/letterText/edit[@ref='6665'] -opus/document/letterText/edit[@ref='6666'] -opus/document/letterText/edit[@ref='6670'] -opus/document/letterText/edit[@ref='6671'] -opus/document/letterText/edit[@ref='6672'] -opus/document/letterText/edit[@ref='6675'] -opus/document/letterText/edit[@ref='6676'] -opus/document/letterText/edit[@ref='6680'] -opus/document/letterText/edit[@ref='6681'] -opus/document/letterText/edit[@ref='6682'] -opus/document/letterText/edit[@ref='6683'] -opus/document/letterText/edit[@ref='6684'] -opus/document/letterText/edit[@ref='6685'] -opus/document/letterText/edit[@ref='6688'] -opus/document/letterText/edit[@ref='669'] -opus/document/letterText/edit[@ref='6690'] -opus/document/letterText/edit[@ref='6691'] -opus/document/letterText/edit[@ref='6692'] -opus/document/letterText/edit[@ref='6694'] -opus/document/letterText/edit[@ref='6695'] -opus/document/letterText/edit[@ref='6697'] -opus/document/letterText/edit[@ref='67'] -opus/document/letterText/edit[@ref='6701'] -opus/document/letterText/edit[@ref='6703'] -opus/document/letterText/edit[@ref='6704'] -opus/document/letterText/edit[@ref='671'] -opus/document/letterText/edit[@ref='6712'] -opus/document/letterText/edit[@ref='6713'] -opus/document/letterText/edit[@ref='6714'] -opus/document/letterText/edit[@ref='6715'] -opus/document/letterText/edit[@ref='6716'] -opus/document/letterText/edit[@ref='6717'] -opus/document/letterText/edit[@ref='6718'] -opus/document/letterText/edit[@ref='6719'] -opus/document/letterText/edit[@ref='672'] -opus/document/letterText/edit[@ref='6720'] -opus/document/letterText/edit[@ref='6721'] -opus/document/letterText/edit[@ref='6723'] -opus/document/letterText/edit[@ref='673'] -opus/document/letterText/edit[@ref='6730'] -opus/document/letterText/edit[@ref='6731'] -opus/document/letterText/edit[@ref='6732'] -opus/document/letterText/edit[@ref='6733'] -opus/document/letterText/edit[@ref='6735'] -opus/document/letterText/edit[@ref='6736'] -opus/document/letterText/edit[@ref='6737'] -opus/document/letterText/edit[@ref='6738'] -opus/document/letterText/edit[@ref='674'] -opus/document/letterText/edit[@ref='6740'] -opus/document/letterText/edit[@ref='6742'] -opus/document/letterText/edit[@ref='6744'] -opus/document/letterText/edit[@ref='6747'] -opus/document/letterText/edit[@ref='6749'] -opus/document/letterText/edit[@ref='675'] -opus/document/letterText/edit[@ref='6750'] -opus/document/letterText/edit[@ref='6751'] -opus/document/letterText/edit[@ref='6752'] -opus/document/letterText/edit[@ref='676'] -opus/document/letterText/edit[@ref='677'] -opus/document/letterText/edit[@ref='6786'] -opus/document/letterText/edit[@ref='6787'] -opus/document/letterText/edit[@ref='6788'] -opus/document/letterText/edit[@ref='6789'] -opus/document/letterText/edit[@ref='6790'] -opus/document/letterText/edit[@ref='6791'] -opus/document/letterText/edit[@ref='6793'] -opus/document/letterText/edit[@ref='6795'] -opus/document/letterText/edit[@ref='6796'] -opus/document/letterText/edit[@ref='6797'] -opus/document/letterText/edit[@ref='68'] -opus/document/letterText/edit[@ref='680'] -opus/document/letterText/edit[@ref='6802'] -opus/document/letterText/edit[@ref='6805'] -opus/document/letterText/edit[@ref='6806'] -opus/document/letterText/edit[@ref='682'] -opus/document/letterText/edit[@ref='683'] -opus/document/letterText/edit[@ref='684'] -opus/document/letterText/edit[@ref='685'] -opus/document/letterText/edit[@ref='686'] -opus/document/letterText/edit[@ref='687'] -opus/document/letterText/edit[@ref='688'] -opus/document/letterText/edit[@ref='689'] -opus/document/letterText/edit[@ref='69'] -opus/document/letterText/edit[@ref='690'] -opus/document/letterText/edit[@ref='691'] -opus/document/letterText/edit[@ref='692'] -opus/document/letterText/edit[@ref='693'] -opus/document/letterText/edit[@ref='694'] -opus/document/letterText/edit[@ref='695'] -opus/document/letterText/edit[@ref='696'] -opus/document/letterText/edit[@ref='697'] -opus/document/letterText/edit[@ref='698'] -opus/document/letterText/edit[@ref='699'] -opus/document/letterText/edit[@ref='70'] -opus/document/letterText/edit[@ref='700'] -opus/document/letterText/edit[@ref='701'] -opus/document/letterText/edit[@ref='702'] -opus/document/letterText/edit[@ref='703'] -opus/document/letterText/edit[@ref='704'] -opus/document/letterText/edit[@ref='705'] -opus/document/letterText/edit[@ref='706'] -opus/document/letterText/edit[@ref='707'] -opus/document/letterText/edit[@ref='708'] -opus/document/letterText/edit[@ref='709'] -opus/document/letterText/edit[@ref='71'] -opus/document/letterText/edit[@ref='710'] -opus/document/letterText/edit[@ref='712'] -opus/document/letterText/edit[@ref='713'] -opus/document/letterText/edit[@ref='714'] -opus/document/letterText/edit[@ref='715'] -opus/document/letterText/edit[@ref='716'] -opus/document/letterText/edit[@ref='717'] -opus/document/letterText/edit[@ref='718'] -opus/document/letterText/edit[@ref='719'] -opus/document/letterText/edit[@ref='72'] -opus/document/letterText/edit[@ref='720'] -opus/document/letterText/edit[@ref='722'] -opus/document/letterText/edit[@ref='723'] -opus/document/letterText/edit[@ref='724'] -opus/document/letterText/edit[@ref='725'] -opus/document/letterText/edit[@ref='726'] -opus/document/letterText/edit[@ref='727'] -opus/document/letterText/edit[@ref='728'] -opus/document/letterText/edit[@ref='729'] -opus/document/letterText/edit[@ref='73'] -opus/document/letterText/edit[@ref='730'] -opus/document/letterText/edit[@ref='731'] -opus/document/letterText/edit[@ref='732'] -opus/document/letterText/edit[@ref='733'] -opus/document/letterText/edit[@ref='734'] -opus/document/letterText/edit[@ref='735'] -opus/document/letterText/edit[@ref='736'] -opus/document/letterText/edit[@ref='738'] -opus/document/letterText/edit[@ref='739'] -opus/document/letterText/edit[@ref='74'] -opus/document/letterText/edit[@ref='740'] -opus/document/letterText/edit[@ref='741'] -opus/document/letterText/edit[@ref='742'] -opus/document/letterText/edit[@ref='743'] -opus/document/letterText/edit[@ref='744'] -opus/document/letterText/edit[@ref='745'] -opus/document/letterText/edit[@ref='746'] -opus/document/letterText/edit[@ref='747'] -opus/document/letterText/edit[@ref='748'] -opus/document/letterText/edit[@ref='749'] -opus/document/letterText/edit[@ref='75'] -opus/document/letterText/edit[@ref='750'] -opus/document/letterText/edit[@ref='751'] -opus/document/letterText/edit[@ref='752'] -opus/document/letterText/edit[@ref='753'] -opus/document/letterText/edit[@ref='754'] -opus/document/letterText/edit[@ref='755'] -opus/document/letterText/edit[@ref='757'] -opus/document/letterText/edit[@ref='758'] -opus/document/letterText/edit[@ref='759'] -opus/document/letterText/edit[@ref='76'] -opus/document/letterText/edit[@ref='760'] -opus/document/letterText/edit[@ref='761'] -opus/document/letterText/edit[@ref='762'] -opus/document/letterText/edit[@ref='763'] -opus/document/letterText/edit[@ref='764'] -opus/document/letterText/edit[@ref='765'] -opus/document/letterText/edit[@ref='766'] -opus/document/letterText/edit[@ref='767'] -opus/document/letterText/edit[@ref='768'] -opus/document/letterText/edit[@ref='769'] -opus/document/letterText/edit[@ref='77'] -opus/document/letterText/edit[@ref='770'] -opus/document/letterText/edit[@ref='771'] -opus/document/letterText/edit[@ref='772'] -opus/document/letterText/edit[@ref='773'] -opus/document/letterText/edit[@ref='774'] -opus/document/letterText/edit[@ref='775'] -opus/document/letterText/edit[@ref='776'] -opus/document/letterText/edit[@ref='777'] -opus/document/letterText/edit[@ref='778'] -opus/document/letterText/edit[@ref='779'] -opus/document/letterText/edit[@ref='78'] -opus/document/letterText/edit[@ref='780'] -opus/document/letterText/edit[@ref='781'] -opus/document/letterText/edit[@ref='783'] -opus/document/letterText/edit[@ref='784'] -opus/document/letterText/edit[@ref='785'] -opus/document/letterText/edit[@ref='786'] -opus/document/letterText/edit[@ref='787'] -opus/document/letterText/edit[@ref='788'] -opus/document/letterText/edit[@ref='789'] -opus/document/letterText/edit[@ref='79'] -opus/document/letterText/edit[@ref='790'] -opus/document/letterText/edit[@ref='791'] -opus/document/letterText/edit[@ref='793'] -opus/document/letterText/edit[@ref='794'] -opus/document/letterText/edit[@ref='795'] -opus/document/letterText/edit[@ref='796'] -opus/document/letterText/edit[@ref='797'] -opus/document/letterText/edit[@ref='798'] -opus/document/letterText/edit[@ref='799'] -opus/document/letterText/edit[@ref='8'] -opus/document/letterText/edit[@ref='80'] -opus/document/letterText/edit[@ref='800'] -opus/document/letterText/edit[@ref='801'] -opus/document/letterText/edit[@ref='802'] -opus/document/letterText/edit[@ref='803'] -opus/document/letterText/edit[@ref='804'] -opus/document/letterText/edit[@ref='805'] -opus/document/letterText/edit[@ref='806'] -opus/document/letterText/edit[@ref='807'] -opus/document/letterText/edit[@ref='808'] -opus/document/letterText/edit[@ref='809'] -opus/document/letterText/edit[@ref='81'] -opus/document/letterText/edit[@ref='810'] -opus/document/letterText/edit[@ref='811'] -opus/document/letterText/edit[@ref='812'] -opus/document/letterText/edit[@ref='813'] -opus/document/letterText/edit[@ref='814'] -opus/document/letterText/edit[@ref='816'] -opus/document/letterText/edit[@ref='817'] -opus/document/letterText/edit[@ref='818'] -opus/document/letterText/edit[@ref='819'] -opus/document/letterText/edit[@ref='82'] -opus/document/letterText/edit[@ref='820'] -opus/document/letterText/edit[@ref='821'] -opus/document/letterText/edit[@ref='823'] -opus/document/letterText/edit[@ref='824'] -opus/document/letterText/edit[@ref='825'] -opus/document/letterText/edit[@ref='826'] -opus/document/letterText/edit[@ref='827'] -opus/document/letterText/edit[@ref='828'] -opus/document/letterText/edit[@ref='829'] -opus/document/letterText/edit[@ref='83'] -opus/document/letterText/edit[@ref='830'] -opus/document/letterText/edit[@ref='831'] -opus/document/letterText/edit[@ref='832'] -opus/document/letterText/edit[@ref='833'] -opus/document/letterText/edit[@ref='834'] -opus/document/letterText/edit[@ref='837'] -opus/document/letterText/edit[@ref='838'] -opus/document/letterText/edit[@ref='839'] -opus/document/letterText/edit[@ref='84'] -opus/document/letterText/edit[@ref='840'] -opus/document/letterText/edit[@ref='841'] -opus/document/letterText/edit[@ref='842'] -opus/document/letterText/edit[@ref='843'] -opus/document/letterText/edit[@ref='844'] -opus/document/letterText/edit[@ref='845'] -opus/document/letterText/edit[@ref='846'] -opus/document/letterText/edit[@ref='847'] -opus/document/letterText/edit[@ref='848'] -opus/document/letterText/edit[@ref='849'] -opus/document/letterText/edit[@ref='85'] -opus/document/letterText/edit[@ref='850'] -opus/document/letterText/edit[@ref='851'] -opus/document/letterText/edit[@ref='852'] -opus/document/letterText/edit[@ref='853'] -opus/document/letterText/edit[@ref='854'] -opus/document/letterText/edit[@ref='856'] -opus/document/letterText/edit[@ref='857'] -opus/document/letterText/edit[@ref='858'] -opus/document/letterText/edit[@ref='859'] -opus/document/letterText/edit[@ref='86'] -opus/document/letterText/edit[@ref='860'] -opus/document/letterText/edit[@ref='861'] -opus/document/letterText/edit[@ref='862'] -opus/document/letterText/edit[@ref='863'] -opus/document/letterText/edit[@ref='864'] -opus/document/letterText/edit[@ref='865'] -opus/document/letterText/edit[@ref='866'] -opus/document/letterText/edit[@ref='867'] -opus/document/letterText/edit[@ref='868'] -opus/document/letterText/edit[@ref='869'] -opus/document/letterText/edit[@ref='87'] -opus/document/letterText/edit[@ref='870'] -opus/document/letterText/edit[@ref='871'] -opus/document/letterText/edit[@ref='872'] -opus/document/letterText/edit[@ref='873'] -opus/document/letterText/edit[@ref='874'] -opus/document/letterText/edit[@ref='875'] -opus/document/letterText/edit[@ref='876'] -opus/document/letterText/edit[@ref='877'] -opus/document/letterText/edit[@ref='878'] -opus/document/letterText/edit[@ref='879'] -opus/document/letterText/edit[@ref='88'] -opus/document/letterText/edit[@ref='880'] -opus/document/letterText/edit[@ref='881'] -opus/document/letterText/edit[@ref='882'] -opus/document/letterText/edit[@ref='883'] -opus/document/letterText/edit[@ref='884'] -opus/document/letterText/edit[@ref='885'] -opus/document/letterText/edit[@ref='886'] -opus/document/letterText/edit[@ref='887'] -opus/document/letterText/edit[@ref='888'] -opus/document/letterText/edit[@ref='889'] -opus/document/letterText/edit[@ref='89'] -opus/document/letterText/edit[@ref='890'] -opus/document/letterText/edit[@ref='891'] -opus/document/letterText/edit[@ref='892'] -opus/document/letterText/edit[@ref='893'] -opus/document/letterText/edit[@ref='894'] -opus/document/letterText/edit[@ref='895'] -opus/document/letterText/edit[@ref='896'] -opus/document/letterText/edit[@ref='897'] -opus/document/letterText/edit[@ref='898'] -opus/document/letterText/edit[@ref='899'] -opus/document/letterText/edit[@ref='90'] -opus/document/letterText/edit[@ref='900'] -opus/document/letterText/edit[@ref='901'] -opus/document/letterText/edit[@ref='902'] -opus/document/letterText/edit[@ref='903'] -opus/document/letterText/edit[@ref='904'] -opus/document/letterText/edit[@ref='905'] -opus/document/letterText/edit[@ref='906'] -opus/document/letterText/edit[@ref='907'] -opus/document/letterText/edit[@ref='908'] -opus/document/letterText/edit[@ref='909'] -opus/document/letterText/edit[@ref='91'] -opus/document/letterText/edit[@ref='910'] -opus/document/letterText/edit[@ref='911'] -opus/document/letterText/edit[@ref='912'] -opus/document/letterText/edit[@ref='913'] -opus/document/letterText/edit[@ref='914'] -opus/document/letterText/edit[@ref='915'] -opus/document/letterText/edit[@ref='916'] -opus/document/letterText/edit[@ref='917'] -opus/document/letterText/edit[@ref='918'] -opus/document/letterText/edit[@ref='919'] -opus/document/letterText/edit[@ref='92'] -opus/document/letterText/edit[@ref='920'] -opus/document/letterText/edit[@ref='921'] -opus/document/letterText/edit[@ref='924'] -opus/document/letterText/edit[@ref='926'] -opus/document/letterText/edit[@ref='929'] -opus/document/letterText/edit[@ref='93'] -opus/document/letterText/edit[@ref='930'] -opus/document/letterText/edit[@ref='931'] -opus/document/letterText/edit[@ref='932'] -opus/document/letterText/edit[@ref='933'] -opus/document/letterText/edit[@ref='934'] -opus/document/letterText/edit[@ref='935'] -opus/document/letterText/edit[@ref='937'] -opus/document/letterText/edit[@ref='938'] -opus/document/letterText/edit[@ref='939'] -opus/document/letterText/edit[@ref='94'] -opus/document/letterText/edit[@ref='940'] -opus/document/letterText/edit[@ref='941'] -opus/document/letterText/edit[@ref='942'] -opus/document/letterText/edit[@ref='943'] -opus/document/letterText/edit[@ref='944'] -opus/document/letterText/edit[@ref='945'] -opus/document/letterText/edit[@ref='946'] -opus/document/letterText/edit[@ref='947'] -opus/document/letterText/edit[@ref='948'] -opus/document/letterText/edit[@ref='949'] -opus/document/letterText/edit[@ref='95'] -opus/document/letterText/edit[@ref='950'] -opus/document/letterText/edit[@ref='952'] -opus/document/letterText/edit[@ref='955'] -opus/document/letterText/edit[@ref='957'] -opus/document/letterText/edit[@ref='96'] -opus/document/letterText/edit[@ref='960'] -opus/document/letterText/edit[@ref='961'] -opus/document/letterText/edit[@ref='962'] -opus/document/letterText/edit[@ref='963'] -opus/document/letterText/edit[@ref='964'] -opus/document/letterText/edit[@ref='965'] -opus/document/letterText/edit[@ref='966'] -opus/document/letterText/edit[@ref='967'] -opus/document/letterText/edit[@ref='968'] -opus/document/letterText/edit[@ref='969'] -opus/document/letterText/edit[@ref='97'] -opus/document/letterText/edit[@ref='970'] -opus/document/letterText/edit[@ref='971'] -opus/document/letterText/edit[@ref='972'] -opus/document/letterText/edit[@ref='974'] -opus/document/letterText/edit[@ref='977'] -opus/document/letterText/edit[@ref='978'] -opus/document/letterText/edit[@ref='979'] -opus/document/letterText/edit[@ref='98'] -opus/document/letterText/edit[@ref='980'] -opus/document/letterText/edit[@ref='981'] -opus/document/letterText/edit[@ref='982'] -opus/document/letterText/edit[@ref='983'] -opus/document/letterText/edit[@ref='984'] -opus/document/letterText/edit[@ref='985'] -opus/document/letterText/edit[@ref='986'] -opus/document/letterText/edit[@ref='987'] -opus/document/letterText/edit[@ref='988'] -opus/document/letterText/edit[@ref='989'] -opus/document/letterText/edit[@ref='99'] -opus/document/letterText/edit[@ref='990'] -opus/document/letterText/edit[@ref='991'] -opus/document/letterText/edit[@ref='992'] -opus/document/letterText/edit[@ref='993'] -opus/document/letterText/edit[@ref='994'] -opus/document/letterText/edit[@ref='995'] -opus/document/letterText/edit[@ref='996'] -opus/document/letterText/edit[@ref='997'] -opus/document/letterText/edit[@ref='998'] -opus/document/letterText/edit[@ref='999'] -opus/document/letterText/edit/sig/aq -opus/document/letterText/edit/sig/aq/ul -opus/document/letterText/edit/sig/line[@index='22' and @autopsic='22'] -opus/document/letterText/edit/ul/del/nr -opus/document/letterText/edit/ul/edit[@ref='4236'] -opus/document/letterText/edit/ul/line[@index='11' and @autopsic='11'] -opus/document/letterText/edit/ul/line[@index='12' and @autopsic='12'] -opus/document/letterText/edit/ul/line[@index='13' and @autopsic='13'] -opus/document/letterText/edit/ul/line[@index='15' and @autopsic='15'] -opus/document/letterText/edit/ul/line[@index='16' and @autopsic='16'] -opus/document/letterText/edit/ul/line[@index='17' and @autopsic='17'] -opus/document/letterText/edit/ul/line[@index='19' and @autopsic='19'] -opus/document/letterText/edit/ul/line[@index='20' and @autopsic='20'] -opus/document/letterText/edit/ul/line[@index='21' and @autopsic='21'] -opus/document/letterText/edit/ul/line[@index='25' and @autopsic='25'] -opus/document/letterText/edit/ul/line[@index='35' and @autopsic='35'] -opus/document/letterText/edit/ul/line[@index='5' and @autopsic='5'] -opus/document/letterText/edit/ul/line[@index='6' and @autopsic='6'] -opus/document/letterText/edit/ul/line[@index='8' and @autopsic='8'] -opus/document/letterText/edit/ul/nr -opus/document/letterText/edit/ul/ul -opus/document/letterText/fn/added/aq -opus/document/letterText/fn/del -opus/document/letterText/fn/edit[@ref='3640'] -opus/document/letterText/fn/edit[@ref='4125'] -opus/document/letterText/fn/edit[@ref='4126'] -opus/document/letterText/fn/edit[@ref='4127'] -opus/document/letterText/fn/edit[@ref='4128'] -opus/document/letterText/fn/edit[@ref='6205'] -opus/document/letterText/fn/hand/aq -opus/document/letterText/fn[@index='5'] -opus/document/letterText/fn/line[@index='37' and @autopsic='37'] -opus/document/letterText/fn/line[@index='4' and @autopsic='4'] -opus/document/letterText/fn/line[@index='5' and @autopsic='5'] -opus/document/letterText/fn/line[@index='6' and @autopsic='6'] -opus/document/letterText/fn/line[@type='break'] -opus/document/letterText/fn/note/ul -opus/document/letterText/ful/aq -opus/document/letterText/gr/del -opus/document/letterText/gr/edit/del -opus/document/letterText/gr/edit[@ref='1499'] -opus/document/letterText/gr/edit[@ref='1544'] -opus/document/letterText/gr/edit[@ref='527'] -opus/document/letterText/gr/edit[@ref='5702'] -opus/document/letterText/gr/edit[@ref='5924'] -opus/document/letterText/gr/edit[@ref='5925'] -opus/document/letterText/gr/edit[@ref='658'] -opus/document/letterText/gr/edit[@ref='659'] -opus/document/letterText/gr/line[@index='12' and @autopsic='12'] -opus/document/letterText/gr/line[@index='14' and @autopsic='14'] -opus/document/letterText/gr/line[@index='17' and @autopsic='17'] -opus/document/letterText/gr/line[@index='28' and @autopsic='28'] -opus/document/letterText/gr/line[@index='33' and @autopsic='32'] -opus/document/letterText/gr/line[@index='4' and @autopsic='4' and @tab='4'] -opus/document/letterText/gr/line[@index='6' and @autopsic='6'] -opus/document/letterText/gr/line[@index='7' and @autopsic='7'] -opus/document/letterText/gr/line[@index='9' and @autopsic='9'] -opus/document/letterText/hand/address/aq/del -opus/document/letterText/hand/address/aq/del/nr -opus/document/letterText/hand/address/aq/del/nr/ul -opus/document/letterText/hand/address/aq/line[@index='22' and @autopsic='22' and @tab='1'] -opus/document/letterText/hand/address/edit[@ref='3784'] -opus/document/letterText/hand/address/edit/ul -opus/document/letterText/hand/address/edit/ul/aq -opus/document/letterText/hand/address/line[@index='11' and @autopsic='11' and @tab='1'] -opus/document/letterText/hand/address/line[@index='13' and @autopsic='13' and @tab='1'] -opus/document/letterText/hand/address/line[@index='24' and @autopsic='24' and @tab='1'] -opus/document/letterText/hand/address/line[@index='27' and @autopsic='27' and @tab='1'] -opus/document/letterText/hand/address/line[@index='31' and @autopsic='31'] -opus/document/letterText/hand/address/line[@index='31' and @autopsic='31' and @tab='1'] -opus/document/letterText/hand/address/line[@index='33' and @autopsic='33' and @tab='1'] -opus/document/letterText/hand/align/datum/edit[@ref='2573'] -opus/document/letterText/hand/align/datum/edit/super -opus/document/letterText/hand/aq/address -opus/document/letterText/hand/aq/address/line[@index='6' and @autopsic='6'] -opus/document/letterText/hand/aq/address/ul -opus/document/letterText/hand/aq/edit[@ref='4817'] -opus/document/letterText/hand/aq/edit[@ref='6266'] -opus/document/letterText/hand/aq/line[@index='14' and @autopsic='14'] -opus/document/letterText/hand/aq/line[@index='16' and @autopsic='16'] -opus/document/letterText/hand/aq/line[@index='17' and @autopsic='17'] -opus/document/letterText/hand/aq/line[@index='18' and @autopsic='18'] -opus/document/letterText/hand/aq/line[@index='30' and @autopsic='29'] -opus/document/letterText/hand/aq/line[@index='4' and @autopsic='4'] -opus/document/letterText/hand/datum/align[@pos='right'] -opus/document/letterText/hand/datum/edit/aq -opus/document/letterText/hand/datum/edit[@ref='4589'] -opus/document/letterText/hand/del/aq -opus/document/letterText/hand/del/line[@index='33' and @autopsic='33' and @tab='1'] -opus/document/letterText/hand/del/nr -opus/document/letterText/hand/edit/added -opus/document/letterText/hand/edit/aq/ul -opus/document/letterText/hand/edit/del/nr -opus/document/letterText/hand/edit/line[@index='23' and @autopsic='21'] -opus/document/letterText/hand/edit/nr -opus/document/letterText/hand/edit[@ref='106'] -opus/document/letterText/hand/edit[@ref='111'] -opus/document/letterText/hand/edit[@ref='1121'] -opus/document/letterText/hand/edit[@ref='1122'] -opus/document/letterText/hand/edit[@ref='1123'] -opus/document/letterText/hand/edit[@ref='1148'] -opus/document/letterText/hand/edit[@ref='187'] -opus/document/letterText/hand/edit[@ref='188'] -opus/document/letterText/hand/edit[@ref='196'] -opus/document/letterText/hand/edit[@ref='2574'] -opus/document/letterText/hand/edit[@ref='2575'] -opus/document/letterText/hand/edit[@ref='3244'] -opus/document/letterText/hand/edit[@ref='3245'] -opus/document/letterText/hand/edit[@ref='3331'] -opus/document/letterText/hand/edit[@ref='3332'] -opus/document/letterText/hand/edit[@ref='335'] -opus/document/letterText/hand/edit[@ref='3709'] -opus/document/letterText/hand/edit[@ref='378'] -opus/document/letterText/hand/edit[@ref='3785'] -opus/document/letterText/hand/edit[@ref='401'] -opus/document/letterText/hand/edit[@ref='4339'] -opus/document/letterText/hand/edit[@ref='4340'] -opus/document/letterText/hand/edit[@ref='4410'] -opus/document/letterText/hand/edit[@ref='4469'] -opus/document/letterText/hand/edit[@ref='4470'] -opus/document/letterText/hand/edit[@ref='4471'] -opus/document/letterText/hand/edit[@ref='4472'] -opus/document/letterText/hand/edit[@ref='4585'] -opus/document/letterText/hand/edit[@ref='4586'] -opus/document/letterText/hand/edit[@ref='4587'] -opus/document/letterText/hand/edit[@ref='4588'] -opus/document/letterText/hand/edit[@ref='4601'] -opus/document/letterText/hand/edit[@ref='4720'] -opus/document/letterText/hand/edit[@ref='4721'] -opus/document/letterText/hand/edit[@ref='4722'] -opus/document/letterText/hand/edit[@ref='4723'] -opus/document/letterText/hand/edit[@ref='4876'] -opus/document/letterText/hand/edit[@ref='4927'] -opus/document/letterText/hand/edit[@ref='4928'] -opus/document/letterText/hand/edit[@ref='4939'] -opus/document/letterText/hand/edit[@ref='4981'] -opus/document/letterText/hand/edit[@ref='5027'] -opus/document/letterText/hand/edit[@ref='5028'] -opus/document/letterText/hand/edit[@ref='5029'] -opus/document/letterText/hand/edit[@ref='5032'] -opus/document/letterText/hand/edit[@ref='5033'] -opus/document/letterText/hand/edit[@ref='5051'] -opus/document/letterText/hand/edit[@ref='5068'] -opus/document/letterText/hand/edit[@ref='5069'] -opus/document/letterText/hand/edit[@ref='5104'] -opus/document/letterText/hand/edit[@ref='5105'] -opus/document/letterText/hand/edit[@ref='5106'] -opus/document/letterText/hand/edit[@ref='5111'] -opus/document/letterText/hand/edit[@ref='5112'] -opus/document/letterText/hand/edit[@ref='5113'] -opus/document/letterText/hand/edit[@ref='5159'] -opus/document/letterText/hand/edit[@ref='5160'] -opus/document/letterText/hand/edit[@ref='5161'] -opus/document/letterText/hand/edit[@ref='5177'] -opus/document/letterText/hand/edit[@ref='5179'] -opus/document/letterText/hand/edit[@ref='5911'] -opus/document/letterText/hand/edit[@ref='5912'] -opus/document/letterText/hand/edit[@ref='5952'] -opus/document/letterText/hand/edit[@ref='6152'] -opus/document/letterText/hand/edit[@ref='6153'] -opus/document/letterText/hand/edit[@ref='6154'] -opus/document/letterText/hand/edit[@ref='6165'] -opus/document/letterText/hand/edit[@ref='6166'] -opus/document/letterText/hand/edit[@ref='6169'] -opus/document/letterText/hand/edit[@ref='6170'] -opus/document/letterText/hand/edit[@ref='6180'] -opus/document/letterText/hand/edit[@ref='6181'] -opus/document/letterText/hand/edit[@ref='6187'] -opus/document/letterText/hand/edit[@ref='6199'] -opus/document/letterText/hand/edit[@ref='6200'] -opus/document/letterText/hand/edit[@ref='6201'] -opus/document/letterText/hand/edit[@ref='6202'] -opus/document/letterText/hand/edit[@ref='6203'] -opus/document/letterText/hand/edit[@ref='6204'] -opus/document/letterText/hand/edit[@ref='6206'] -opus/document/letterText/hand/edit[@ref='6217'] -opus/document/letterText/hand/edit[@ref='6218'] -opus/document/letterText/hand/edit[@ref='6247'] -opus/document/letterText/hand/edit[@ref='6253'] -opus/document/letterText/hand/edit[@ref='6299'] -opus/document/letterText/hand/edit[@ref='6315'] -opus/document/letterText/hand/edit[@ref='6316'] -opus/document/letterText/hand/edit[@ref='6321'] -opus/document/letterText/hand/edit[@ref='6322'] -opus/document/letterText/hand/edit[@ref='6355'] -opus/document/letterText/hand/edit[@ref='6356'] -opus/document/letterText/hand/edit[@ref='6371'] -opus/document/letterText/hand/edit[@ref='6425'] -opus/document/letterText/hand/edit[@ref='6453'] -opus/document/letterText/hand/edit[@ref='6471'] -opus/document/letterText/hand/edit[@ref='6485'] -opus/document/letterText/hand/edit[@ref='6545'] -opus/document/letterText/hand/edit[@ref='6546'] -opus/document/letterText/hand/edit[@ref='6547'] -opus/document/letterText/hand/edit[@ref='6608'] -opus/document/letterText/hand/edit[@ref='6611'] -opus/document/letterText/hand/edit[@ref='6649'] -opus/document/letterText/hand/edit[@ref='6693'] -opus/document/letterText/hand/edit[@ref='6722'] -opus/document/letterText/hand/edit[@ref='6724'] -opus/document/letterText/hand/edit[@ref='6726'] -opus/document/letterText/hand/edit[@ref='6727'] -opus/document/letterText/hand/edit[@ref='678'] -opus/document/letterText/hand/edit[@ref='679'] -opus/document/letterText/hand/edit/ul/aq -opus/document/letterText/hand/gr/del -opus/document/letterText/hand/gr/line[@index='5' and @autopsic='5'] -opus/document/letterText/hand/line[@index='10' and @autopsic='9'] -opus/document/letterText/hand/line[@index='11' and @autopsic='9'] -opus/document/letterText/hand/line[@index='12' and @autopsic='10' and @tab='1'] -opus/document/letterText/hand/line[@index='13' and @autopsic='12' and @tab='1'] -opus/document/letterText/hand/line[@index='13' and @autopsic='12' and @tab='2'] -opus/document/letterText/hand/line[@index='13' and @autopsic='13' and @type='break' and @tab='1'] -opus/document/letterText/hand/line[@index='16' and @autopsic='16' and @type='break' and @tab='1'] -opus/document/letterText/hand/line[@index='17' and @autopsic='14'] -opus/document/letterText/hand/line[@index='1' and @autopsic='1' and @tab='1'] -opus/document/letterText/hand/line[@index='20' and @autopsic='20' and @type='break' and @tab='1'] -opus/document/letterText/hand/line[@index='21' and @autopsic='20' and @type='break' and @tab='1'] -opus/document/letterText/hand/line[@index='22' and @autopsic='21' and @tab='1'] -opus/document/letterText/hand/line[@index='22' and @autopsic='22' and @tab='7'] -opus/document/letterText/hand/line[@index='24' and @autopsic='25' and @tab='1'] -opus/document/letterText/hand/line[@index='25' and @autopsic='25' and @type='break' and @tab='1'] -opus/document/letterText/hand/line[@index='25' and @autopsic='26' and @tab='1'] -opus/document/letterText/hand/line[@index='26' and @autopsic='24' and @tab='1'] -opus/document/letterText/hand/line[@index='27' and @autopsic='25' and @tab='1'] -opus/document/letterText/hand/line[@index='27' and @autopsic='27' and @tab='7'] -opus/document/letterText/hand/line[@index='28' and @autopsic='27' and @type='break' and @tab='1'] -opus/document/letterText/hand/line[@index='29' and @autopsic='28'] -opus/document/letterText/hand/line[@index='29' and @autopsic='28' and @type='break' and @tab='1'] -opus/document/letterText/hand/line[@index='2' and @autopsic='2' and @tab='2'] -opus/document/letterText/hand/line[@index='30' and @autopsic='29'] -opus/document/letterText/hand/line[@index='31' and @autopsic='30'] -opus/document/letterText/hand/line[@index='31' and @autopsic='30' and @type='break' and @tab='1'] -opus/document/letterText/hand/line[@index='31' and @autopsic='31' and @tab='4'] -opus/document/letterText/hand/line[@index='32' and @autopsic='32' and @tab='4'] -opus/document/letterText/hand/line[@index='33' and @autopsic='33' and @tab='4'] -opus/document/letterText/hand/line[@index='34' and @autopsic='34' and @tab='7'] -opus/document/letterText/hand/line[@index='35' and @autopsic='34' and @type='break' and @tab='1'] -opus/document/letterText/hand/line[@index='36' and @autopsic='35' and @tab='1'] -opus/document/letterText/hand/line[@index='36' and @autopsic='37' and @tab='1'] -opus/document/letterText/hand/line[@index='37' and @autopsic='35'] -opus/document/letterText/hand/line[@index='37' and @autopsic='36' and @tab='1'] -opus/document/letterText/hand/line[@index='38' and @autopsic='36'] -opus/document/letterText/hand/line[@index='38' and @autopsic='36' and @tab='1'] -opus/document/letterText/hand/line[@index='38' and @autopsic='37'] -opus/document/letterText/hand/line[@index='38' and @autopsic='37' and @tab='1'] -opus/document/letterText/hand/line[@index='38' and @autopsic='38'] -opus/document/letterText/hand/line[@index='3' and @autopsic='3' and @tab='2'] -opus/document/letterText/hand/line[@index='40' and @autopsic='32' and @tab='1'] -opus/document/letterText/hand/line[@index='5' and @autopsic='5' and @tab='4'] -opus/document/letterText/hand/line[@index='6' and @autopsic='5'] -opus/document/letterText/hand/line[@index='7' and @autopsic='6'] -opus/document/letterText/hand/line[@index='7' and @autopsic='7' and @tab='5'] -opus/document/letterText/hand/line[@index='8' and @autopsic='7'] -opus/document/letterText/hand/line[@index='9' and @autopsic='8'] -opus/document/letterText/hand/page[@index='12' and @autopsic='12'] -opus/document/letterText/hand/page[@index='220' and @autopsic='220'] -opus/document/letterText/hand/page[@index='295' and @autopsic='295'] -opus/document/letterText/hand/page[@index='32' and @autopsic='32'] -opus/document/letterText/hand/page[@index='340' and @autopsic='340'] -opus/document/letterText/hand/page[@index='37' and @autopsic='37'] -opus/document/letterText/hand/page[@index='382' and @autopsic='382'] -opus/document/letterText/hand/ps -opus/document/letterText/hand/ps/aq -opus/document/letterText/hand/ps/datum -opus/document/letterText/hand/ps/datum/aq -opus/document/letterText/hand[@ref='11'] -opus/document/letterText/hand[@ref='13'] -opus/document/letterText/hand[@ref='17'] -opus/document/letterText/hand[@ref='18'] -opus/document/letterText/hand[@ref='21'] -opus/document/letterText/hand[@ref='26'] -opus/document/letterText/hand[@ref='6'] -opus/document/letterText/hand[@ref='9'] -opus/document/letterText/hand/ul/aq -opus/document/letterText/hand/ul/nr -opus/document/letterText[@index='1'] -opus/document/letterText[@index='10'] -opus/document/letterText[@index='100'] -opus/document/letterText[@index='1000'] -opus/document/letterText[@index='1001'] -opus/document/letterText[@index='1002'] -opus/document/letterText[@index='1003'] -opus/document/letterText[@index='1004'] -opus/document/letterText[@index='1005'] -opus/document/letterText[@index='1006'] -opus/document/letterText[@index='1007'] -opus/document/letterText[@index='1008'] -opus/document/letterText[@index='1009'] -opus/document/letterText[@index='101'] -opus/document/letterText[@index='1010'] -opus/document/letterText[@index='1011'] -opus/document/letterText[@index='1012'] -opus/document/letterText[@index='1013'] -opus/document/letterText[@index='1014'] -opus/document/letterText[@index='1015'] -opus/document/letterText[@index='1016'] -opus/document/letterText[@index='1017'] -opus/document/letterText[@index='1018'] -opus/document/letterText[@index='1019'] -opus/document/letterText[@index='102'] -opus/document/letterText[@index='1020'] -opus/document/letterText[@index='1021'] -opus/document/letterText[@index='1022'] -opus/document/letterText[@index='1023'] -opus/document/letterText[@index='1024'] -opus/document/letterText[@index='1025'] -opus/document/letterText[@index='1026'] -opus/document/letterText[@index='1027'] -opus/document/letterText[@index='1028'] -opus/document/letterText[@index='1029'] -opus/document/letterText[@index='103'] -opus/document/letterText[@index='1030'] -opus/document/letterText[@index='1031'] -opus/document/letterText[@index='1032'] -opus/document/letterText[@index='1033'] -opus/document/letterText[@index='1034'] -opus/document/letterText[@index='1035'] -opus/document/letterText[@index='1036'] -opus/document/letterText[@index='1037'] -opus/document/letterText[@index='1038'] -opus/document/letterText[@index='1039'] -opus/document/letterText[@index='104'] -opus/document/letterText[@index='1040'] -opus/document/letterText[@index='1041'] -opus/document/letterText[@index='1042'] -opus/document/letterText[@index='1043'] -opus/document/letterText[@index='1044'] -opus/document/letterText[@index='1045'] -opus/document/letterText[@index='1046'] -opus/document/letterText[@index='1047'] -opus/document/letterText[@index='1048'] -opus/document/letterText[@index='1049'] -opus/document/letterText[@index='105'] -opus/document/letterText[@index='1050'] -opus/document/letterText[@index='1051'] -opus/document/letterText[@index='1052'] -opus/document/letterText[@index='1053'] -opus/document/letterText[@index='1054'] -opus/document/letterText[@index='1055'] -opus/document/letterText[@index='1056'] -opus/document/letterText[@index='1057'] -opus/document/letterText[@index='1058'] -opus/document/letterText[@index='1059'] -opus/document/letterText[@index='106'] -opus/document/letterText[@index='1060'] -opus/document/letterText[@index='1061'] -opus/document/letterText[@index='1062'] -opus/document/letterText[@index='1063'] -opus/document/letterText[@index='1064'] -opus/document/letterText[@index='1065'] -opus/document/letterText[@index='1066'] -opus/document/letterText[@index='1067'] -opus/document/letterText[@index='1068'] -opus/document/letterText[@index='1069'] -opus/document/letterText[@index='107'] -opus/document/letterText[@index='1070'] -opus/document/letterText[@index='1071'] -opus/document/letterText[@index='1072'] -opus/document/letterText[@index='1073'] -opus/document/letterText[@index='1074'] -opus/document/letterText[@index='1075'] -opus/document/letterText[@index='1076'] -opus/document/letterText[@index='1077'] -opus/document/letterText[@index='1078'] -opus/document/letterText[@index='1079'] -opus/document/letterText[@index='108'] -opus/document/letterText[@index='1080'] -opus/document/letterText[@index='1081'] -opus/document/letterText[@index='1082'] -opus/document/letterText[@index='1083'] -opus/document/letterText[@index='1084'] -opus/document/letterText[@index='1085'] -opus/document/letterText[@index='1086'] -opus/document/letterText[@index='1087'] -opus/document/letterText[@index='1088'] -opus/document/letterText[@index='1089'] -opus/document/letterText[@index='109'] -opus/document/letterText[@index='1090'] -opus/document/letterText[@index='1091'] -opus/document/letterText[@index='1092'] -opus/document/letterText[@index='1093'] -opus/document/letterText[@index='1094'] -opus/document/letterText[@index='1095'] -opus/document/letterText[@index='1096'] -opus/document/letterText[@index='1097'] -opus/document/letterText[@index='1098'] -opus/document/letterText[@index='1099'] -opus/document/letterText[@index='11'] -opus/document/letterText[@index='110'] -opus/document/letterText[@index='1100'] -opus/document/letterText[@index='1101'] -opus/document/letterText[@index='1102'] -opus/document/letterText[@index='1103'] -opus/document/letterText[@index='1104'] -opus/document/letterText[@index='1105'] -opus/document/letterText[@index='1106'] -opus/document/letterText[@index='1107'] -opus/document/letterText[@index='1108'] -opus/document/letterText[@index='1109'] -opus/document/letterText[@index='111'] -opus/document/letterText[@index='1110'] -opus/document/letterText[@index='1111'] -opus/document/letterText[@index='1112'] -opus/document/letterText[@index='1113'] -opus/document/letterText[@index='1114'] -opus/document/letterText[@index='1115'] -opus/document/letterText[@index='1116'] -opus/document/letterText[@index='1117'] -opus/document/letterText[@index='1118'] -opus/document/letterText[@index='1119'] -opus/document/letterText[@index='112'] -opus/document/letterText[@index='1120'] -opus/document/letterText[@index='1121'] -opus/document/letterText[@index='1122'] -opus/document/letterText[@index='1123'] -opus/document/letterText[@index='1124'] -opus/document/letterText[@index='1125'] -opus/document/letterText[@index='1126'] -opus/document/letterText[@index='1127'] -opus/document/letterText[@index='1128'] -opus/document/letterText[@index='1129'] -opus/document/letterText[@index='113'] -opus/document/letterText[@index='1130'] -opus/document/letterText[@index='1131'] -opus/document/letterText[@index='1132'] -opus/document/letterText[@index='1133'] -opus/document/letterText[@index='1134'] -opus/document/letterText[@index='1135'] -opus/document/letterText[@index='1136'] -opus/document/letterText[@index='1137'] -opus/document/letterText[@index='1138'] -opus/document/letterText[@index='1139'] -opus/document/letterText[@index='114'] -opus/document/letterText[@index='1140'] -opus/document/letterText[@index='1141'] -opus/document/letterText[@index='1142'] -opus/document/letterText[@index='1143'] -opus/document/letterText[@index='1144'] -opus/document/letterText[@index='1145'] -opus/document/letterText[@index='1146'] -opus/document/letterText[@index='1147'] -opus/document/letterText[@index='1148'] -opus/document/letterText[@index='1149'] -opus/document/letterText[@index='115'] -opus/document/letterText[@index='1150'] -opus/document/letterText[@index='1151'] -opus/document/letterText[@index='1152'] -opus/document/letterText[@index='1153'] -opus/document/letterText[@index='1154'] -opus/document/letterText[@index='1155'] -opus/document/letterText[@index='1156'] -opus/document/letterText[@index='1157'] -opus/document/letterText[@index='1158'] -opus/document/letterText[@index='1159'] -opus/document/letterText[@index='116'] -opus/document/letterText[@index='1160'] -opus/document/letterText[@index='1161'] -opus/document/letterText[@index='1162'] -opus/document/letterText[@index='1163'] -opus/document/letterText[@index='1164'] -opus/document/letterText[@index='1165'] -opus/document/letterText[@index='1166'] -opus/document/letterText[@index='1167'] -opus/document/letterText[@index='1168'] -opus/document/letterText[@index='1169'] -opus/document/letterText[@index='117'] -opus/document/letterText[@index='1170'] -opus/document/letterText[@index='1171'] -opus/document/letterText[@index='1172'] -opus/document/letterText[@index='1173'] -opus/document/letterText[@index='1174'] -opus/document/letterText[@index='1175'] -opus/document/letterText[@index='1176'] -opus/document/letterText[@index='1177'] -opus/document/letterText[@index='1178'] -opus/document/letterText[@index='1179'] -opus/document/letterText[@index='118'] -opus/document/letterText[@index='1180'] -opus/document/letterText[@index='1181'] -opus/document/letterText[@index='1182'] -opus/document/letterText[@index='1183'] -opus/document/letterText[@index='1184'] -opus/document/letterText[@index='1185'] -opus/document/letterText[@index='1186'] -opus/document/letterText[@index='1187'] -opus/document/letterText[@index='1188'] -opus/document/letterText[@index='1189'] -opus/document/letterText[@index='119'] -opus/document/letterText[@index='1190'] -opus/document/letterText[@index='1191'] -opus/document/letterText[@index='12'] -opus/document/letterText[@index='120'] -opus/document/letterText[@index='121'] -opus/document/letterText[@index='122'] -opus/document/letterText[@index='123'] -opus/document/letterText[@index='124'] -opus/document/letterText[@index='125'] -opus/document/letterText[@index='126'] -opus/document/letterText[@index='127'] -opus/document/letterText[@index='128'] -opus/document/letterText[@index='129'] -opus/document/letterText[@index='13'] -opus/document/letterText[@index='130'] -opus/document/letterText[@index='131'] -opus/document/letterText[@index='132'] -opus/document/letterText[@index='133'] -opus/document/letterText[@index='134'] -opus/document/letterText[@index='135'] -opus/document/letterText[@index='136'] -opus/document/letterText[@index='137'] -opus/document/letterText[@index='138'] -opus/document/letterText[@index='139'] -opus/document/letterText[@index='14'] -opus/document/letterText[@index='140'] -opus/document/letterText[@index='141'] -opus/document/letterText[@index='142'] -opus/document/letterText[@index='143'] -opus/document/letterText[@index='144'] -opus/document/letterText[@index='145'] -opus/document/letterText[@index='146'] -opus/document/letterText[@index='147'] -opus/document/letterText[@index='148'] -opus/document/letterText[@index='149'] -opus/document/letterText[@index='15'] -opus/document/letterText[@index='150'] -opus/document/letterText[@index='151'] -opus/document/letterText[@index='152'] -opus/document/letterText[@index='153'] -opus/document/letterText[@index='154'] -opus/document/letterText[@index='155'] -opus/document/letterText[@index='156'] -opus/document/letterText[@index='157'] -opus/document/letterText[@index='158'] -opus/document/letterText[@index='159'] -opus/document/letterText[@index='16'] -opus/document/letterText[@index='160'] -opus/document/letterText[@index='161'] -opus/document/letterText[@index='162'] -opus/document/letterText[@index='163'] -opus/document/letterText[@index='164'] -opus/document/letterText[@index='165'] -opus/document/letterText[@index='166'] -opus/document/letterText[@index='167'] -opus/document/letterText[@index='168'] -opus/document/letterText[@index='169'] -opus/document/letterText[@index='17'] -opus/document/letterText[@index='170'] -opus/document/letterText[@index='171'] -opus/document/letterText[@index='172'] -opus/document/letterText[@index='173'] -opus/document/letterText[@index='174'] -opus/document/letterText[@index='175'] -opus/document/letterText[@index='176'] -opus/document/letterText[@index='177'] -opus/document/letterText[@index='178'] -opus/document/letterText[@index='179'] -opus/document/letterText[@index='18'] -opus/document/letterText[@index='180'] -opus/document/letterText[@index='181'] -opus/document/letterText[@index='182'] -opus/document/letterText[@index='183'] -opus/document/letterText[@index='184'] -opus/document/letterText[@index='185'] -opus/document/letterText[@index='186'] -opus/document/letterText[@index='187'] -opus/document/letterText[@index='188'] -opus/document/letterText[@index='189'] -opus/document/letterText[@index='19'] -opus/document/letterText[@index='190'] -opus/document/letterText[@index='191'] -opus/document/letterText[@index='192'] -opus/document/letterText[@index='193'] -opus/document/letterText[@index='194'] -opus/document/letterText[@index='195'] -opus/document/letterText[@index='196'] -opus/document/letterText[@index='197'] -opus/document/letterText[@index='198'] -opus/document/letterText[@index='199'] -opus/document/letterText[@index='2'] -opus/document/letterText[@index='20'] -opus/document/letterText[@index='200'] -opus/document/letterText[@index='201'] -opus/document/letterText[@index='202'] -opus/document/letterText[@index='203'] -opus/document/letterText[@index='204'] -opus/document/letterText[@index='205'] -opus/document/letterText[@index='206'] -opus/document/letterText[@index='207'] -opus/document/letterText[@index='208'] -opus/document/letterText[@index='209'] -opus/document/letterText[@index='21'] -opus/document/letterText[@index='210'] -opus/document/letterText[@index='211'] -opus/document/letterText[@index='212'] -opus/document/letterText[@index='213'] -opus/document/letterText[@index='214'] -opus/document/letterText[@index='215'] -opus/document/letterText[@index='216'] -opus/document/letterText[@index='217'] -opus/document/letterText[@index='218'] -opus/document/letterText[@index='219'] -opus/document/letterText[@index='22'] -opus/document/letterText[@index='220'] -opus/document/letterText[@index='221'] -opus/document/letterText[@index='222'] -opus/document/letterText[@index='223'] -opus/document/letterText[@index='224'] -opus/document/letterText[@index='225'] -opus/document/letterText[@index='226'] -opus/document/letterText[@index='227'] -opus/document/letterText[@index='228'] -opus/document/letterText[@index='229'] -opus/document/letterText[@index='23'] -opus/document/letterText[@index='230'] -opus/document/letterText[@index='231'] -opus/document/letterText[@index='232'] -opus/document/letterText[@index='233'] -opus/document/letterText[@index='234'] -opus/document/letterText[@index='235'] -opus/document/letterText[@index='236'] -opus/document/letterText[@index='237'] -opus/document/letterText[@index='238'] -opus/document/letterText[@index='239'] -opus/document/letterText[@index='24'] -opus/document/letterText[@index='240'] -opus/document/letterText[@index='241'] -opus/document/letterText[@index='242'] -opus/document/letterText[@index='243'] -opus/document/letterText[@index='244'] -opus/document/letterText[@index='245'] -opus/document/letterText[@index='246'] -opus/document/letterText[@index='247'] -opus/document/letterText[@index='248'] -opus/document/letterText[@index='249'] -opus/document/letterText[@index='25'] -opus/document/letterText[@index='250'] -opus/document/letterText[@index='251'] -opus/document/letterText[@index='252'] -opus/document/letterText[@index='253'] -opus/document/letterText[@index='254'] -opus/document/letterText[@index='255'] -opus/document/letterText[@index='256'] -opus/document/letterText[@index='257'] -opus/document/letterText[@index='258'] -opus/document/letterText[@index='259'] -opus/document/letterText[@index='26'] -opus/document/letterText[@index='260'] -opus/document/letterText[@index='261'] -opus/document/letterText[@index='262'] -opus/document/letterText[@index='263'] -opus/document/letterText[@index='264'] -opus/document/letterText[@index='265'] -opus/document/letterText[@index='266'] -opus/document/letterText[@index='267'] -opus/document/letterText[@index='268'] -opus/document/letterText[@index='269'] -opus/document/letterText[@index='27'] -opus/document/letterText[@index='270'] -opus/document/letterText[@index='271'] -opus/document/letterText[@index='272'] -opus/document/letterText[@index='273'] -opus/document/letterText[@index='274'] -opus/document/letterText[@index='275'] -opus/document/letterText[@index='276'] -opus/document/letterText[@index='277'] -opus/document/letterText[@index='278'] -opus/document/letterText[@index='279'] -opus/document/letterText[@index='28'] -opus/document/letterText[@index='280'] -opus/document/letterText[@index='281'] -opus/document/letterText[@index='282'] -opus/document/letterText[@index='283'] -opus/document/letterText[@index='284'] -opus/document/letterText[@index='285'] -opus/document/letterText[@index='286'] -opus/document/letterText[@index='287'] -opus/document/letterText[@index='288'] -opus/document/letterText[@index='289'] -opus/document/letterText[@index='29'] -opus/document/letterText[@index='290'] -opus/document/letterText[@index='291'] -opus/document/letterText[@index='292'] -opus/document/letterText[@index='293'] -opus/document/letterText[@index='294'] -opus/document/letterText[@index='295'] -opus/document/letterText[@index='296'] -opus/document/letterText[@index='297'] -opus/document/letterText[@index='298'] -opus/document/letterText[@index='299'] -opus/document/letterText[@index='3'] -opus/document/letterText[@index='30'] -opus/document/letterText[@index='300'] -opus/document/letterText[@index='301'] -opus/document/letterText[@index='302'] -opus/document/letterText[@index='303'] -opus/document/letterText[@index='304'] -opus/document/letterText[@index='305'] -opus/document/letterText[@index='306'] -opus/document/letterText[@index='307'] -opus/document/letterText[@index='308'] -opus/document/letterText[@index='309'] -opus/document/letterText[@index='31'] -opus/document/letterText[@index='310'] -opus/document/letterText[@index='311'] -opus/document/letterText[@index='312'] -opus/document/letterText[@index='313'] -opus/document/letterText[@index='314'] -opus/document/letterText[@index='315'] -opus/document/letterText[@index='316'] -opus/document/letterText[@index='317'] -opus/document/letterText[@index='318'] -opus/document/letterText[@index='319'] -opus/document/letterText[@index='32'] -opus/document/letterText[@index='320'] -opus/document/letterText[@index='321'] -opus/document/letterText[@index='322'] -opus/document/letterText[@index='323'] -opus/document/letterText[@index='324'] -opus/document/letterText[@index='325'] -opus/document/letterText[@index='326'] -opus/document/letterText[@index='327'] -opus/document/letterText[@index='328'] -opus/document/letterText[@index='329'] -opus/document/letterText[@index='33'] -opus/document/letterText[@index='330'] -opus/document/letterText[@index='331'] -opus/document/letterText[@index='332'] -opus/document/letterText[@index='333'] -opus/document/letterText[@index='334'] -opus/document/letterText[@index='335'] -opus/document/letterText[@index='336'] -opus/document/letterText[@index='337'] -opus/document/letterText[@index='338'] -opus/document/letterText[@index='339'] -opus/document/letterText[@index='34'] -opus/document/letterText[@index='340'] -opus/document/letterText[@index='341'] -opus/document/letterText[@index='342'] -opus/document/letterText[@index='343'] -opus/document/letterText[@index='344'] -opus/document/letterText[@index='345'] -opus/document/letterText[@index='346'] -opus/document/letterText[@index='347'] -opus/document/letterText[@index='348'] -opus/document/letterText[@index='349'] -opus/document/letterText[@index='35'] -opus/document/letterText[@index='350'] -opus/document/letterText[@index='351'] -opus/document/letterText[@index='352'] -opus/document/letterText[@index='353'] -opus/document/letterText[@index='354'] -opus/document/letterText[@index='355'] -opus/document/letterText[@index='356'] -opus/document/letterText[@index='357'] -opus/document/letterText[@index='358'] -opus/document/letterText[@index='359'] -opus/document/letterText[@index='36'] -opus/document/letterText[@index='360'] -opus/document/letterText[@index='361'] -opus/document/letterText[@index='362'] -opus/document/letterText[@index='363'] -opus/document/letterText[@index='364'] -opus/document/letterText[@index='365'] -opus/document/letterText[@index='366'] -opus/document/letterText[@index='367'] -opus/document/letterText[@index='368'] -opus/document/letterText[@index='369'] -opus/document/letterText[@index='37'] -opus/document/letterText[@index='370'] -opus/document/letterText[@index='371'] -opus/document/letterText[@index='372'] -opus/document/letterText[@index='373'] -opus/document/letterText[@index='374'] -opus/document/letterText[@index='375'] -opus/document/letterText[@index='376'] -opus/document/letterText[@index='377'] -opus/document/letterText[@index='378'] -opus/document/letterText[@index='379'] -opus/document/letterText[@index='38'] -opus/document/letterText[@index='380'] -opus/document/letterText[@index='381'] -opus/document/letterText[@index='382'] -opus/document/letterText[@index='383'] -opus/document/letterText[@index='384'] -opus/document/letterText[@index='385'] -opus/document/letterText[@index='386'] -opus/document/letterText[@index='387'] -opus/document/letterText[@index='388'] -opus/document/letterText[@index='389'] -opus/document/letterText[@index='39'] -opus/document/letterText[@index='390'] -opus/document/letterText[@index='391'] -opus/document/letterText[@index='392'] -opus/document/letterText[@index='393'] -opus/document/letterText[@index='394'] -opus/document/letterText[@index='395'] -opus/document/letterText[@index='396'] -opus/document/letterText[@index='397'] -opus/document/letterText[@index='398'] -opus/document/letterText[@index='399'] -opus/document/letterText[@index='4'] -opus/document/letterText[@index='40'] -opus/document/letterText[@index='400'] -opus/document/letterText[@index='401'] -opus/document/letterText[@index='402'] -opus/document/letterText[@index='403'] -opus/document/letterText[@index='404'] -opus/document/letterText[@index='405'] -opus/document/letterText[@index='406'] -opus/document/letterText[@index='407'] -opus/document/letterText[@index='408'] -opus/document/letterText[@index='409'] -opus/document/letterText[@index='41'] -opus/document/letterText[@index='410'] -opus/document/letterText[@index='411'] -opus/document/letterText[@index='412'] -opus/document/letterText[@index='413'] -opus/document/letterText[@index='414'] -opus/document/letterText[@index='415'] -opus/document/letterText[@index='416'] -opus/document/letterText[@index='417'] -opus/document/letterText[@index='418'] -opus/document/letterText[@index='419'] -opus/document/letterText[@index='42'] -opus/document/letterText[@index='420'] -opus/document/letterText[@index='421'] -opus/document/letterText[@index='422'] -opus/document/letterText[@index='423'] -opus/document/letterText[@index='424'] -opus/document/letterText[@index='425'] -opus/document/letterText[@index='426'] -opus/document/letterText[@index='427'] -opus/document/letterText[@index='428'] -opus/document/letterText[@index='429'] -opus/document/letterText[@index='43'] -opus/document/letterText[@index='430'] -opus/document/letterText[@index='431'] -opus/document/letterText[@index='432'] -opus/document/letterText[@index='433'] -opus/document/letterText[@index='434'] -opus/document/letterText[@index='435'] -opus/document/letterText[@index='436'] -opus/document/letterText[@index='437'] -opus/document/letterText[@index='438'] -opus/document/letterText[@index='439'] -opus/document/letterText[@index='44'] -opus/document/letterText[@index='440'] -opus/document/letterText[@index='441'] -opus/document/letterText[@index='442'] -opus/document/letterText[@index='443'] -opus/document/letterText[@index='444'] -opus/document/letterText[@index='445'] -opus/document/letterText[@index='446'] -opus/document/letterText[@index='447'] -opus/document/letterText[@index='448'] -opus/document/letterText[@index='449'] -opus/document/letterText[@index='45'] -opus/document/letterText[@index='450'] -opus/document/letterText[@index='451'] -opus/document/letterText[@index='452'] -opus/document/letterText[@index='453'] -opus/document/letterText[@index='454'] -opus/document/letterText[@index='455'] -opus/document/letterText[@index='456'] -opus/document/letterText[@index='457'] -opus/document/letterText[@index='458'] -opus/document/letterText[@index='459'] -opus/document/letterText[@index='46'] -opus/document/letterText[@index='460'] -opus/document/letterText[@index='461'] -opus/document/letterText[@index='462'] -opus/document/letterText[@index='463'] -opus/document/letterText[@index='464'] -opus/document/letterText[@index='465'] -opus/document/letterText[@index='466'] -opus/document/letterText[@index='467'] -opus/document/letterText[@index='468'] -opus/document/letterText[@index='469'] -opus/document/letterText[@index='47'] -opus/document/letterText[@index='470'] -opus/document/letterText[@index='471'] -opus/document/letterText[@index='472'] -opus/document/letterText[@index='473'] -opus/document/letterText[@index='474'] -opus/document/letterText[@index='475'] -opus/document/letterText[@index='476'] -opus/document/letterText[@index='477'] -opus/document/letterText[@index='478'] -opus/document/letterText[@index='479'] -opus/document/letterText[@index='48'] -opus/document/letterText[@index='480'] -opus/document/letterText[@index='481'] -opus/document/letterText[@index='482'] -opus/document/letterText[@index='483'] -opus/document/letterText[@index='484'] -opus/document/letterText[@index='485'] -opus/document/letterText[@index='486'] -opus/document/letterText[@index='487'] -opus/document/letterText[@index='488'] -opus/document/letterText[@index='489'] -opus/document/letterText[@index='49'] -opus/document/letterText[@index='490'] -opus/document/letterText[@index='491'] -opus/document/letterText[@index='492'] -opus/document/letterText[@index='493'] -opus/document/letterText[@index='494'] -opus/document/letterText[@index='495'] -opus/document/letterText[@index='496'] -opus/document/letterText[@index='497'] -opus/document/letterText[@index='498'] -opus/document/letterText[@index='499'] -opus/document/letterText[@index='5'] -opus/document/letterText[@index='50'] -opus/document/letterText[@index='500'] -opus/document/letterText[@index='501'] -opus/document/letterText[@index='502'] -opus/document/letterText[@index='503'] -opus/document/letterText[@index='504'] -opus/document/letterText[@index='505'] -opus/document/letterText[@index='506'] -opus/document/letterText[@index='507'] -opus/document/letterText[@index='508'] -opus/document/letterText[@index='509'] -opus/document/letterText[@index='51'] -opus/document/letterText[@index='510'] -opus/document/letterText[@index='511'] -opus/document/letterText[@index='512'] -opus/document/letterText[@index='513'] -opus/document/letterText[@index='514'] -opus/document/letterText[@index='515'] -opus/document/letterText[@index='516'] -opus/document/letterText[@index='517'] -opus/document/letterText[@index='518'] -opus/document/letterText[@index='519'] -opus/document/letterText[@index='52'] -opus/document/letterText[@index='520'] -opus/document/letterText[@index='521'] -opus/document/letterText[@index='522'] -opus/document/letterText[@index='523'] -opus/document/letterText[@index='524'] -opus/document/letterText[@index='525'] -opus/document/letterText[@index='526'] -opus/document/letterText[@index='527'] -opus/document/letterText[@index='528'] -opus/document/letterText[@index='529'] -opus/document/letterText[@index='53'] -opus/document/letterText[@index='530'] -opus/document/letterText[@index='531'] -opus/document/letterText[@index='532'] -opus/document/letterText[@index='533'] -opus/document/letterText[@index='534'] -opus/document/letterText[@index='535'] -opus/document/letterText[@index='536'] -opus/document/letterText[@index='537'] -opus/document/letterText[@index='538'] -opus/document/letterText[@index='539'] -opus/document/letterText[@index='54'] -opus/document/letterText[@index='540'] -opus/document/letterText[@index='541'] -opus/document/letterText[@index='542'] -opus/document/letterText[@index='543'] -opus/document/letterText[@index='544'] -opus/document/letterText[@index='545'] -opus/document/letterText[@index='546'] -opus/document/letterText[@index='547'] -opus/document/letterText[@index='548'] -opus/document/letterText[@index='549'] -opus/document/letterText[@index='55'] -opus/document/letterText[@index='550'] -opus/document/letterText[@index='551'] -opus/document/letterText[@index='552'] -opus/document/letterText[@index='553'] -opus/document/letterText[@index='554'] -opus/document/letterText[@index='555'] -opus/document/letterText[@index='556'] -opus/document/letterText[@index='557'] -opus/document/letterText[@index='558'] -opus/document/letterText[@index='559'] -opus/document/letterText[@index='56'] -opus/document/letterText[@index='560'] -opus/document/letterText[@index='561'] -opus/document/letterText[@index='562'] -opus/document/letterText[@index='563'] -opus/document/letterText[@index='564'] -opus/document/letterText[@index='565'] -opus/document/letterText[@index='566'] -opus/document/letterText[@index='567'] -opus/document/letterText[@index='568'] -opus/document/letterText[@index='569'] -opus/document/letterText[@index='57'] -opus/document/letterText[@index='570'] -opus/document/letterText[@index='571'] -opus/document/letterText[@index='572'] -opus/document/letterText[@index='573'] -opus/document/letterText[@index='574'] -opus/document/letterText[@index='575'] -opus/document/letterText[@index='576'] -opus/document/letterText[@index='577'] -opus/document/letterText[@index='578'] -opus/document/letterText[@index='579'] -opus/document/letterText[@index='58'] -opus/document/letterText[@index='580'] -opus/document/letterText[@index='581'] -opus/document/letterText[@index='582'] -opus/document/letterText[@index='583'] -opus/document/letterText[@index='584'] -opus/document/letterText[@index='585'] -opus/document/letterText[@index='586'] -opus/document/letterText[@index='587'] -opus/document/letterText[@index='588'] -opus/document/letterText[@index='589'] -opus/document/letterText[@index='59'] -opus/document/letterText[@index='590'] -opus/document/letterText[@index='591'] -opus/document/letterText[@index='592'] -opus/document/letterText[@index='593'] -opus/document/letterText[@index='594'] -opus/document/letterText[@index='595'] -opus/document/letterText[@index='596'] -opus/document/letterText[@index='597'] -opus/document/letterText[@index='598'] -opus/document/letterText[@index='599'] -opus/document/letterText[@index='6'] -opus/document/letterText[@index='60'] -opus/document/letterText[@index='600'] -opus/document/letterText[@index='601'] -opus/document/letterText[@index='602'] -opus/document/letterText[@index='603'] -opus/document/letterText[@index='604'] -opus/document/letterText[@index='605'] -opus/document/letterText[@index='606'] -opus/document/letterText[@index='607'] -opus/document/letterText[@index='608'] -opus/document/letterText[@index='609'] -opus/document/letterText[@index='61'] -opus/document/letterText[@index='610'] -opus/document/letterText[@index='611'] -opus/document/letterText[@index='612'] -opus/document/letterText[@index='613'] -opus/document/letterText[@index='614'] -opus/document/letterText[@index='615'] -opus/document/letterText[@index='616'] -opus/document/letterText[@index='617'] -opus/document/letterText[@index='618'] -opus/document/letterText[@index='619'] -opus/document/letterText[@index='62'] -opus/document/letterText[@index='620'] -opus/document/letterText[@index='621'] -opus/document/letterText[@index='622'] -opus/document/letterText[@index='623'] -opus/document/letterText[@index='624'] -opus/document/letterText[@index='625'] -opus/document/letterText[@index='626'] -opus/document/letterText[@index='627'] -opus/document/letterText[@index='628'] -opus/document/letterText[@index='629'] -opus/document/letterText[@index='63'] -opus/document/letterText[@index='630'] -opus/document/letterText[@index='631'] -opus/document/letterText[@index='632'] -opus/document/letterText[@index='633'] -opus/document/letterText[@index='634'] -opus/document/letterText[@index='635'] -opus/document/letterText[@index='636'] -opus/document/letterText[@index='637'] -opus/document/letterText[@index='638'] -opus/document/letterText[@index='639'] -opus/document/letterText[@index='64'] -opus/document/letterText[@index='640'] -opus/document/letterText[@index='641'] -opus/document/letterText[@index='642'] -opus/document/letterText[@index='643'] -opus/document/letterText[@index='644'] -opus/document/letterText[@index='645'] -opus/document/letterText[@index='646'] -opus/document/letterText[@index='647'] -opus/document/letterText[@index='648'] -opus/document/letterText[@index='649'] -opus/document/letterText[@index='65'] -opus/document/letterText[@index='650'] -opus/document/letterText[@index='651'] -opus/document/letterText[@index='652'] -opus/document/letterText[@index='653'] -opus/document/letterText[@index='654'] -opus/document/letterText[@index='655'] -opus/document/letterText[@index='656'] -opus/document/letterText[@index='657'] -opus/document/letterText[@index='658'] -opus/document/letterText[@index='659'] -opus/document/letterText[@index='66'] -opus/document/letterText[@index='660'] -opus/document/letterText[@index='661'] -opus/document/letterText[@index='662'] -opus/document/letterText[@index='663'] -opus/document/letterText[@index='664'] -opus/document/letterText[@index='665'] -opus/document/letterText[@index='666'] -opus/document/letterText[@index='667'] -opus/document/letterText[@index='668'] -opus/document/letterText[@index='669'] -opus/document/letterText[@index='67'] -opus/document/letterText[@index='670'] -opus/document/letterText[@index='671'] -opus/document/letterText[@index='672'] -opus/document/letterText[@index='673'] -opus/document/letterText[@index='674'] -opus/document/letterText[@index='675'] -opus/document/letterText[@index='676'] -opus/document/letterText[@index='677'] -opus/document/letterText[@index='678'] -opus/document/letterText[@index='679'] -opus/document/letterText[@index='68'] -opus/document/letterText[@index='680'] -opus/document/letterText[@index='681'] -opus/document/letterText[@index='682'] -opus/document/letterText[@index='683'] -opus/document/letterText[@index='684'] -opus/document/letterText[@index='685'] -opus/document/letterText[@index='686'] -opus/document/letterText[@index='687'] -opus/document/letterText[@index='688'] -opus/document/letterText[@index='689'] -opus/document/letterText[@index='69'] -opus/document/letterText[@index='690'] -opus/document/letterText[@index='691'] -opus/document/letterText[@index='692'] -opus/document/letterText[@index='693'] -opus/document/letterText[@index='694'] -opus/document/letterText[@index='695'] -opus/document/letterText[@index='696'] -opus/document/letterText[@index='697'] -opus/document/letterText[@index='698'] -opus/document/letterText[@index='699'] -opus/document/letterText[@index='7'] -opus/document/letterText[@index='70'] -opus/document/letterText[@index='700'] -opus/document/letterText[@index='701'] -opus/document/letterText[@index='702'] -opus/document/letterText[@index='703'] -opus/document/letterText[@index='704'] -opus/document/letterText[@index='705'] -opus/document/letterText[@index='706'] -opus/document/letterText[@index='707'] -opus/document/letterText[@index='708'] -opus/document/letterText[@index='709'] -opus/document/letterText[@index='71'] -opus/document/letterText[@index='710'] -opus/document/letterText[@index='711'] -opus/document/letterText[@index='712'] -opus/document/letterText[@index='713'] -opus/document/letterText[@index='714'] -opus/document/letterText[@index='715'] -opus/document/letterText[@index='716'] -opus/document/letterText[@index='717'] -opus/document/letterText[@index='718'] -opus/document/letterText[@index='719'] -opus/document/letterText[@index='72'] -opus/document/letterText[@index='720'] -opus/document/letterText[@index='721'] -opus/document/letterText[@index='722'] -opus/document/letterText[@index='723'] -opus/document/letterText[@index='724'] -opus/document/letterText[@index='725'] -opus/document/letterText[@index='726'] -opus/document/letterText[@index='727'] -opus/document/letterText[@index='728'] -opus/document/letterText[@index='729'] -opus/document/letterText[@index='73'] -opus/document/letterText[@index='730'] -opus/document/letterText[@index='731'] -opus/document/letterText[@index='732'] -opus/document/letterText[@index='733'] -opus/document/letterText[@index='734'] -opus/document/letterText[@index='735'] -opus/document/letterText[@index='736'] -opus/document/letterText[@index='737'] -opus/document/letterText[@index='738'] -opus/document/letterText[@index='739'] -opus/document/letterText[@index='74'] -opus/document/letterText[@index='740'] -opus/document/letterText[@index='741'] -opus/document/letterText[@index='742'] -opus/document/letterText[@index='743'] -opus/document/letterText[@index='744'] -opus/document/letterText[@index='745'] -opus/document/letterText[@index='746'] -opus/document/letterText[@index='747'] -opus/document/letterText[@index='748'] -opus/document/letterText[@index='749'] -opus/document/letterText[@index='75'] -opus/document/letterText[@index='750'] -opus/document/letterText[@index='751'] -opus/document/letterText[@index='752'] -opus/document/letterText[@index='753'] -opus/document/letterText[@index='754'] -opus/document/letterText[@index='755'] -opus/document/letterText[@index='756'] -opus/document/letterText[@index='757'] -opus/document/letterText[@index='758'] -opus/document/letterText[@index='759'] -opus/document/letterText[@index='76'] -opus/document/letterText[@index='760'] -opus/document/letterText[@index='761'] -opus/document/letterText[@index='762'] -opus/document/letterText[@index='763'] -opus/document/letterText[@index='764'] -opus/document/letterText[@index='765'] -opus/document/letterText[@index='766'] -opus/document/letterText[@index='767'] -opus/document/letterText[@index='768'] -opus/document/letterText[@index='769'] -opus/document/letterText[@index='77'] -opus/document/letterText[@index='770'] -opus/document/letterText[@index='771'] -opus/document/letterText[@index='772'] -opus/document/letterText[@index='773'] -opus/document/letterText[@index='774'] -opus/document/letterText[@index='775'] -opus/document/letterText[@index='776'] -opus/document/letterText[@index='777'] -opus/document/letterText[@index='778'] -opus/document/letterText[@index='779'] -opus/document/letterText[@index='78'] -opus/document/letterText[@index='780'] -opus/document/letterText[@index='781'] -opus/document/letterText[@index='782'] -opus/document/letterText[@index='783'] -opus/document/letterText[@index='784'] -opus/document/letterText[@index='785'] -opus/document/letterText[@index='786'] -opus/document/letterText[@index='787'] -opus/document/letterText[@index='788'] -opus/document/letterText[@index='789'] -opus/document/letterText[@index='79'] -opus/document/letterText[@index='790'] -opus/document/letterText[@index='791'] -opus/document/letterText[@index='792'] -opus/document/letterText[@index='793'] -opus/document/letterText[@index='794'] -opus/document/letterText[@index='795'] -opus/document/letterText[@index='796'] -opus/document/letterText[@index='797'] -opus/document/letterText[@index='798'] -opus/document/letterText[@index='799'] -opus/document/letterText[@index='8'] -opus/document/letterText[@index='80'] -opus/document/letterText[@index='800'] -opus/document/letterText[@index='801'] -opus/document/letterText[@index='802'] -opus/document/letterText[@index='803'] -opus/document/letterText[@index='804'] -opus/document/letterText[@index='805'] -opus/document/letterText[@index='806'] -opus/document/letterText[@index='807'] -opus/document/letterText[@index='808'] -opus/document/letterText[@index='809'] -opus/document/letterText[@index='81'] -opus/document/letterText[@index='810'] -opus/document/letterText[@index='811'] -opus/document/letterText[@index='812'] -opus/document/letterText[@index='813'] -opus/document/letterText[@index='814'] -opus/document/letterText[@index='815'] -opus/document/letterText[@index='816'] -opus/document/letterText[@index='817'] -opus/document/letterText[@index='818'] -opus/document/letterText[@index='819'] -opus/document/letterText[@index='82'] -opus/document/letterText[@index='820'] -opus/document/letterText[@index='821'] -opus/document/letterText[@index='822'] -opus/document/letterText[@index='823'] -opus/document/letterText[@index='824'] -opus/document/letterText[@index='825'] -opus/document/letterText[@index='826'] -opus/document/letterText[@index='827'] -opus/document/letterText[@index='828'] -opus/document/letterText[@index='829'] -opus/document/letterText[@index='83'] -opus/document/letterText[@index='830'] -opus/document/letterText[@index='831'] -opus/document/letterText[@index='832'] -opus/document/letterText[@index='833'] -opus/document/letterText[@index='834'] -opus/document/letterText[@index='835'] -opus/document/letterText[@index='836'] -opus/document/letterText[@index='837'] -opus/document/letterText[@index='838'] -opus/document/letterText[@index='839'] -opus/document/letterText[@index='84'] -opus/document/letterText[@index='840'] -opus/document/letterText[@index='841'] -opus/document/letterText[@index='842'] -opus/document/letterText[@index='843'] -opus/document/letterText[@index='844'] -opus/document/letterText[@index='845'] -opus/document/letterText[@index='846'] -opus/document/letterText[@index='847'] -opus/document/letterText[@index='848'] -opus/document/letterText[@index='849'] -opus/document/letterText[@index='85'] -opus/document/letterText[@index='850'] -opus/document/letterText[@index='851'] -opus/document/letterText[@index='852'] -opus/document/letterText[@index='853'] -opus/document/letterText[@index='854'] -opus/document/letterText[@index='855'] -opus/document/letterText[@index='856'] -opus/document/letterText[@index='857'] -opus/document/letterText[@index='858'] -opus/document/letterText[@index='859'] -opus/document/letterText[@index='86'] -opus/document/letterText[@index='860'] -opus/document/letterText[@index='861'] -opus/document/letterText[@index='862'] -opus/document/letterText[@index='863'] -opus/document/letterText[@index='864'] -opus/document/letterText[@index='865'] -opus/document/letterText[@index='866'] -opus/document/letterText[@index='867'] -opus/document/letterText[@index='868'] -opus/document/letterText[@index='869'] -opus/document/letterText[@index='87'] -opus/document/letterText[@index='870'] -opus/document/letterText[@index='871'] -opus/document/letterText[@index='872'] -opus/document/letterText[@index='873'] -opus/document/letterText[@index='874'] -opus/document/letterText[@index='875'] -opus/document/letterText[@index='876'] -opus/document/letterText[@index='877'] -opus/document/letterText[@index='878'] -opus/document/letterText[@index='879'] -opus/document/letterText[@index='88'] -opus/document/letterText[@index='880'] -opus/document/letterText[@index='881'] -opus/document/letterText[@index='882'] -opus/document/letterText[@index='883'] -opus/document/letterText[@index='884'] -opus/document/letterText[@index='885'] -opus/document/letterText[@index='886'] -opus/document/letterText[@index='887'] -opus/document/letterText[@index='888'] -opus/document/letterText[@index='889'] -opus/document/letterText[@index='89'] -opus/document/letterText[@index='890'] -opus/document/letterText[@index='891'] -opus/document/letterText[@index='892'] -opus/document/letterText[@index='893'] -opus/document/letterText[@index='894'] -opus/document/letterText[@index='895'] -opus/document/letterText[@index='896'] -opus/document/letterText[@index='897'] -opus/document/letterText[@index='898'] -opus/document/letterText[@index='899'] -opus/document/letterText[@index='9'] -opus/document/letterText[@index='90'] -opus/document/letterText[@index='900'] -opus/document/letterText[@index='901'] -opus/document/letterText[@index='902'] -opus/document/letterText[@index='903'] -opus/document/letterText[@index='904'] -opus/document/letterText[@index='905'] -opus/document/letterText[@index='906'] -opus/document/letterText[@index='907'] -opus/document/letterText[@index='908'] -opus/document/letterText[@index='909'] -opus/document/letterText[@index='91'] -opus/document/letterText[@index='910'] -opus/document/letterText[@index='911'] -opus/document/letterText[@index='912'] -opus/document/letterText[@index='913'] -opus/document/letterText[@index='914'] -opus/document/letterText[@index='915'] -opus/document/letterText[@index='916'] -opus/document/letterText[@index='917'] -opus/document/letterText[@index='918'] -opus/document/letterText[@index='919'] -opus/document/letterText[@index='92'] -opus/document/letterText[@index='920'] -opus/document/letterText[@index='921'] -opus/document/letterText[@index='922'] -opus/document/letterText[@index='923'] -opus/document/letterText[@index='924'] -opus/document/letterText[@index='925'] -opus/document/letterText[@index='926'] -opus/document/letterText[@index='927'] -opus/document/letterText[@index='928'] -opus/document/letterText[@index='929'] -opus/document/letterText[@index='93'] -opus/document/letterText[@index='930'] -opus/document/letterText[@index='931'] -opus/document/letterText[@index='932'] -opus/document/letterText[@index='933'] -opus/document/letterText[@index='934'] -opus/document/letterText[@index='935'] -opus/document/letterText[@index='936'] -opus/document/letterText[@index='937'] -opus/document/letterText[@index='938'] -opus/document/letterText[@index='939'] -opus/document/letterText[@index='94'] -opus/document/letterText[@index='940'] -opus/document/letterText[@index='941'] -opus/document/letterText[@index='942'] -opus/document/letterText[@index='943'] -opus/document/letterText[@index='944'] -opus/document/letterText[@index='945'] -opus/document/letterText[@index='946'] -opus/document/letterText[@index='947'] -opus/document/letterText[@index='948'] -opus/document/letterText[@index='949'] -opus/document/letterText[@index='95'] -opus/document/letterText[@index='950'] -opus/document/letterText[@index='951'] -opus/document/letterText[@index='952'] -opus/document/letterText[@index='953'] -opus/document/letterText[@index='954'] -opus/document/letterText[@index='955'] -opus/document/letterText[@index='956'] -opus/document/letterText[@index='957'] -opus/document/letterText[@index='958'] -opus/document/letterText[@index='959'] -opus/document/letterText[@index='96'] -opus/document/letterText[@index='960'] -opus/document/letterText[@index='961'] -opus/document/letterText[@index='962'] -opus/document/letterText[@index='963'] -opus/document/letterText[@index='964'] -opus/document/letterText[@index='965'] -opus/document/letterText[@index='966'] -opus/document/letterText[@index='967'] -opus/document/letterText[@index='968'] -opus/document/letterText[@index='969'] -opus/document/letterText[@index='97'] -opus/document/letterText[@index='970'] -opus/document/letterText[@index='971'] -opus/document/letterText[@index='972'] -opus/document/letterText[@index='973'] -opus/document/letterText[@index='974'] -opus/document/letterText[@index='975'] -opus/document/letterText[@index='976'] -opus/document/letterText[@index='977'] -opus/document/letterText[@index='978'] -opus/document/letterText[@index='979'] -opus/document/letterText[@index='98'] -opus/document/letterText[@index='980'] -opus/document/letterText[@index='981'] -opus/document/letterText[@index='982'] -opus/document/letterText[@index='983'] -opus/document/letterText[@index='984'] -opus/document/letterText[@index='985'] -opus/document/letterText[@index='986'] -opus/document/letterText[@index='987'] -opus/document/letterText[@index='988'] -opus/document/letterText[@index='989'] -opus/document/letterText[@index='99'] -opus/document/letterText[@index='990'] -opus/document/letterText[@index='991'] -opus/document/letterText[@index='992'] -opus/document/letterText[@index='993'] -opus/document/letterText[@index='994'] -opus/document/letterText[@index='995'] -opus/document/letterText[@index='996'] -opus/document/letterText[@index='997'] -opus/document/letterText[@index='998'] -opus/document/letterText[@index='999'] -opus/document/letterText/line -opus/document/letterText/line[@index='10' and @autopsic='10' and @tab='7'] -opus/document/letterText/line[@index='10' and @autopsic='10' and @type='break'] -opus/document/letterText/line[@index='10' and @autopsic='41'] -opus/document/letterText/line[@index='10' and @autopsic='7'] -opus/document/letterText/line[@index='10' and @autopsic='9' and @tab='2'] -opus/document/letterText/line[@index='11' and @autopsic='10' and @tab='3'] -opus/document/letterText/line[@index='11' and @autopsic='11' and @tab='3'] -opus/document/letterText/line[@index='11' and @autopsic='11' and @tab='5'] -opus/document/letterText/line[@index='11' and @autopsic='11' and @tab='7'] -opus/document/letterText/line[@index='11' and @autopsic='11' and @type='break' and @tab='4'] -opus/document/letterText/line[@index='11' and @autopsic='12' and @tab='1'] -opus/document/letterText/line[@index='11' and @autopsic='42'] -opus/document/letterText/line[@index='11' and @autopsic='7' and @tab='1'] -opus/document/letterText/line[@index='11' and @autopsic='9' and @tab='1'] -opus/document/letterText/line[@index='12' and @autopsic='11' and @tab='2'] -opus/document/letterText/line[@index='12' and @autopsic='12' and @tab='3'] -opus/document/letterText/line[@index='12' and @autopsic='12' and @type='break'] -opus/document/letterText/line[@index='12' and @autopsic='13' and @tab='2'] -opus/document/letterText/line[@index='12' and @autopsic='15'] -opus/document/letterText/line[@index='12' and @autopsic='43'] -opus/document/letterText/line[@index='13' and @autopsic='11' and @tab='2'] -opus/document/letterText/line[@index='13' and @autopsic='12' and @tab='2'] -opus/document/letterText/line[@index='13' and @autopsic='12' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='13' and @autopsic='13' and @tab='3'] -opus/document/letterText/line[@index='13' and @autopsic='13' and @tab='7'] -opus/document/letterText/line[@index='13' and @autopsic='13' and @type='break'] -opus/document/letterText/line[@index='13' and @autopsic='14' and @tab='2'] -opus/document/letterText/line[@index='13' and @autopsic='14' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='13' and @autopsic='16'] -opus/document/letterText/line[@index='13' and @autopsic='44'] -opus/document/letterText/line[@index='14' and @autopsic='11' and @tab='2'] -opus/document/letterText/line[@index='14' and @autopsic='12' and @tab='2'] -opus/document/letterText/line[@index='14' and @autopsic='12' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='14' and @autopsic='13' and @tab='2'] -opus/document/letterText/line[@index='14' and @autopsic='13' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='14' and @autopsic='14' and @tab='3'] -opus/document/letterText/line[@index='14' and @autopsic='14' and @tab='6'] -opus/document/letterText/line[@index='14' and @autopsic='14' and @tab='7'] -opus/document/letterText/line[@index='14' and @autopsic='17'] -opus/document/letterText/line[@index='14' and @autopsic='45' and @tab='1'] -opus/document/letterText/line[@index='15' and @autopsic='12' and @tab='1'] -opus/document/letterText/line[@index='15' and @autopsic='13' and @tab='2'] -opus/document/letterText/line[@index='15' and @autopsic='14' and @tab='1'] -opus/document/letterText/line[@index='15' and @autopsic='14' and @tab='2'] -opus/document/letterText/line[@index='15' and @autopsic='15' and @tab='5'] -opus/document/letterText/line[@index='15' and @autopsic='15' and @type='break' and @tab='4'] -opus/document/letterText/line[@index='15' and @autopsic='16' and @tab='1'] -opus/document/letterText/line[@index='15' and @autopsic='16' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='15' and @autopsic='46'] -opus/document/letterText/line[@index='15' and @autopsic='8'] -opus/document/letterText/line[@index='16' and @autopsic='13' and @tab='2'] -opus/document/letterText/line[@index='16' and @autopsic='16' and @type='break' and @tab='2'] -opus/document/letterText/line[@index='16' and @autopsic='17' and @tab='1'] -opus/document/letterText/line[@index='16' and @autopsic='17' and @tab='2'] -opus/document/letterText/line[@index='16' and @autopsic='17' and @tab='4'] -opus/document/letterText/line[@index='16' and @autopsic='17' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='16' and @autopsic='47'] -opus/document/letterText/line[@index='16' and @autopsic='9' and @tab='2'] -opus/document/letterText/line[@index='17' and @autopsic='10'] -opus/document/letterText/line[@index='17' and @autopsic='15' and @tab='1'] -opus/document/letterText/line[@index='17' and @autopsic='16' and @tab='2'] -opus/document/letterText/line[@index='17' and @autopsic='17' and @tab='3'] -opus/document/letterText/line[@index='17' and @autopsic='17' and @tab='5'] -opus/document/letterText/line[@index='17' and @autopsic='17' and @tab='7'] -opus/document/letterText/line[@index='17' and @autopsic='17' and @type='break' and @tab='4'] -opus/document/letterText/line[@index='17' and @autopsic='18' and @tab='4'] -opus/document/letterText/line[@index='17' and @autopsic='48'] -opus/document/letterText/line[@index='18' and @autopsic='11'] -opus/document/letterText/line[@index='18' and @autopsic='12'] -opus/document/letterText/line[@index='18' and @autopsic='15' and @tab='1'] -opus/document/letterText/line[@index='18' and @autopsic='15' and @tab='2'] -opus/document/letterText/line[@index='18' and @autopsic='16' and @tab='2'] -opus/document/letterText/line[@index='18' and @autopsic='17' and @tab='1'] -opus/document/letterText/line[@index='18' and @autopsic='17' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='18' and @autopsic='19' and @tab='4'] -opus/document/letterText/line[@index='18' and @autopsic='49'] -opus/document/letterText/line[@index='19' and @autopsic='11' and @tab='1'] -opus/document/letterText/line[@index='19' and @autopsic='12'] -opus/document/letterText/line[@index='19' and @autopsic='13' and @tab='2'] -opus/document/letterText/line[@index='19' and @autopsic='15'] -opus/document/letterText/line[@index='19' and @autopsic='16' and @tab='1'] -opus/document/letterText/line[@index='19' and @autopsic='17' and @tab='1'] -opus/document/letterText/line[@index='19' and @autopsic='18' and @tab='1'] -opus/document/letterText/line[@index='19' and @autopsic='19' and @tab='3'] -opus/document/letterText/line[@index='19' and @autopsic='19' and @tab='5'] -opus/document/letterText/line[@index='19' and @autopsic='19' and @type='break'] -opus/document/letterText/line[@index='19' and @autopsic='20' and @tab='1'] -opus/document/letterText/line[@index='19' and @autopsic='20' and @tab='2'] -opus/document/letterText/line[@index='19' and @autopsic='20' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='19' and @autopsic='21'] -opus/document/letterText/line[@index='1' and @autopsic='1' and @type='break' and @tab='4'] -opus/document/letterText/line[@index='1' and @autopsic='2'] -opus/document/letterText/line[@index='1' and @autopsic='2' and @tab='1'] -opus/document/letterText/line[@index='1' and @autopsic='32'] -opus/document/letterText/line[@index='20' and @autopsic='12'] -opus/document/letterText/line[@index='20' and @autopsic='13'] -opus/document/letterText/line[@index='20' and @autopsic='14'] -opus/document/letterText/line[@index='20' and @autopsic='16' and @tab='1'] -opus/document/letterText/line[@index='20' and @autopsic='17' and @tab='1'] -opus/document/letterText/line[@index='20' and @autopsic='19' and @tab='2'] -opus/document/letterText/line[@index='20' and @autopsic='21' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='20' and @autopsic='29'] -opus/document/letterText/line[@index='20' and @autopsic='51'] -opus/document/letterText/line[@index='21' and @autopsic='13'] -opus/document/letterText/line[@index='21' and @autopsic='14'] -opus/document/letterText/line[@index='21' and @autopsic='15'] -opus/document/letterText/line[@index='21' and @autopsic='17' and @tab='1'] -opus/document/letterText/line[@index='21' and @autopsic='19' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='21' and @autopsic='20' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='21' and @autopsic='21' and @tab='6'] -opus/document/letterText/line[@index='21' and @autopsic='22' and @tab='2'] -opus/document/letterText/line[@index='21' and @autopsic='22' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='21' and @autopsic='52'] -opus/document/letterText/line[@index='22' and @autopsic='14'] -opus/document/letterText/line[@index='22' and @autopsic='15'] -opus/document/letterText/line[@index='22' and @autopsic='16'] -opus/document/letterText/line[@index='22' and @autopsic='17' and @tab='1'] -opus/document/letterText/line[@index='22' and @autopsic='20' and @tab='1'] -opus/document/letterText/line[@index='22' and @autopsic='21' and @tab='4'] -opus/document/letterText/line[@index='22' and @autopsic='21' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='22' and @autopsic='22' and @type='break'] -opus/document/letterText/line[@index='22' and @autopsic='23' and @tab='2'] -opus/document/letterText/line[@index='22' and @autopsic='23' and @tab='7'] -opus/document/letterText/line[@index='22' and @autopsic='23' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='22' and @autopsic='53'] -opus/document/letterText/line[@index='23' and @autopsic='16'] -opus/document/letterText/line[@index='23' and @autopsic='18' and @tab='1'] -opus/document/letterText/line[@index='23' and @autopsic='20' and @tab='1'] -opus/document/letterText/line[@index='23' and @autopsic='20' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='23' and @autopsic='21' and @tab='1'] -opus/document/letterText/line[@index='23' and @autopsic='21' and @tab='2'] -opus/document/letterText/line[@index='23' and @autopsic='22' and @tab='2'] -opus/document/letterText/line[@index='23' and @autopsic='23' and @tab='3'] -opus/document/letterText/line[@index='23' and @autopsic='23' and @tab='6'] -opus/document/letterText/line[@index='23' and @autopsic='23' and @type='line'] -opus/document/letterText/line[@index='23' and @autopsic='24' and @tab='4'] -opus/document/letterText/line[@index='23' and @autopsic='25'] -opus/document/letterText/line[@index='23' and @autopsic='54'] -opus/document/letterText/line[@index='24' and @autopsic='16'] -opus/document/letterText/line[@index='24' and @autopsic='17'] -opus/document/letterText/line[@index='24' and @autopsic='18'] -opus/document/letterText/line[@index='24' and @autopsic='24' and @tab='3'] -opus/document/letterText/line[@index='24' and @autopsic='25' and @tab='4'] -opus/document/letterText/line[@index='24' and @autopsic='55'] -opus/document/letterText/line[@index='25' and @autopsic='17'] -opus/document/letterText/line[@index='25' and @autopsic='18'] -opus/document/letterText/line[@index='25' and @autopsic='19'] -opus/document/letterText/line[@index='25' and @autopsic='19' and @tab='1'] -opus/document/letterText/line[@index='25' and @autopsic='20' and @tab='1'] -opus/document/letterText/line[@index='25' and @autopsic='21'] -opus/document/letterText/line[@index='25' and @autopsic='24' and @tab='2'] -opus/document/letterText/line[@index='25' and @autopsic='24' and @tab='4'] -opus/document/letterText/line[@index='25' and @autopsic='24' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='25' and @autopsic='25' and @tab='3'] -opus/document/letterText/line[@index='25' and @autopsic='25' and @tab='7'] -opus/document/letterText/line[@index='25' and @autopsic='56'] -opus/document/letterText/line[@index='26' and @autopsic='18' and @tab='1'] -opus/document/letterText/line[@index='26' and @autopsic='19'] -opus/document/letterText/line[@index='26' and @autopsic='20'] -opus/document/letterText/line[@index='26' and @autopsic='21' and @tab='2'] -opus/document/letterText/line[@index='26' and @autopsic='22'] -opus/document/letterText/line[@index='26' and @autopsic='23' and @tab='1'] -opus/document/letterText/line[@index='26' and @autopsic='24' and @tab='4'] -opus/document/letterText/line[@index='26' and @autopsic='25' and @tab='4'] -opus/document/letterText/line[@index='26' and @autopsic='27' and @tab='1'] -opus/document/letterText/line[@index='26' and @autopsic='27' and @tab='4'] -opus/document/letterText/line[@index='26' and @autopsic='29'] -opus/document/letterText/line[@index='26' and @autopsic='57'] -opus/document/letterText/line[@index='27' and @autopsic='20'] -opus/document/letterText/line[@index='27' and @autopsic='21' and @tab='1'] -opus/document/letterText/line[@index='27' and @autopsic='22'] -opus/document/letterText/line[@index='27' and @autopsic='23'] -opus/document/letterText/line[@index='27' and @autopsic='23' and @tab='1'] -opus/document/letterText/line[@index='27' and @autopsic='26' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='27' and @autopsic='27' and @type='dashed'] -opus/document/letterText/line[@index='27' and @autopsic='28' and @tab='1'] -opus/document/letterText/line[@index='27' and @autopsic='28' and @tab='2'] -opus/document/letterText/line[@index='27' and @autopsic='28' and @tab='4'] -opus/document/letterText/line[@index='27' and @autopsic='30'] -opus/document/letterText/line[@index='27' and @autopsic='58'] -opus/document/letterText/line[@index='28' and @autopsic='20'] -opus/document/letterText/line[@index='28' and @autopsic='21'] -opus/document/letterText/line[@index='28' and @autopsic='22'] -opus/document/letterText/line[@index='28' and @autopsic='23'] -opus/document/letterText/line[@index='28' and @autopsic='24'] -opus/document/letterText/line[@index='28' and @autopsic='26' and @tab='1'] -opus/document/letterText/line[@index='28' and @autopsic='27' and @tab='2'] -opus/document/letterText/line[@index='28' and @autopsic='28' and @tab='7'] -opus/document/letterText/line[@index='28' and @autopsic='28' and @type='break'] -opus/document/letterText/line[@index='28' and @autopsic='29' and @tab='1'] -opus/document/letterText/line[@index='28' and @autopsic='29' and @type='break' and @tab='2'] -opus/document/letterText/line[@index='28' and @autopsic='30'] -opus/document/letterText/line[@index='28' and @autopsic='31'] -opus/document/letterText/line[@index='28' and @autopsic='59'] -opus/document/letterText/line[@index='29' and @autopsic='21'] -opus/document/letterText/line[@index='29' and @autopsic='22'] -opus/document/letterText/line[@index='29' and @autopsic='23'] -opus/document/letterText/line[@index='29' and @autopsic='24'] -opus/document/letterText/line[@index='29' and @autopsic='25' and @tab='1'] -opus/document/letterText/line[@index='29' and @autopsic='26' and @tab='1'] -opus/document/letterText/line[@index='29' and @autopsic='27' and @tab='1'] -opus/document/letterText/line[@index='29' and @autopsic='27' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='29' and @autopsic='29' and @type='break' and @tab='4'] -opus/document/letterText/line[@index='29' and @autopsic='30' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='29' and @autopsic='31' and @tab='2'] -opus/document/letterText/line[@index='29' and @autopsic='32'] -opus/document/letterText/line[@index='29' and @autopsic='60'] -opus/document/letterText/line[@index='2' and @autopsic='20' and @tab='1'] -opus/document/letterText/line[@index='2' and @autopsic='2' and @tab='3'] -opus/document/letterText/line[@index='2' and @autopsic='2' and @tab='6'] -opus/document/letterText/line[@index='2' and @autopsic='2' and @tab='7'] -opus/document/letterText/line[@index='30' and @autopsic='22'] -opus/document/letterText/line[@index='30' and @autopsic='23'] -opus/document/letterText/line[@index='30' and @autopsic='24'] -opus/document/letterText/line[@index='30' and @autopsic='26'] -opus/document/letterText/line[@index='30' and @autopsic='27' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='30' and @autopsic='29' and @tab='2'] -opus/document/letterText/line[@index='30' and @autopsic='29' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='30' and @autopsic='30' and @tab='6'] -opus/document/letterText/line[@index='30' and @autopsic='32'] -opus/document/letterText/line[@index='30' and @autopsic='33'] -opus/document/letterText/line[@index='30' and @autopsic='61'] -opus/document/letterText/line[@index='31' and @autopsic='23'] -opus/document/letterText/line[@index='31' and @autopsic='24'] -opus/document/letterText/line[@index='31' and @autopsic='25'] -opus/document/letterText/line[@index='31' and @autopsic='26'] -opus/document/letterText/line[@index='31' and @autopsic='27'] -opus/document/letterText/line[@index='31' and @autopsic='27' and @tab='2'] -opus/document/letterText/line[@index='31' and @autopsic='30' and @tab='2'] -opus/document/letterText/line[@index='31' and @autopsic='31' and @tab='5'] -opus/document/letterText/line[@index='31' and @autopsic='32' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='31' and @autopsic='33'] -opus/document/letterText/line[@index='31' and @autopsic='34'] -opus/document/letterText/line[@index='31' and @autopsic='62'] -opus/document/letterText/line[@index='32' and @autopsic='24'] -opus/document/letterText/line[@index='32' and @autopsic='25'] -opus/document/letterText/line[@index='32' and @autopsic='26'] -opus/document/letterText/line[@index='32' and @autopsic='27'] -opus/document/letterText/line[@index='32' and @autopsic='32' and @type='break' and @tab='4'] -opus/document/letterText/line[@index='32' and @autopsic='32' and @type='line'] -opus/document/letterText/line[@index='32' and @autopsic='33' and @tab='2'] -opus/document/letterText/line[@index='32' and @autopsic='33' and @tab='7'] -opus/document/letterText/line[@index='32' and @autopsic='33' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='32' and @autopsic='35'] -opus/document/letterText/line[@index='32' and @autopsic='63' and @tab='1'] -opus/document/letterText/line[@index='33' and @autopsic='25'] -opus/document/letterText/line[@index='33' and @autopsic='26'] -opus/document/letterText/line[@index='33' and @autopsic='27' and @tab='1'] -opus/document/letterText/line[@index='33' and @autopsic='28' and @tab='1'] -opus/document/letterText/line[@index='33' and @autopsic='30' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='33' and @autopsic='32' and @tab='2'] -opus/document/letterText/line[@index='33' and @autopsic='32' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='33' and @autopsic='33' and @tab='6'] -opus/document/letterText/line[@index='33' and @autopsic='33' and @tab='7'] -opus/document/letterText/line[@index='33' and @autopsic='34' and @tab='3'] -opus/document/letterText/line[@index='33' and @autopsic='34' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='33' and @autopsic='36'] -opus/document/letterText/line[@index='33' and @autopsic='64'] -opus/document/letterText/line[@index='34' and @autopsic='27'] -opus/document/letterText/line[@index='34' and @autopsic='28'] -opus/document/letterText/line[@index='34' and @autopsic='33' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='34' and @autopsic='34' and @tab='6'] -opus/document/letterText/line[@index='34' and @autopsic='34' and @tab='7'] -opus/document/letterText/line[@index='34' and @autopsic='34' and @type='break' and @tab='2'] -opus/document/letterText/line[@index='34' and @autopsic='35' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='34' and @autopsic='36'] -opus/document/letterText/line[@index='34' and @autopsic='37'] -opus/document/letterText/line[@index='34' and @autopsic='65'] -opus/document/letterText/line[@index='35' and @autopsic='27' and @tab='2'] -opus/document/letterText/line[@index='35' and @autopsic='28'] -opus/document/letterText/line[@index='35' and @autopsic='29'] -opus/document/letterText/line[@index='35' and @autopsic='30'] -opus/document/letterText/line[@index='35' and @autopsic='32' and @tab='1'] -opus/document/letterText/line[@index='35' and @autopsic='32' and @tab='2'] -opus/document/letterText/line[@index='35' and @autopsic='33' and @tab='1'] -opus/document/letterText/line[@index='35' and @autopsic='33' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='35' and @autopsic='35' and @tab='3'] -opus/document/letterText/line[@index='35' and @autopsic='35' and @tab='5'] -opus/document/letterText/line[@index='35' and @autopsic='35' and @tab='6'] -opus/document/letterText/line[@index='35' and @autopsic='35' and @type='break' and @tab='4'] -opus/document/letterText/line[@index='35' and @autopsic='35' and @type='line'] -opus/document/letterText/line[@index='35' and @autopsic='37'] -opus/document/letterText/line[@index='36' and @autopsic='28'] -opus/document/letterText/line[@index='36' and @autopsic='29'] -opus/document/letterText/line[@index='36' and @autopsic='30' and @tab='1'] -opus/document/letterText/line[@index='36' and @autopsic='30' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='36' and @autopsic='31'] -opus/document/letterText/line[@index='36' and @autopsic='32' and @tab='1'] -opus/document/letterText/line[@index='36' and @autopsic='34' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='36' and @autopsic='36' and @tab='5'] -opus/document/letterText/line[@index='36' and @autopsic='36' and @tab='6'] -opus/document/letterText/line[@index='36' and @autopsic='37' and @tab='1'] -opus/document/letterText/line[@index='36' and @autopsic='37' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='36' and @autopsic='67' and @tab='1'] -opus/document/letterText/line[@index='37' and @autopsic='30'] -opus/document/letterText/line[@index='37' and @autopsic='31'] -opus/document/letterText/line[@index='37' and @autopsic='32'] -opus/document/letterText/line[@index='37' and @autopsic='32' and @tab='1'] -opus/document/letterText/line[@index='37' and @autopsic='33'] -opus/document/letterText/line[@index='37' and @autopsic='33' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='37' and @autopsic='34' and @tab='1'] -opus/document/letterText/line[@index='37' and @autopsic='34' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='37' and @autopsic='37' and @tab='5'] -opus/document/letterText/line[@index='37' and @autopsic='37' and @tab='6'] -opus/document/letterText/line[@index='37' and @autopsic='37' and @tab='7'] -opus/document/letterText/line[@index='37' and @autopsic='37' and @type='break' and @tab='4'] -opus/document/letterText/line[@index='37' and @autopsic='68' and @tab='1'] -opus/document/letterText/line[@index='38' and @autopsic='30'] -opus/document/letterText/line[@index='38' and @autopsic='30' and @tab='1'] -opus/document/letterText/line[@index='38' and @autopsic='31'] -opus/document/letterText/line[@index='38' and @autopsic='32'] -opus/document/letterText/line[@index='38' and @autopsic='32' and @tab='1'] -opus/document/letterText/line[@index='38' and @autopsic='33'] -opus/document/letterText/line[@index='38' and @autopsic='34'] -opus/document/letterText/line[@index='38' and @autopsic='36' and @tab='1'] -opus/document/letterText/line[@index='38' and @autopsic='37' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='38' and @autopsic='38' and @tab='1'] -opus/document/letterText/line[@index='39' and @autopsic='31'] -opus/document/letterText/line[@index='39' and @autopsic='32'] -opus/document/letterText/line[@index='39' and @autopsic='32' and @tab='1'] -opus/document/letterText/line[@index='39' and @autopsic='33' and @tab='1'] -opus/document/letterText/line[@index='39' and @autopsic='34'] -opus/document/letterText/line[@index='39' and @autopsic='35'] -opus/document/letterText/line[@index='39' and @autopsic='36' and @tab='1'] -opus/document/letterText/line[@index='39' and @autopsic='37'] -opus/document/letterText/line[@index='39' and @autopsic='39'] -opus/document/letterText/line[@index='39' and @autopsic='39' and @tab='1'] -opus/document/letterText/line[@index='3' and @autopsic='2' and @tab='1'] -opus/document/letterText/line[@index='3' and @autopsic='34'] -opus/document/letterText/line[@index='3' and @autopsic='3' and @tab='1' and @type='break'] -opus/document/letterText/line[@index='3' and @autopsic='3' and @tab='7'] -opus/document/letterText/line[@index='3' and @autopsic='3' and @type='break'] -opus/document/letterText/line[@index='3' and @autopsic='4' and @tab='1'] -opus/document/letterText/line[@index='3' and @autopsic='4' and @tab='2'] -opus/document/letterText/line[@index='40' and @autopsic='33'] -opus/document/letterText/line[@index='40' and @autopsic='35'] -opus/document/letterText/line[@index='40' and @autopsic='36'] -opus/document/letterText/line[@index='40' and @autopsic='37'] -opus/document/letterText/line[@index='42' and @autopsic='34'] -opus/document/letterText/line[@index='43' and @autopsic='35'] -opus/document/letterText/line[@index='44' and @autopsic='36' and @tab='1'] -opus/document/letterText/line[@index='45' and @autopsic='37'] -opus/document/letterText/line[@index='4' and @autopsic='35'] -opus/document/letterText/line[@index='4' and @autopsic='4' and @tab='6'] -opus/document/letterText/line[@index='4' and @autopsic='4' and @type='break'] -opus/document/letterText/line[@index='4' and @autopsic='5' and @tab='1'] -opus/document/letterText/line[@index='4' and @autopsic='5' and @tab='4'] -opus/document/letterText/line[@index='5' and @autopsic='36'] -opus/document/letterText/line[@index='5' and @autopsic='3' and @tab='1'] -opus/document/letterText/line[@index='5' and @autopsic='4' and @tab='1'] -opus/document/letterText/line[@index='5' and @autopsic='4' and @tab='2'] -opus/document/letterText/line[@index='5' and @autopsic='4' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='5' and @autopsic='5' and @tab='1' and @type='break'] -opus/document/letterText/line[@index='5' and @autopsic='5' and @tab='6'] -opus/document/letterText/line[@index='5' and @autopsic='5' and @tab='7'] -opus/document/letterText/line[@index='5' and @autopsic='5' and @type='break'] -opus/document/letterText/line[@index='5' and @autopsic='6' and @tab='4'] -opus/document/letterText/line[@index='5' and @autopsic='6' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='6' and @autopsic='37' and @tab='1'] -opus/document/letterText/line[@index='6' and @autopsic='3' and @tab='2'] -opus/document/letterText/line[@index='6' and @autopsic='4' and @tab='1'] -opus/document/letterText/line[@index='6' and @autopsic='5' and @tab='1'] -opus/document/letterText/line[@index='6' and @autopsic='5' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='6' and @autopsic='6' and @tab='3'] -opus/document/letterText/line[@index='6' and @autopsic='6' and @tab='7'] -opus/document/letterText/line[@index='6' and @autopsic='6' and @type='break' and @tab='3'] -opus/document/letterText/line[@index='6' and @autopsic='7' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='6' and @autopsic='9' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='7' and @autopsic='38'] -opus/document/letterText/line[@index='7' and @autopsic='5' and @tab='1'] -opus/document/letterText/line[@index='7' and @autopsic='5' and @tab='2'] -opus/document/letterText/line[@index='7' and @autopsic='6' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='7' and @autopsic='7' and @tab='1' and @type='break'] -opus/document/letterText/line[@index='7' and @autopsic='7' and @tab='22'] -opus/document/letterText/line[@index='7' and @autopsic='7' and @tab='7'] -opus/document/letterText/line[@index='7' and @autopsic='8' and @tab='2'] -opus/document/letterText/line[@index='7' and @autopsic='9'] -opus/document/letterText/line[@index='8' and @autopsic='39'] -opus/document/letterText/line[@index='8' and @autopsic='5'] -opus/document/letterText/line[@index='8' and @autopsic='5' and @tab='2'] -opus/document/letterText/line[@index='8' and @autopsic='6' and @tab='1'] -opus/document/letterText/line[@index='8' and @autopsic='7' and @tab='1'] -opus/document/letterText/line[@index='8' and @autopsic='8' and @tab='1' and @type='break'] -opus/document/letterText/line[@index='8' and @autopsic='9' and @tab='2'] -opus/document/letterText/line[@index='9' and @autopsic='10' and @tab='2'] -opus/document/letterText/line[@index='9' and @autopsic='10' and @type='break' and @tab='1'] -opus/document/letterText/line[@index='9' and @autopsic='40'] -opus/document/letterText/line[@index='9' and @autopsic='9' and @tab='7'] -opus/document/letterText/line[@type='16' and @autopsic='15'] -opus/document/letterText/note/aq/ul -opus/document/letterText/note/line[@index='11' and @autopsic='11'] -opus/document/letterText/note/line[@index='12' and @autopsic='12'] -opus/document/letterText/note/line[@index='15' and @autopsic='15'] -opus/document/letterText/note/line[@index='16' and @autopsic='13'] -opus/document/letterText/note/line[@index='19' and @autopsic='19'] -opus/document/letterText/note/line[@index='26' and @autopsic='26'] -opus/document/letterText/note/line[@index='27' and @autopsic='27' and @tab='1'] -opus/document/letterText/note/line[@index='28' and @autopsic='28'] -opus/document/letterText/note/line[@index='29' and @autopsic='29'] -opus/document/letterText/note/line[@index='32' and @autopsic='32'] -opus/document/letterText/note/line[@index='33' and @autopsic='33'] -opus/document/letterText/note/line[@index='34' and @autopsic='34'] -opus/document/letterText/note/line[@index='4' and @autopsic='4'] -opus/document/letterText/note/line[@index='5' and @autopsic='5'] -opus/document/letterText/note/line[@index='9' and @autopsic='9'] -opus/document/letterText/note/ul -opus/document/letterText/nr/del -opus/document/letterText/nr/line[@index='15' and @autopsic='15'] -opus/document/letterText/nr/line[@index='16' and @autopsic='16'] -opus/document/letterText/page[@index='40' and @autopsic='37'] -opus/document/letterText/page[@index='512' and @autopsic='512'] -opus/document/letterText/page[@index='517' and @autopsic='517'] -opus/document/letterText/page[@index='518' and @autopsic='518'] -opus/document/letterText/page[@index='519' and @autopsic='519'] -opus/document/letterText/page[@index='521' and @autopsic='521'] -opus/document/letterText/page[@index='522' and @autopsic='522'] -opus/document/letterText/page[@index='524' and @autopsic='524'] -opus/document/letterText/page[@index='527' and @autopsic='527'] -opus/document/letterText/page[@index='528' and @autopsic='528'] -opus/document/letterText/page[@index='529' and @autopsic='529'] -opus/document/letterText/page[@index='530' and @autopsic='530'] -opus/document/letterText/page[@index='531' and @autopsic='531'] -opus/document/letterText/page[@index='532' and @autopsic='532'] -opus/document/letterText/page[@index='533' and @autopsic='533'] -opus/document/letterText/page[@index='534' and @autopsic='534'] -opus/document/letterText/page[@index='537' and @autopsic='537'] -opus/document/letterText/page[@index='538' and @autopsic='538'] -opus/document/letterText/page[@index='539' and @autopsic='539'] -opus/document/letterText/page[@index='540' and @autopsic='540'] -opus/document/letterText/page[@index='541' and @autopsic='541'] -opus/document/letterText/page[@index='542' and @autopsic='542'] -opus/document/letterText/page[@index='544' and @autopsic='544'] -opus/document/letterText/page[@index='545' and @autopsic='545'] -opus/document/letterText/page[@index='XIX' and @autopsic='XIX'] -opus/document/letterText/page[@index='XX'] -opus/document/letterText/page[@index='XXI'] -opus/document/letterText/page[@index='XXII'] -opus/document/letterText/page[@index='XXIII'] -opus/document/letterText/page[@index='XXIV'] -opus/document/letterText/page[@index='XXIX'] -opus/document/letterText/page[@index='XXV'] -opus/document/letterText/page[@index='XXVI'] -opus/document/letterText/page[@index='XXVI' and @autopsic='XXVI'] -opus/document/letterText/page[@index='XXVII'] -opus/document/letterText/page[@index='XXVIII'] -opus/document/letterText/page[@index='XXX'] -opus/document/letterText/page[@index='XXXI'] -opus/document/letterText/page[@index='XXXI' and @autopsic='XXXI'] -opus/document/letterText/page[@index='XXXII'] -opus/document/letterText/ps/added -opus/document/letterText/ps/align/aq -opus/document/letterText/ps/align[@pos='center'] -opus/document/letterText/ps/aq/line[@index='2' and @autopsic='2'] -opus/document/letterText/ps/aq/super -opus/document/letterText/ps/del/line[@index='23' and @autopsic='23'] -opus/document/letterText/ps/edit/dul -opus/document/letterText/ps/edit/dul/aq -opus/document/letterText/ps/edit[@ref='1116'] -opus/document/letterText/ps/edit[@ref='1117'] -opus/document/letterText/ps/edit[@ref='1118'] -opus/document/letterText/ps/edit[@ref='1119'] -opus/document/letterText/ps/edit[@ref='1825'] -opus/document/letterText/ps/edit[@ref='2715'] -opus/document/letterText/ps/edit[@ref='2716'] -opus/document/letterText/ps/edit[@ref='4059'] -opus/document/letterText/ps/edit[@ref='5173'] -opus/document/letterText/ps/edit[@ref='6431'] -opus/document/letterText/ps/edit[@ref='6689'] -opus/document/letterText/ps/edit[@ref='6800'] -opus/document/letterText/ps/line[@index='14' and @autopsic='14' and @tab='1'] -opus/document/letterText/ps/line[@index='15' and @autopsic='15' and @tab='1'] -opus/document/letterText/ps/line[@index='16' and @autopsic='16' and @tab='1'] -opus/document/letterText/ps/line[@index='17' and @autopsic='17' and @type='break' and @tab='1'] -opus/document/letterText/ps/line[@index='1' and @autopsic='1' and @tab='1'] -opus/document/letterText/ps/line[@index='20' and @autopsic='20'] -opus/document/letterText/ps/line[@index='20' and @autopsic='20' and @tab='1'] -opus/document/letterText/ps/line[@index='25' and @autopsic='25' and @type='break' and @tab='1'] -opus/document/letterText/ps/line[@index='27' and @autopsic='27' and @type='break' and @tab='1'] -opus/document/letterText/ps/line[@index='29' and @autopsic='29' and @type='break' and @tab='1'] -opus/document/letterText/ps/line[@index='2' and @autopsic='2' and @tab='1'] -opus/document/letterText/ps/line[@index='31' and @autopsic='32'] -opus/document/letterText/ps/line[@index='32' and @autopsic='33'] -opus/document/letterText/ps/line[@index='35' and @autopsic='35' and @tab='1'] -opus/document/letterText/ps/line[@index='36' and @autopsic='36' and @tab='1'] -opus/document/letterText/ps/line[@index='3' and @autopsic='3' and @type='break' and @tab='1'] -opus/document/letterText/ps/line[@index='4' and @autopsic='4' and @tab='1'] -opus/document/letterText/ps/line[@index='5' and @autopsic='5' and @type='break' and @tab='1'] -opus/document/letterText/ps/line[@index='9' and @autopsic='9' and @type='break' and @tab='1'] -opus/document/letterText/ps/page[@index='15' and @autopsic='15'] -opus/document/letterText/ps/page[@index='164' and @autopsic='164'] -opus/document/letterText/ps/page[@index='169' and @autopsic='169'] -opus/document/letterText/ps/page[@index='297' and @autopsic='297'] -opus/document/letterText/ps/page[@index='52' and @autopsic='52'] -opus/document/letterText/ps/ps -opus/document/letterText/ps/ps/del -opus/document/letterText/ps/ps/line[@index='26' and @autopsic='26' and @tab='1'] -opus/document/letterText/ps/ps/line[@index='27' and @autopsic='27'] -opus/document/letterText/ps/ps/line[@index='28' and @autopsic='28'] -opus/document/letterText/ps/ps/line[@index='29' and @autopsic='29'] -opus/document/letterText/ps/ps/line[@index='30' and @autopsic='30' and @tab='1'] -opus/document/letterText/ps/ps/line[@index='31' and @autopsic='31'] -opus/document/letterText/ps/ps/line[@index='32' and @autopsic='32'] -opus/document/letterText/ps/ps/line[@index='33' and @autopsic='33'] -opus/document/letterText/ps/ps/line[@index='34' and @autopsic='34'] -opus/document/letterText/ps/ps/line[@index='35' and @autopsic='35' and @tab='1'] -opus/document/letterText/ps/ul/aq -opus/document/letterText/sig/align[@pos='center'] -opus/document/letterText/sig/align/ul -opus/document/letterText/sig/datum -opus/document/letterText/sig/edit[@ref='3803'] -opus/document/letterText/sig/edit[@ref='4247'] -opus/document/letterText/sig/edit[@ref='4359'] -opus/document/letterText/sig/line[@index='11' and @autopsic='11'] -opus/document/letterText/sig/line[@index='16' and @autopsic='16'] -opus/document/letterText/sig/line[@index='24' and @autopsic='24'] -opus/document/letterText/sig/line[@index='25' and @autopsic='25'] -opus/document/letterText/sig/line[@index='26' and @autopsic='26'] -opus/document/letterText/sig/line[@index='27' and @autopsic='27' and @tab='5'] -opus/document/letterText/sig/line[@index='28' and @autopsic='28'] -opus/document/letterText/sig/line[@index='28' and @autopsic='28' and @tab='6'] -opus/document/letterText/sig/line[@index='29' and @autopsic='29'] -opus/document/letterText/sig/line[@index='29' and @autopsic='29' and @tab='7'] -opus/document/letterText/sig/line[@index='32' and @autopsic='32'] -opus/document/letterText/sig/line[@index='33' and @autopsic='33'] -opus/document/letterText/sig/line[@index='6' and @autopsic='6'] -opus/document/letterText/sig/line[@index='8' and @autopsic='8'] -opus/document/letterText/sig/line[@index='9' and @autopsic='9'] -opus/document/letterText/super/del -opus/document/letterText/tab/ful -opus/document/letterText/tabs/align/aq -opus/document/letterText/tabs/align/edit/aq -opus/document/letterText/tabs/align/edit[@ref='5886'] -opus/document/letterText/tabs/aq/ul -opus/document/letterText/tabs/edit/line[@index='10' and @autopsic='10'] -opus/document/letterText/tabs/edit/line[@index='11' and @autopsic='11'] -opus/document/letterText/tabs/edit/line[@index='12' and @autopsic='12'] -opus/document/letterText/tabs/edit/line[@index='13' and @autopsic='13'] -opus/document/letterText/tabs/edit/line[@index='14' and @autopsic='14'] -opus/document/letterText/tabs/edit/line[@index='15' and @autopsic='15'] -opus/document/letterText/tabs/edit/line[@index='16' and @autopsic='16'] -opus/document/letterText/tabs/edit/line[@index='17' and @autopsic='17'] -opus/document/letterText/tabs/edit/line[@index='18' and @autopsic='18'] -opus/document/letterText/tabs/edit/line[@index='19' and @autopsic='19'] -opus/document/letterText/tabs/edit/line[@index='1' and @autopsic='1'] -opus/document/letterText/tabs/edit/line[@index='20' and @autopsic='20'] -opus/document/letterText/tabs/edit/line[@index='21' and @autopsic='21'] -opus/document/letterText/tabs/edit/line[@index='22' and @autopsic='22'] -opus/document/letterText/tabs/edit/line[@index='23' and @autopsic='23'] -opus/document/letterText/tabs/edit/line[@index='24' and @autopsic='24'] -opus/document/letterText/tabs/edit/line[@index='25' and @autopsic='25'] -opus/document/letterText/tabs/edit/line[@index='26' and @autopsic='26'] -opus/document/letterText/tabs/edit/line[@index='27' and @autopsic='27'] -opus/document/letterText/tabs/edit/line[@index='28' and @autopsic='28'] -opus/document/letterText/tabs/edit/line[@index='29' and @autopsic='29'] -opus/document/letterText/tabs/edit/line[@index='2' and @autopsic='2'] -opus/document/letterText/tabs/edit/line[@index='30' and @autopsic='31'] -opus/document/letterText/tabs/edit/line[@index='31' and @autopsic='32'] -opus/document/letterText/tabs/edit/line[@index='32' and @autopsic='33'] -opus/document/letterText/tabs/edit/line[@index='33' and @autopsic='34'] -opus/document/letterText/tabs/edit/line[@index='34' and @autopsic='35'] -opus/document/letterText/tabs/edit/line[@index='35' and @autopsic='36'] -opus/document/letterText/tabs/edit/line[@index='36' and @autopsic='37'] -opus/document/letterText/tabs/edit/line[@index='3' and @autopsic='3'] -opus/document/letterText/tabs/edit/line[@index='4' and @autopsic='4'] -opus/document/letterText/tabs/edit/line[@index='5' and @autopsic='5'] -opus/document/letterText/tabs/edit/line[@index='6' and @autopsic='6'] -opus/document/letterText/tabs/edit/line[@index='7' and @autopsic='7'] -opus/document/letterText/tabs/edit/line[@index='8' and @autopsic='8'] -opus/document/letterText/tabs/edit/line[@index='9' and @autopsic='9'] -opus/document/letterText/tabs/edit/page[@index='302' and @autopsic='302'] -opus/document/letterText/tabs/edit[@ref='6709'] -opus/document/letterText/tabs/edit/tab/del -opus/document/letterText/tabs/edit/tab/dul -opus/document/letterText/tabs/edit/tab/edit[@ref='6710'] -opus/document/letterText/tabs/edit/tab/edit[@ref='6711'] -opus/document/letterText/tabs/edit/tab/edit/tul -opus/document/letterText/tabs/edit/tab/ul -opus/document/letterText/tabs/line[@index='10' and @autopsic='10' and @tab='1'] -opus/document/letterText/tabs/line[@index='10' and @autopsic='11'] -opus/document/letterText/tabs/line[@index='11' and @autopsic='11' and @tab='1'] -opus/document/letterText/tabs/line[@index='11' and @autopsic='12'] -opus/document/letterText/tabs/line[@index='12' and @autopsic='13'] -opus/document/letterText/tabs/line[@index='13' and @autopsic='13' and @tab='3'] -opus/document/letterText/tabs/line[@index='13' and @autopsic='14'] -opus/document/letterText/tabs/line[@index='14' and @autopsic='14' and @tab='2'] -opus/document/letterText/tabs/line[@index='14' and @autopsic='14' and @tab='4'] -opus/document/letterText/tabs/line[@index='14' and @autopsic='15'] -opus/document/letterText/tabs/line[@index='15' and @autopsic='15' and @tab='2'] -opus/document/letterText/tabs/line[@index='15' and @autopsic='16'] -opus/document/letterText/tabs/line[@index='16' and @autopsic='16' and @tab='1'] -opus/document/letterText/tabs/line[@index='16' and @autopsic='16' and @tab='2'] -opus/document/letterText/tabs/line[@index='16' and @autopsic='16' and @tab='3'] -opus/document/letterText/tabs/line[@index='16' and @autopsic='17'] -opus/document/letterText/tabs/line[@index='17' and @autopsic='18'] -opus/document/letterText/tabs/line[@index='18' and @autopsic='20'] -opus/document/letterText/tabs/line[@index='19' and @autopsic='19' and @tab='2'] -opus/document/letterText/tabs/line[@index='19' and @autopsic='21'] -opus/document/letterText/tabs/line[@index='1' and @autopsic='1' and @tab='1'] -opus/document/letterText/tabs/line[@index='20' and @autopsic='20' and @tab='2'] -opus/document/letterText/tabs/line[@index='20' and @autopsic='22'] -opus/document/letterText/tabs/line[@index='21' and @autopsic='20'] -opus/document/letterText/tabs/line[@index='21' and @autopsic='21' and @tab='2'] -opus/document/letterText/tabs/line[@index='21' and @autopsic='23'] -opus/document/letterText/tabs/line[@index='22' and @autopsic='22' and @tab='2'] -opus/document/letterText/tabs/line[@index='22' and @autopsic='24'] -opus/document/letterText/tabs/line[@index='23' and @autopsic='23' and @tab='1'] -opus/document/letterText/tabs/line[@index='23' and @autopsic='24'] -opus/document/letterText/tabs/line[@index='23' and @autopsic='25'] -opus/document/letterText/tabs/line[@index='24' and @autopsic='24' and @tab='2'] -opus/document/letterText/tabs/line[@index='24' and @autopsic='25'] -opus/document/letterText/tabs/line[@index='24' and @autopsic='26'] -opus/document/letterText/tabs/line[@index='25' and @autopsic='26'] -opus/document/letterText/tabs/line[@index='25' and @autopsic='28'] -opus/document/letterText/tabs/line[@index='26' and @autopsic='25'] -opus/document/letterText/tabs/line[@index='26' and @autopsic='26' and @tab='5'] -opus/document/letterText/tabs/line[@index='26' and @autopsic='29'] -opus/document/letterText/tabs/line[@index='27' and @autopsic='26'] -opus/document/letterText/tabs/line[@index='27' and @autopsic='27' and @tab='2'] -opus/document/letterText/tabs/line[@index='27' and @autopsic='30'] -opus/document/letterText/tabs/line[@index='28' and @autopsic='27'] -opus/document/letterText/tabs/line[@index='28' and @autopsic='28' and @tab='3'] -opus/document/letterText/tabs/line[@index='28' and @autopsic='31'] -opus/document/letterText/tabs/line[@index='29' and @autopsic='28'] -opus/document/letterText/tabs/line[@index='29' and @autopsic='32' and @tab='1'] -opus/document/letterText/tabs/line[@index='2' and @autopsic='2' and @tab='1'] -opus/document/letterText/tabs/line[@index='30' and @autopsic='29'] -opus/document/letterText/tabs/line[@index='30' and @autopsic='33'] -opus/document/letterText/tabs/line[@index='31' and @autopsic='34'] -opus/document/letterText/tabs/line[@index='32' and @autopsic='31'] -opus/document/letterText/tabs/line[@index='32' and @autopsic='31' and @tab='1'] -opus/document/letterText/tabs/line[@index='32' and @autopsic='32' and @tab='1'] -opus/document/letterText/tabs/line[@index='32' and @autopsic='32' and @tab='4'] -opus/document/letterText/tabs/line[@index='32' and @autopsic='35'] -opus/document/letterText/tabs/line[@index='33' and @autopsic='33' and @tab='2'] -opus/document/letterText/tabs/line[@index='33' and @autopsic='33' and @tab='4'] -opus/document/letterText/tabs/line[@index='33' and @autopsic='36'] -opus/document/letterText/tabs/line[@index='34' and @autopsic='34' and @tab='4'] -opus/document/letterText/tabs/line[@index='34' and @autopsic='36'] -opus/document/letterText/tabs/line[@index='35' and @autopsic='36'] -opus/document/letterText/tabs/line[@index='36' and @autopsic='36' and @tab='1'] -opus/document/letterText/tabs/line[@index='37' and @autopsic='37'] -opus/document/letterText/tabs/line[@index='38' and @autopsic='36'] -opus/document/letterText/tabs/line[@index='39' and @autopsic='36'] -opus/document/letterText/tabs/line[@index='3' and @autopsic='3' and @tab='1'] -opus/document/letterText/tabs/line[@index='3' and @autopsic='3' and @tab='2'] -opus/document/letterText/tabs/line[@index='40' and @autopsic='36'] -opus/document/letterText/tabs/line[@index='41' and @autopsic='36'] -opus/document/letterText/tabs/line[@index='42' and @autopsic='36'] -opus/document/letterText/tabs/line[@index='43' and @autopsic='36'] -opus/document/letterText/tabs/line[@index='44' and @autopsic='36'] -opus/document/letterText/tabs/line[@index='45' and @autopsic='36'] -opus/document/letterText/tabs/line[@index='46' and @autopsic='36'] -opus/document/letterText/tabs/line[@index='47' and @autopsic='36'] -opus/document/letterText/tabs/line[@index='48' and @autopsic='36'] -opus/document/letterText/tabs/line[@index='49' and @autopsic='36'] -opus/document/letterText/tabs/line[@index='4' and @autopsic='4' and @tab='1'] -opus/document/letterText/tabs/line[@index='4' and @autopsic='4' and @tab='2'] -opus/document/letterText/tabs/line[@index='50' and @autopsic='36'] -opus/document/letterText/tabs/line[@index='51' and @autopsic='36'] -opus/document/letterText/tabs/line[@index='6' and @autopsic='6' and @tab='1'] -opus/document/letterText/tabs/line[@index='6' and @autopsic='6' and @tab='2'] -opus/document/letterText/tabs/line[@index='6' and @autopsic='7'] -opus/document/letterText/tabs/line[@index='7' and @autopsic='8'] -opus/document/letterText/tabs/line[@index='8' and @autopsic='8' and @tab='2'] -opus/document/letterText/tabs/line[@index='9' and @autopsic='9' and @tab='1'] -opus/document/letterText/tabs/line[@type='empty'] -opus/document/letterText/tabs/page[@index='301' and @autopsic='301'] -opus/document/letterText/tabs/page[@index='441' and @autopsic='441'] -opus/document/letterText/tabs/page[@index='442' and @autopsic='442'] -opus/document/letterText/tabs/page[@index='444' and @autopsic='444'] -opus/document/letterText/tabs/page[@index='461' and @autopsic='461'] -opus/document/letterText/tabs/page[@index='465' and @autopsic='465'] -opus/document/letterText/tabs/tab/aq/added -opus/document/letterText/tabs/tab/aq/super -opus/document/letterText/tabs/tab/aq/ul -opus/document/letterText/tabs/tab/datum/aq -opus/document/letterText/tabs/tab/edit/aq -opus/document/letterText/tabs/tab/edit[@ref='2329'] -opus/document/letterText/tabs/tab/edit[@ref='6706'] -opus/document/letterText/tabs/tab/edit[@ref='6707'] -opus/document/letterText/tabs/tab/edit[@ref='6708'] -opus/document/letterText/tabs/tab/ful/aq -opus/document/letterText/tabs/tab/ful/del -opus/document/letterText/tabs/tab/ful/del/nr -opus/document/letterText/tabs/tab/nr -opus/document/letterText/tabs/tab/nr/aq -opus/document/letterText/tabs/tab/tab[@value='1-4'] -opus/document/letterText/tabs/tab/up/edit/aq -opus/document/letterText/tabs/tab/up/edit[@ref='5827'] -opus/document/letterText/tabs/tab[@value='0-6'] -opus/document/letterText/tabs/tab[@value='2-10'] -opus/document/letterText/tabs/tab[@value='7-12'] -opus/document/letterText/tabs/tab[@value='7-8'] -opus/document/letterText/tab/ul -opus/document/letterText/tab[@value='6024'] -opus/document/letterText/tul/line[@index='4' and @autopsic='4'] -opus/document/letterText/tul/line[@index='5' and @autopsic='5'] -opus/document/letterText/ul/aq/added -opus/document/letterText/ul/aq/line[@index='16' and @autopsic='16'] -opus/document/letterText/ul/aq/line[@index='20' and @autopsic='20'] -opus/document/letterText/ul/aq/line[@index='33' and @autopsic='33'] -opus/document/letterText/ul/aq/line[@index='37' and @autopsic='37'] -opus/document/letterText/ul/aq/line[@index='6' and @autopsic='6'] -opus/document/letterText/ul/edit/added -opus/document/letterText/ul/edit/del -opus/document/letterText/ul/edit[@ref='1453'] -opus/document/letterText/ul/edit[@ref='1496'] -opus/document/letterText/ul/edit[@ref='1807'] -opus/document/letterText/ul/edit[@ref='1855'] -opus/document/letterText/ul/edit[@ref='2319'] -opus/document/letterText/ul/edit[@ref='2547'] -opus/document/letterText/ul/edit[@ref='2967'] -opus/document/letterText/ul/edit[@ref='3096'] -opus/document/letterText/ul/edit[@ref='3099'] -opus/document/letterText/ul/edit[@ref='3399'] -opus/document/letterText/ul/edit[@ref='3586'] -opus/document/letterText/ul/edit[@ref='375'] -opus/document/letterText/ul/edit[@ref='3950'] -opus/document/letterText/ul/edit[@ref='4148'] -opus/document/letterText/ul/edit[@ref='4259'] -opus/document/letterText/ul/edit[@ref='4261'] -opus/document/letterText/ul/edit[@ref='4325'] -opus/document/letterText/ul/edit[@ref='4826'] -opus/document/letterText/ul/edit[@ref='4897'] -opus/document/letterText/ul/edit[@ref='6031'] -opus/document/letterText/ul/edit[@ref='611'] -opus/document/letterText/ul/edit[@ref='6264'] -opus/document/letterText/ul/edit/ul -opus/document/letterText/ul/line[@index='13' and @autopsic='13' and @tab='2'] -opus/document/letterText/ul/line[@index='16' and @autopsic='16' and @tab='3'] -opus/document/letterText/ul/line[@index='17' and @autopsic='17' and @tab='1'] -opus/document/letterText/ul/line[@index='17' and @autopsic='17' and @tab='4'] -opus/document/letterText/ul/line[@index='17' and @autopsic='18'] -opus/document/letterText/ul/line[@index='18' and @autopsic='18' and @tab='1'] -opus/document/letterText/ul/line[@index='19' and @autopsic='18'] -opus/document/letterText/ul/line[@index='23' and @autopsic='15'] -opus/document/letterText/ul/line[@index='23' and @autopsic='17'] -opus/document/letterText/ul/line[@index='24' and @autopsic='22'] -opus/document/letterText/ul/line[@index='25' and @autopsic='24'] -opus/document/letterText/ul/line[@index='25' and @autopsic='25' and @tab='1'] -opus/document/letterText/ul/line[@index='26' and @autopsic='25'] -opus/document/letterText/ul/line[@index='33' and @autopsic='33' and @tab='1'] -opus/document/letterText/ul/line[@index='36' and @autopsic='33'] -opus/document/letterText/ul/line[@index='3' and @autopsic='3' and @tab='1'] -opus/document/letterText/ul/page[@index='113' and @autopsic='113'] -opus/document/letterText/ul/page[@index='262' and @autopsic='262'] -opus/document/letterText/ul/page[@index='340' and @autopsic='340'] -opus/document/letterText/ul/super -opus/document/letterText/up -opus/edits -opus/edits/editreason/aq/del -opus/edits/editreason/aq/nr -opus/edits/editreason/aq/ul -opus/edits/editreason/del/added -opus/edits/editreason[@index='1'] -opus/edits/editreason[@index='10'] -opus/edits/editreason[@index='100'] -opus/edits/editreason[@index='1000'] -opus/edits/editreason[@index='1001'] -opus/edits/editreason[@index='1002'] -opus/edits/editreason[@index='1003'] -opus/edits/editreason[@index='1004'] -opus/edits/editreason[@index='1005'] -opus/edits/editreason[@index='1006'] -opus/edits/editreason[@index='1007'] -opus/edits/editreason[@index='1008'] -opus/edits/editreason[@index='1009'] -opus/edits/editreason[@index='101'] -opus/edits/editreason[@index='1010'] -opus/edits/editreason[@index='1011'] -opus/edits/editreason[@index='1012'] -opus/edits/editreason[@index='1013'] -opus/edits/editreason[@index='1014'] -opus/edits/editreason[@index='1015'] -opus/edits/editreason[@index='1016'] -opus/edits/editreason[@index='1017'] -opus/edits/editreason[@index='1018'] -opus/edits/editreason[@index='1019'] -opus/edits/editreason[@index='102'] -opus/edits/editreason[@index='1020'] -opus/edits/editreason[@index='1021'] -opus/edits/editreason[@index='1022'] -opus/edits/editreason[@index='1023'] -opus/edits/editreason[@index='1025'] -opus/edits/editreason[@index='1026'] -opus/edits/editreason[@index='1027'] -opus/edits/editreason[@index='1028'] -opus/edits/editreason[@index='1029'] -opus/edits/editreason[@index='103'] -opus/edits/editreason[@index='1030'] -opus/edits/editreason[@index='1031'] -opus/edits/editreason[@index='1032'] -opus/edits/editreason[@index='1033'] -opus/edits/editreason[@index='1034'] -opus/edits/editreason[@index='1035'] -opus/edits/editreason[@index='1036'] -opus/edits/editreason[@index='1037'] -opus/edits/editreason[@index='1038'] -opus/edits/editreason[@index='1039'] -opus/edits/editreason[@index='104'] -opus/edits/editreason[@index='1040'] -opus/edits/editreason[@index='1045'] -opus/edits/editreason[@index='1046'] -opus/edits/editreason[@index='1047'] -opus/edits/editreason[@index='1048'] -opus/edits/editreason[@index='1049'] -opus/edits/editreason[@index='105'] -opus/edits/editreason[@index='1050'] -opus/edits/editreason[@index='1051'] -opus/edits/editreason[@index='1052'] -opus/edits/editreason[@index='1053'] -opus/edits/editreason[@index='1054'] -opus/edits/editreason[@index='1055'] -opus/edits/editreason[@index='1056'] -opus/edits/editreason[@index='1057'] -opus/edits/editreason[@index='1058'] -opus/edits/editreason[@index='1059'] -opus/edits/editreason[@index='106'] -opus/edits/editreason[@index='1060'] -opus/edits/editreason[@index='1061'] -opus/edits/editreason[@index='1062'] -opus/edits/editreason[@index='1063'] -opus/edits/editreason[@index='1064'] -opus/edits/editreason[@index='1065'] -opus/edits/editreason[@index='1066'] -opus/edits/editreason[@index='1067'] -opus/edits/editreason[@index='1068'] -opus/edits/editreason[@index='1069'] -opus/edits/editreason[@index='107'] -opus/edits/editreason[@index='1070'] -opus/edits/editreason[@index='1071'] -opus/edits/editreason[@index='1072'] -opus/edits/editreason[@index='1073'] -opus/edits/editreason[@index='1074'] -opus/edits/editreason[@index='1075'] -opus/edits/editreason[@index='1076'] -opus/edits/editreason[@index='1077'] -opus/edits/editreason[@index='1078'] -opus/edits/editreason[@index='1079'] -opus/edits/editreason[@index='108'] -opus/edits/editreason[@index='1080'] -opus/edits/editreason[@index='1081'] -opus/edits/editreason[@index='1082'] -opus/edits/editreason[@index='1083'] -opus/edits/editreason[@index='1084'] -opus/edits/editreason[@index='1085'] -opus/edits/editreason[@index='1086'] -opus/edits/editreason[@index='1087'] -opus/edits/editreason[@index='1088'] -opus/edits/editreason[@index='1089'] -opus/edits/editreason[@index='109'] -opus/edits/editreason[@index='1090'] -opus/edits/editreason[@index='1091'] -opus/edits/editreason[@index='1092'] -opus/edits/editreason[@index='1093'] -opus/edits/editreason[@index='1094'] -opus/edits/editreason[@index='1095'] -opus/edits/editreason[@index='1096'] -opus/edits/editreason[@index='1097'] -opus/edits/editreason[@index='1098'] -opus/edits/editreason[@index='1099'] -opus/edits/editreason[@index='110'] -opus/edits/editreason[@index='1100'] -opus/edits/editreason[@index='1101'] -opus/edits/editreason[@index='1102'] -opus/edits/editreason[@index='1103'] -opus/edits/editreason[@index='1104'] -opus/edits/editreason[@index='1105'] -opus/edits/editreason[@index='1106'] -opus/edits/editreason[@index='1107'] -opus/edits/editreason[@index='1108'] -opus/edits/editreason[@index='1109'] -opus/edits/editreason[@index='111'] -opus/edits/editreason[@index='1110'] -opus/edits/editreason[@index='1111'] -opus/edits/editreason[@index='1112'] -opus/edits/editreason[@index='1113'] -opus/edits/editreason[@index='1114'] -opus/edits/editreason[@index='1115'] -opus/edits/editreason[@index='1116'] -opus/edits/editreason[@index='1117'] -opus/edits/editreason[@index='1118'] -opus/edits/editreason[@index='1119'] -opus/edits/editreason[@index='112'] -opus/edits/editreason[@index='1120'] -opus/edits/editreason[@index='1121'] -opus/edits/editreason[@index='1122'] -opus/edits/editreason[@index='1123'] -opus/edits/editreason[@index='1124'] -opus/edits/editreason[@index='1125'] -opus/edits/editreason[@index='1126'] -opus/edits/editreason[@index='1127'] -opus/edits/editreason[@index='1128'] -opus/edits/editreason[@index='1129'] -opus/edits/editreason[@index='113'] -opus/edits/editreason[@index='1130'] -opus/edits/editreason[@index='1131'] -opus/edits/editreason[@index='1132'] -opus/edits/editreason[@index='1133'] -opus/edits/editreason[@index='1134'] -opus/edits/editreason[@index='1135'] -opus/edits/editreason[@index='1136'] -opus/edits/editreason[@index='1137'] -opus/edits/editreason[@index='1138'] -opus/edits/editreason[@index='1139'] -opus/edits/editreason[@index='114'] -opus/edits/editreason[@index='1140'] -opus/edits/editreason[@index='1141'] -opus/edits/editreason[@index='1142'] -opus/edits/editreason[@index='1143'] -opus/edits/editreason[@index='1144'] -opus/edits/editreason[@index='1145'] -opus/edits/editreason[@index='1146'] -opus/edits/editreason[@index='1147'] -opus/edits/editreason[@index='1148'] -opus/edits/editreason[@index='1149'] -opus/edits/editreason[@index='115'] -opus/edits/editreason[@index='1150'] -opus/edits/editreason[@index='1151'] -opus/edits/editreason[@index='1152'] -opus/edits/editreason[@index='1153'] -opus/edits/editreason[@index='1154'] -opus/edits/editreason[@index='1155'] -opus/edits/editreason[@index='1156'] -opus/edits/editreason[@index='1157'] -opus/edits/editreason[@index='1158'] -opus/edits/editreason[@index='1159'] -opus/edits/editreason[@index='116'] -opus/edits/editreason[@index='1160'] -opus/edits/editreason[@index='1161'] -opus/edits/editreason[@index='1162'] -opus/edits/editreason[@index='1163'] -opus/edits/editreason[@index='1164'] -opus/edits/editreason[@index='1165'] -opus/edits/editreason[@index='1166'] -opus/edits/editreason[@index='1167'] -opus/edits/editreason[@index='1168'] -opus/edits/editreason[@index='1169'] -opus/edits/editreason[@index='117'] -opus/edits/editreason[@index='1170'] -opus/edits/editreason[@index='1171'] -opus/edits/editreason[@index='1172'] -opus/edits/editreason[@index='1173'] -opus/edits/editreason[@index='1174'] -opus/edits/editreason[@index='1175'] -opus/edits/editreason[@index='1176'] -opus/edits/editreason[@index='1177'] -opus/edits/editreason[@index='1178'] -opus/edits/editreason[@index='1179'] -opus/edits/editreason[@index='118'] -opus/edits/editreason[@index='1180'] -opus/edits/editreason[@index='1181'] -opus/edits/editreason[@index='1182'] -opus/edits/editreason[@index='1183'] -opus/edits/editreason[@index='1184'] -opus/edits/editreason[@index='1185'] -opus/edits/editreason[@index='1186'] -opus/edits/editreason[@index='1187'] -opus/edits/editreason[@index='1188'] -opus/edits/editreason[@index='1189'] -opus/edits/editreason[@index='119'] -opus/edits/editreason[@index='1190'] -opus/edits/editreason[@index='1191'] -opus/edits/editreason[@index='1192'] -opus/edits/editreason[@index='1194'] -opus/edits/editreason[@index='1195'] -opus/edits/editreason[@index='1196'] -opus/edits/editreason[@index='1197'] -opus/edits/editreason[@index='1198'] -opus/edits/editreason[@index='1199'] -opus/edits/editreason[@index='12'] -opus/edits/editreason[@index='120'] -opus/edits/editreason[@index='1200'] -opus/edits/editreason[@index='1201'] -opus/edits/editreason[@index='1203'] -opus/edits/editreason[@index='1205'] -opus/edits/editreason[@index='1206'] -opus/edits/editreason[@index='1207'] -opus/edits/editreason[@index='1208'] -opus/edits/editreason[@index='1209'] -opus/edits/editreason[@index='121'] -opus/edits/editreason[@index='1210'] -opus/edits/editreason[@index='1211'] -opus/edits/editreason[@index='1212'] -opus/edits/editreason[@index='1213'] -opus/edits/editreason[@index='1214'] -opus/edits/editreason[@index='1215'] -opus/edits/editreason[@index='1216'] -opus/edits/editreason[@index='1217'] -opus/edits/editreason[@index='1218'] -opus/edits/editreason[@index='1219'] -opus/edits/editreason[@index='122'] -opus/edits/editreason[@index='1220'] -opus/edits/editreason[@index='1221'] -opus/edits/editreason[@index='1222'] -opus/edits/editreason[@index='1223'] -opus/edits/editreason[@index='1224'] -opus/edits/editreason[@index='1225'] -opus/edits/editreason[@index='1226'] -opus/edits/editreason[@index='1227'] -opus/edits/editreason[@index='1228'] -opus/edits/editreason[@index='1229'] -opus/edits/editreason[@index='123'] -opus/edits/editreason[@index='1230'] -opus/edits/editreason[@index='1231'] -opus/edits/editreason[@index='1232'] -opus/edits/editreason[@index='1233'] -opus/edits/editreason[@index='1234'] -opus/edits/editreason[@index='1235'] -opus/edits/editreason[@index='1236'] -opus/edits/editreason[@index='1237'] -opus/edits/editreason[@index='1238'] -opus/edits/editreason[@index='1239'] -opus/edits/editreason[@index='124'] -opus/edits/editreason[@index='1240'] -opus/edits/editreason[@index='1241'] -opus/edits/editreason[@index='1242'] -opus/edits/editreason[@index='1243'] -opus/edits/editreason[@index='1244'] -opus/edits/editreason[@index='1245'] -opus/edits/editreason[@index='1246'] -opus/edits/editreason[@index='1247'] -opus/edits/editreason[@index='1248'] -opus/edits/editreason[@index='1249'] -opus/edits/editreason[@index='125'] -opus/edits/editreason[@index='1250'] -opus/edits/editreason[@index='1251'] -opus/edits/editreason[@index='1252'] -opus/edits/editreason[@index='1253'] -opus/edits/editreason[@index='1254'] -opus/edits/editreason[@index='1255'] -opus/edits/editreason[@index='1256'] -opus/edits/editreason[@index='1257'] -opus/edits/editreason[@index='1258'] -opus/edits/editreason[@index='1259'] -opus/edits/editreason[@index='126'] -opus/edits/editreason[@index='1260'] -opus/edits/editreason[@index='1261'] -opus/edits/editreason[@index='1262'] -opus/edits/editreason[@index='1263'] -opus/edits/editreason[@index='1264'] -opus/edits/editreason[@index='1265'] -opus/edits/editreason[@index='1266'] -opus/edits/editreason[@index='1267'] -opus/edits/editreason[@index='1268'] -opus/edits/editreason[@index='1269'] -opus/edits/editreason[@index='127'] -opus/edits/editreason[@index='1270'] -opus/edits/editreason[@index='1271'] -opus/edits/editreason[@index='1272'] -opus/edits/editreason[@index='1273'] -opus/edits/editreason[@index='1274'] -opus/edits/editreason[@index='1275'] -opus/edits/editreason[@index='1276'] -opus/edits/editreason[@index='1277'] -opus/edits/editreason[@index='1278'] -opus/edits/editreason[@index='1279'] -opus/edits/editreason[@index='128'] -opus/edits/editreason[@index='1280'] -opus/edits/editreason[@index='1281'] -opus/edits/editreason[@index='1282'] -opus/edits/editreason[@index='1283'] -opus/edits/editreason[@index='1284'] -opus/edits/editreason[@index='1285'] -opus/edits/editreason[@index='1286'] -opus/edits/editreason[@index='1287'] -opus/edits/editreason[@index='1288'] -opus/edits/editreason[@index='1289'] -opus/edits/editreason[@index='129'] -opus/edits/editreason[@index='1290'] -opus/edits/editreason[@index='1291'] -opus/edits/editreason[@index='1292'] -opus/edits/editreason[@index='1293'] -opus/edits/editreason[@index='1294'] -opus/edits/editreason[@index='1295'] -opus/edits/editreason[@index='1296'] -opus/edits/editreason[@index='1297'] -opus/edits/editreason[@index='1298'] -opus/edits/editreason[@index='1299'] -opus/edits/editreason[@index='130'] -opus/edits/editreason[@index='1300'] -opus/edits/editreason[@index='1301'] -opus/edits/editreason[@index='1302'] -opus/edits/editreason[@index='1303'] -opus/edits/editreason[@index='1304'] -opus/edits/editreason[@index='1305'] -opus/edits/editreason[@index='1306'] -opus/edits/editreason[@index='1307'] -opus/edits/editreason[@index='1308'] -opus/edits/editreason[@index='1309'] -opus/edits/editreason[@index='131'] -opus/edits/editreason[@index='1310'] -opus/edits/editreason[@index='1311'] -opus/edits/editreason[@index='1312'] -opus/edits/editreason[@index='1313'] -opus/edits/editreason[@index='1314'] -opus/edits/editreason[@index='1315'] -opus/edits/editreason[@index='1316'] -opus/edits/editreason[@index='1317'] -opus/edits/editreason[@index='1318'] -opus/edits/editreason[@index='1319'] -opus/edits/editreason[@index='132'] -opus/edits/editreason[@index='1320'] -opus/edits/editreason[@index='1321'] -opus/edits/editreason[@index='1322'] -opus/edits/editreason[@index='1323'] -opus/edits/editreason[@index='1324'] -opus/edits/editreason[@index='1325'] -opus/edits/editreason[@index='1327'] -opus/edits/editreason[@index='1328'] -opus/edits/editreason[@index='1329'] -opus/edits/editreason[@index='133'] -opus/edits/editreason[@index='1330'] -opus/edits/editreason[@index='1332'] -opus/edits/editreason[@index='1333'] -opus/edits/editreason[@index='1334'] -opus/edits/editreason[@index='1335'] -opus/edits/editreason[@index='1336'] -opus/edits/editreason[@index='1338'] -opus/edits/editreason[@index='1339'] -opus/edits/editreason[@index='134'] -opus/edits/editreason[@index='1340'] -opus/edits/editreason[@index='1341'] -opus/edits/editreason[@index='1342'] -opus/edits/editreason[@index='1343'] -opus/edits/editreason[@index='1344'] -opus/edits/editreason[@index='1345'] -opus/edits/editreason[@index='1346'] -opus/edits/editreason[@index='1347'] -opus/edits/editreason[@index='1348'] -opus/edits/editreason[@index='1349'] -opus/edits/editreason[@index='135'] -opus/edits/editreason[@index='1350'] -opus/edits/editreason[@index='1352'] -opus/edits/editreason[@index='1353'] -opus/edits/editreason[@index='1354'] -opus/edits/editreason[@index='1355'] -opus/edits/editreason[@index='1356'] -opus/edits/editreason[@index='1357'] -opus/edits/editreason[@index='1358'] -opus/edits/editreason[@index='1359'] -opus/edits/editreason[@index='136'] -opus/edits/editreason[@index='1360'] -opus/edits/editreason[@index='1361'] -opus/edits/editreason[@index='1362'] -opus/edits/editreason[@index='1363'] -opus/edits/editreason[@index='1364'] -opus/edits/editreason[@index='1365'] -opus/edits/editreason[@index='1366'] -opus/edits/editreason[@index='1367'] -opus/edits/editreason[@index='1368'] -opus/edits/editreason[@index='1369'] -opus/edits/editreason[@index='137'] -opus/edits/editreason[@index='1370'] -opus/edits/editreason[@index='1371'] -opus/edits/editreason[@index='1372'] -opus/edits/editreason[@index='1373'] -opus/edits/editreason[@index='1374'] -opus/edits/editreason[@index='1375'] -opus/edits/editreason[@index='1376'] -opus/edits/editreason[@index='1377'] -opus/edits/editreason[@index='1378'] -opus/edits/editreason[@index='1379'] -opus/edits/editreason[@index='138'] -opus/edits/editreason[@index='1380'] -opus/edits/editreason[@index='1381'] -opus/edits/editreason[@index='1382'] -opus/edits/editreason[@index='1383'] -opus/edits/editreason[@index='1384'] -opus/edits/editreason[@index='1385'] -opus/edits/editreason[@index='1386'] -opus/edits/editreason[@index='1387'] -opus/edits/editreason[@index='139'] -opus/edits/editreason[@index='1391'] -opus/edits/editreason[@index='1392'] -opus/edits/editreason[@index='1393'] -opus/edits/editreason[@index='1394'] -opus/edits/editreason[@index='1395'] -opus/edits/editreason[@index='1396'] -opus/edits/editreason[@index='1397'] -opus/edits/editreason[@index='1398'] -opus/edits/editreason[@index='1399'] -opus/edits/editreason[@index='14'] -opus/edits/editreason[@index='140'] -opus/edits/editreason[@index='1400'] -opus/edits/editreason[@index='1401'] -opus/edits/editreason[@index='1402'] -opus/edits/editreason[@index='1403'] -opus/edits/editreason[@index='1404'] -opus/edits/editreason[@index='1405'] -opus/edits/editreason[@index='1406'] -opus/edits/editreason[@index='1407'] -opus/edits/editreason[@index='1408'] -opus/edits/editreason[@index='1409'] -opus/edits/editreason[@index='141'] -opus/edits/editreason[@index='1410'] -opus/edits/editreason[@index='1411'] -opus/edits/editreason[@index='1412'] -opus/edits/editreason[@index='1413'] -opus/edits/editreason[@index='1414'] -opus/edits/editreason[@index='1415'] -opus/edits/editreason[@index='1416'] -opus/edits/editreason[@index='1417'] -opus/edits/editreason[@index='1418'] -opus/edits/editreason[@index='1419'] -opus/edits/editreason[@index='142'] -opus/edits/editreason[@index='1420'] -opus/edits/editreason[@index='1421'] -opus/edits/editreason[@index='1422'] -opus/edits/editreason[@index='1424'] -opus/edits/editreason[@index='1425'] -opus/edits/editreason[@index='1426'] -opus/edits/editreason[@index='1427'] -opus/edits/editreason[@index='1428'] -opus/edits/editreason[@index='1429'] -opus/edits/editreason[@index='143'] -opus/edits/editreason[@index='1430'] -opus/edits/editreason[@index='1431'] -opus/edits/editreason[@index='1432'] -opus/edits/editreason[@index='1433'] -opus/edits/editreason[@index='1434'] -opus/edits/editreason[@index='1435'] -opus/edits/editreason[@index='1436'] -opus/edits/editreason[@index='1437'] -opus/edits/editreason[@index='1438'] -opus/edits/editreason[@index='1439'] -opus/edits/editreason[@index='144'] -opus/edits/editreason[@index='1440'] -opus/edits/editreason[@index='1441'] -opus/edits/editreason[@index='1442'] -opus/edits/editreason[@index='1443'] -opus/edits/editreason[@index='1444'] -opus/edits/editreason[@index='1445'] -opus/edits/editreason[@index='1446'] -opus/edits/editreason[@index='1447'] -opus/edits/editreason[@index='1448'] -opus/edits/editreason[@index='1449'] -opus/edits/editreason[@index='145'] -opus/edits/editreason[@index='1450'] -opus/edits/editreason[@index='1451'] -opus/edits/editreason[@index='1452'] -opus/edits/editreason[@index='1453'] -opus/edits/editreason[@index='1454'] -opus/edits/editreason[@index='1455'] -opus/edits/editreason[@index='1456'] -opus/edits/editreason[@index='1457'] -opus/edits/editreason[@index='1458'] -opus/edits/editreason[@index='1459'] -opus/edits/editreason[@index='146'] -opus/edits/editreason[@index='1460'] -opus/edits/editreason[@index='1461'] -opus/edits/editreason[@index='1462'] -opus/edits/editreason[@index='1463'] -opus/edits/editreason[@index='1464'] -opus/edits/editreason[@index='1465'] -opus/edits/editreason[@index='1466'] -opus/edits/editreason[@index='1467'] -opus/edits/editreason[@index='1468'] -opus/edits/editreason[@index='1469'] -opus/edits/editreason[@index='147'] -opus/edits/editreason[@index='1470'] -opus/edits/editreason[@index='1471'] -opus/edits/editreason[@index='1472'] -opus/edits/editreason[@index='1473'] -opus/edits/editreason[@index='1474'] -opus/edits/editreason[@index='1475'] -opus/edits/editreason[@index='1476'] -opus/edits/editreason[@index='1477'] -opus/edits/editreason[@index='1478'] -opus/edits/editreason[@index='1479'] -opus/edits/editreason[@index='148'] -opus/edits/editreason[@index='1480'] -opus/edits/editreason[@index='1481'] -opus/edits/editreason[@index='1482'] -opus/edits/editreason[@index='1483'] -opus/edits/editreason[@index='1484'] -opus/edits/editreason[@index='1485'] -opus/edits/editreason[@index='1486'] -opus/edits/editreason[@index='1487'] -opus/edits/editreason[@index='1488'] -opus/edits/editreason[@index='1489'] -opus/edits/editreason[@index='149'] -opus/edits/editreason[@index='1490'] -opus/edits/editreason[@index='1491'] -opus/edits/editreason[@index='1492'] -opus/edits/editreason[@index='1493'] -opus/edits/editreason[@index='1494'] -opus/edits/editreason[@index='1495'] -opus/edits/editreason[@index='1496'] -opus/edits/editreason[@index='1497'] -opus/edits/editreason[@index='1498'] -opus/edits/editreason[@index='1499'] -opus/edits/editreason[@index='15'] -opus/edits/editreason[@index='150'] -opus/edits/editreason[@index='1500'] -opus/edits/editreason[@index='1501'] -opus/edits/editreason[@index='1502'] -opus/edits/editreason[@index='1503'] -opus/edits/editreason[@index='1504'] -opus/edits/editreason[@index='1505'] -opus/edits/editreason[@index='1506'] -opus/edits/editreason[@index='1507'] -opus/edits/editreason[@index='1508'] -opus/edits/editreason[@index='1509'] -opus/edits/editreason[@index='151'] -opus/edits/editreason[@index='1510'] -opus/edits/editreason[@index='1511'] -opus/edits/editreason[@index='1512'] -opus/edits/editreason[@index='1513'] -opus/edits/editreason[@index='1514'] -opus/edits/editreason[@index='1515'] -opus/edits/editreason[@index='1516'] -opus/edits/editreason[@index='1517'] -opus/edits/editreason[@index='1518'] -opus/edits/editreason[@index='1519'] -opus/edits/editreason[@index='152'] -opus/edits/editreason[@index='1520'] -opus/edits/editreason[@index='1521'] -opus/edits/editreason[@index='1522'] -opus/edits/editreason[@index='1523'] -opus/edits/editreason[@index='1524'] -opus/edits/editreason[@index='1525'] -opus/edits/editreason[@index='1526'] -opus/edits/editreason[@index='1527'] -opus/edits/editreason[@index='1528'] -opus/edits/editreason[@index='1529'] -opus/edits/editreason[@index='153'] -opus/edits/editreason[@index='1530'] -opus/edits/editreason[@index='1531'] -opus/edits/editreason[@index='1532'] -opus/edits/editreason[@index='1533'] -opus/edits/editreason[@index='1535'] -opus/edits/editreason[@index='1536'] -opus/edits/editreason[@index='1537'] -opus/edits/editreason[@index='1538'] -opus/edits/editreason[@index='154'] -opus/edits/editreason[@index='1540'] -opus/edits/editreason[@index='1541'] -opus/edits/editreason[@index='1542'] -opus/edits/editreason[@index='1543'] -opus/edits/editreason[@index='1544'] -opus/edits/editreason[@index='1545'] -opus/edits/editreason[@index='1546'] -opus/edits/editreason[@index='1547'] -opus/edits/editreason[@index='1548'] -opus/edits/editreason[@index='1549'] -opus/edits/editreason[@index='155'] -opus/edits/editreason[@index='1550'] -opus/edits/editreason[@index='1551'] -opus/edits/editreason[@index='1552'] -opus/edits/editreason[@index='1553'] -opus/edits/editreason[@index='1554'] -opus/edits/editreason[@index='1555'] -opus/edits/editreason[@index='1556'] -opus/edits/editreason[@index='1557'] -opus/edits/editreason[@index='1558'] -opus/edits/editreason[@index='1559'] -opus/edits/editreason[@index='156'] -opus/edits/editreason[@index='1560'] -opus/edits/editreason[@index='1561'] -opus/edits/editreason[@index='1562'] -opus/edits/editreason[@index='1563'] -opus/edits/editreason[@index='1564'] -opus/edits/editreason[@index='1565'] -opus/edits/editreason[@index='1566'] -opus/edits/editreason[@index='1567'] -opus/edits/editreason[@index='1568'] -opus/edits/editreason[@index='1569'] -opus/edits/editreason[@index='157'] -opus/edits/editreason[@index='1570'] -opus/edits/editreason[@index='1571'] -opus/edits/editreason[@index='1572'] -opus/edits/editreason[@index='1573'] -opus/edits/editreason[@index='1574'] -opus/edits/editreason[@index='1575'] -opus/edits/editreason[@index='1576'] -opus/edits/editreason[@index='1577'] -opus/edits/editreason[@index='1578'] -opus/edits/editreason[@index='1579'] -opus/edits/editreason[@index='158'] -opus/edits/editreason[@index='1580'] -opus/edits/editreason[@index='1581'] -opus/edits/editreason[@index='1582'] -opus/edits/editreason[@index='1583'] -opus/edits/editreason[@index='1584'] -opus/edits/editreason[@index='1585'] -opus/edits/editreason[@index='1586'] -opus/edits/editreason[@index='1587'] -opus/edits/editreason[@index='1588'] -opus/edits/editreason[@index='1589'] -opus/edits/editreason[@index='159'] -opus/edits/editreason[@index='1590'] -opus/edits/editreason[@index='1591'] -opus/edits/editreason[@index='1592'] -opus/edits/editreason[@index='1593'] -opus/edits/editreason[@index='1594'] -opus/edits/editreason[@index='1595'] -opus/edits/editreason[@index='1596'] -opus/edits/editreason[@index='1597'] -opus/edits/editreason[@index='1598'] -opus/edits/editreason[@index='1599'] -opus/edits/editreason[@index='160'] -opus/edits/editreason[@index='1600'] -opus/edits/editreason[@index='1601'] -opus/edits/editreason[@index='1602'] -opus/edits/editreason[@index='1603'] -opus/edits/editreason[@index='1604'] -opus/edits/editreason[@index='1605'] -opus/edits/editreason[@index='1606'] -opus/edits/editreason[@index='1607'] -opus/edits/editreason[@index='1608'] -opus/edits/editreason[@index='1609'] -opus/edits/editreason[@index='161'] -opus/edits/editreason[@index='1610'] -opus/edits/editreason[@index='1611'] -opus/edits/editreason[@index='1612'] -opus/edits/editreason[@index='1613'] -opus/edits/editreason[@index='1614'] -opus/edits/editreason[@index='1615'] -opus/edits/editreason[@index='1616'] -opus/edits/editreason[@index='1617'] -opus/edits/editreason[@index='1618'] -opus/edits/editreason[@index='1619'] -opus/edits/editreason[@index='162'] -opus/edits/editreason[@index='1620'] -opus/edits/editreason[@index='1621'] -opus/edits/editreason[@index='1622'] -opus/edits/editreason[@index='1623'] -opus/edits/editreason[@index='1624'] -opus/edits/editreason[@index='1625'] -opus/edits/editreason[@index='1626'] -opus/edits/editreason[@index='1627'] -opus/edits/editreason[@index='1628'] -opus/edits/editreason[@index='1629'] -opus/edits/editreason[@index='163'] -opus/edits/editreason[@index='1630'] -opus/edits/editreason[@index='1631'] -opus/edits/editreason[@index='1632'] -opus/edits/editreason[@index='1633'] -opus/edits/editreason[@index='1634'] -opus/edits/editreason[@index='1635'] -opus/edits/editreason[@index='1636'] -opus/edits/editreason[@index='1637'] -opus/edits/editreason[@index='1638'] -opus/edits/editreason[@index='1639'] -opus/edits/editreason[@index='164'] -opus/edits/editreason[@index='1640'] -opus/edits/editreason[@index='1641'] -opus/edits/editreason[@index='1642'] -opus/edits/editreason[@index='1643'] -opus/edits/editreason[@index='1644'] -opus/edits/editreason[@index='1645'] -opus/edits/editreason[@index='1646'] -opus/edits/editreason[@index='1647'] -opus/edits/editreason[@index='1648'] -opus/edits/editreason[@index='1649'] -opus/edits/editreason[@index='165'] -opus/edits/editreason[@index='1650'] -opus/edits/editreason[@index='1652'] -opus/edits/editreason[@index='1653'] -opus/edits/editreason[@index='1654'] -opus/edits/editreason[@index='1655'] -opus/edits/editreason[@index='1656'] -opus/edits/editreason[@index='1657'] -opus/edits/editreason[@index='1658'] -opus/edits/editreason[@index='1659'] -opus/edits/editreason[@index='166'] -opus/edits/editreason[@index='1660'] -opus/edits/editreason[@index='1661'] -opus/edits/editreason[@index='1662'] -opus/edits/editreason[@index='1663'] -opus/edits/editreason[@index='1664'] -opus/edits/editreason[@index='1665'] -opus/edits/editreason[@index='1666'] -opus/edits/editreason[@index='1667'] -opus/edits/editreason[@index='1668'] -opus/edits/editreason[@index='1669'] -opus/edits/editreason[@index='167'] -opus/edits/editreason[@index='1670'] -opus/edits/editreason[@index='1671'] -opus/edits/editreason[@index='1672'] -opus/edits/editreason[@index='1673'] -opus/edits/editreason[@index='1674'] -opus/edits/editreason[@index='1675'] -opus/edits/editreason[@index='1676'] -opus/edits/editreason[@index='1677'] -opus/edits/editreason[@index='1678'] -opus/edits/editreason[@index='1679'] -opus/edits/editreason[@index='168'] -opus/edits/editreason[@index='1680'] -opus/edits/editreason[@index='1681'] -opus/edits/editreason[@index='1682'] -opus/edits/editreason[@index='1683'] -opus/edits/editreason[@index='1684'] -opus/edits/editreason[@index='1685'] -opus/edits/editreason[@index='1686'] -opus/edits/editreason[@index='1687'] -opus/edits/editreason[@index='1688'] -opus/edits/editreason[@index='1689'] -opus/edits/editreason[@index='169'] -opus/edits/editreason[@index='1690'] -opus/edits/editreason[@index='1691'] -opus/edits/editreason[@index='1692'] -opus/edits/editreason[@index='1693'] -opus/edits/editreason[@index='1694'] -opus/edits/editreason[@index='1695'] -opus/edits/editreason[@index='1696'] -opus/edits/editreason[@index='1697'] -opus/edits/editreason[@index='1698'] -opus/edits/editreason[@index='1699'] -opus/edits/editreason[@index='170'] -opus/edits/editreason[@index='1700'] -opus/edits/editreason[@index='1701'] -opus/edits/editreason[@index='1702'] -opus/edits/editreason[@index='1703'] -opus/edits/editreason[@index='1704'] -opus/edits/editreason[@index='1705'] -opus/edits/editreason[@index='1706'] -opus/edits/editreason[@index='1707'] -opus/edits/editreason[@index='1708'] -opus/edits/editreason[@index='1709'] -opus/edits/editreason[@index='171'] -opus/edits/editreason[@index='1710'] -opus/edits/editreason[@index='1711'] -opus/edits/editreason[@index='1712'] -opus/edits/editreason[@index='1713'] -opus/edits/editreason[@index='1714'] -opus/edits/editreason[@index='1715'] -opus/edits/editreason[@index='1716'] -opus/edits/editreason[@index='1717'] -opus/edits/editreason[@index='1718'] -opus/edits/editreason[@index='1719'] -opus/edits/editreason[@index='172'] -opus/edits/editreason[@index='1720'] -opus/edits/editreason[@index='1721'] -opus/edits/editreason[@index='1722'] -opus/edits/editreason[@index='1723'] -opus/edits/editreason[@index='1724'] -opus/edits/editreason[@index='1725'] -opus/edits/editreason[@index='1726'] -opus/edits/editreason[@index='1727'] -opus/edits/editreason[@index='1728'] -opus/edits/editreason[@index='1729'] -opus/edits/editreason[@index='173'] -opus/edits/editreason[@index='1730'] -opus/edits/editreason[@index='1731'] -opus/edits/editreason[@index='1732'] -opus/edits/editreason[@index='1733'] -opus/edits/editreason[@index='1734'] -opus/edits/editreason[@index='1735'] -opus/edits/editreason[@index='1736'] -opus/edits/editreason[@index='1737'] -opus/edits/editreason[@index='1738'] -opus/edits/editreason[@index='1739'] -opus/edits/editreason[@index='174'] -opus/edits/editreason[@index='1740'] -opus/edits/editreason[@index='1741'] -opus/edits/editreason[@index='1742'] -opus/edits/editreason[@index='1743'] -opus/edits/editreason[@index='1744'] -opus/edits/editreason[@index='1745'] -opus/edits/editreason[@index='1746'] -opus/edits/editreason[@index='1747'] -opus/edits/editreason[@index='1748'] -opus/edits/editreason[@index='1749'] -opus/edits/editreason[@index='175'] -opus/edits/editreason[@index='1750'] -opus/edits/editreason[@index='1751'] -opus/edits/editreason[@index='1752'] -opus/edits/editreason[@index='1753'] -opus/edits/editreason[@index='1754'] -opus/edits/editreason[@index='1755'] -opus/edits/editreason[@index='1756'] -opus/edits/editreason[@index='1757'] -opus/edits/editreason[@index='1758'] -opus/edits/editreason[@index='1759'] -opus/edits/editreason[@index='176'] -opus/edits/editreason[@index='1760'] -opus/edits/editreason[@index='1761'] -opus/edits/editreason[@index='1762'] -opus/edits/editreason[@index='1763'] -opus/edits/editreason[@index='1764'] -opus/edits/editreason[@index='1765'] -opus/edits/editreason[@index='1766'] -opus/edits/editreason[@index='1767'] -opus/edits/editreason[@index='1768'] -opus/edits/editreason[@index='1769'] -opus/edits/editreason[@index='177'] -opus/edits/editreason[@index='1770'] -opus/edits/editreason[@index='1771'] -opus/edits/editreason[@index='1773'] -opus/edits/editreason[@index='1774'] -opus/edits/editreason[@index='1775'] -opus/edits/editreason[@index='1776'] -opus/edits/editreason[@index='1779'] -opus/edits/editreason[@index='178'] -opus/edits/editreason[@index='1780'] -opus/edits/editreason[@index='1781'] -opus/edits/editreason[@index='1782'] -opus/edits/editreason[@index='1783'] -opus/edits/editreason[@index='1784'] -opus/edits/editreason[@index='1785'] -opus/edits/editreason[@index='1786'] -opus/edits/editreason[@index='1787'] -opus/edits/editreason[@index='1788'] -opus/edits/editreason[@index='1789'] -opus/edits/editreason[@index='179'] -opus/edits/editreason[@index='1790'] -opus/edits/editreason[@index='1791'] -opus/edits/editreason[@index='1792'] -opus/edits/editreason[@index='1793'] -opus/edits/editreason[@index='1794'] -opus/edits/editreason[@index='1795'] -opus/edits/editreason[@index='1796'] -opus/edits/editreason[@index='1797'] -opus/edits/editreason[@index='1798'] -opus/edits/editreason[@index='1799'] -opus/edits/editreason[@index='180'] -opus/edits/editreason[@index='1800'] -opus/edits/editreason[@index='1801'] -opus/edits/editreason[@index='1802'] -opus/edits/editreason[@index='1803'] -opus/edits/editreason[@index='1804'] -opus/edits/editreason[@index='1805'] -opus/edits/editreason[@index='1806'] -opus/edits/editreason[@index='1807'] -opus/edits/editreason[@index='1808'] -opus/edits/editreason[@index='1809'] -opus/edits/editreason[@index='181'] -opus/edits/editreason[@index='1810'] -opus/edits/editreason[@index='1811'] -opus/edits/editreason[@index='1812'] -opus/edits/editreason[@index='1813'] -opus/edits/editreason[@index='1814'] -opus/edits/editreason[@index='1815'] -opus/edits/editreason[@index='1816'] -opus/edits/editreason[@index='1817'] -opus/edits/editreason[@index='1818'] -opus/edits/editreason[@index='1819'] -opus/edits/editreason[@index='182'] -opus/edits/editreason[@index='1820'] -opus/edits/editreason[@index='1821'] -opus/edits/editreason[@index='1822'] -opus/edits/editreason[@index='1823'] -opus/edits/editreason[@index='1824'] -opus/edits/editreason[@index='1825'] -opus/edits/editreason[@index='1826'] -opus/edits/editreason[@index='1827'] -opus/edits/editreason[@index='1828'] -opus/edits/editreason[@index='1829'] -opus/edits/editreason[@index='183'] -opus/edits/editreason[@index='1830'] -opus/edits/editreason[@index='1831'] -opus/edits/editreason[@index='1832'] -opus/edits/editreason[@index='1833'] -opus/edits/editreason[@index='1834'] -opus/edits/editreason[@index='1835'] -opus/edits/editreason[@index='1836'] -opus/edits/editreason[@index='1837'] -opus/edits/editreason[@index='1838'] -opus/edits/editreason[@index='1839'] -opus/edits/editreason[@index='184'] -opus/edits/editreason[@index='1840'] -opus/edits/editreason[@index='1841'] -opus/edits/editreason[@index='1842'] -opus/edits/editreason[@index='1843'] -opus/edits/editreason[@index='1844'] -opus/edits/editreason[@index='1845'] -opus/edits/editreason[@index='1846'] -opus/edits/editreason[@index='1847'] -opus/edits/editreason[@index='1848'] -opus/edits/editreason[@index='1849'] -opus/edits/editreason[@index='185'] -opus/edits/editreason[@index='1850'] -opus/edits/editreason[@index='1851'] -opus/edits/editreason[@index='1852'] -opus/edits/editreason[@index='1853'] -opus/edits/editreason[@index='1854'] -opus/edits/editreason[@index='1855'] -opus/edits/editreason[@index='1856'] -opus/edits/editreason[@index='1858'] -opus/edits/editreason[@index='1859'] -opus/edits/editreason[@index='186'] -opus/edits/editreason[@index='1860'] -opus/edits/editreason[@index='1861'] -opus/edits/editreason[@index='1862'] -opus/edits/editreason[@index='1863'] -opus/edits/editreason[@index='1864'] -opus/edits/editreason[@index='1865'] -opus/edits/editreason[@index='1866'] -opus/edits/editreason[@index='1867'] -opus/edits/editreason[@index='1868'] -opus/edits/editreason[@index='1869'] -opus/edits/editreason[@index='187'] -opus/edits/editreason[@index='1870'] -opus/edits/editreason[@index='1871'] -opus/edits/editreason[@index='1872'] -opus/edits/editreason[@index='1873'] -opus/edits/editreason[@index='1874'] -opus/edits/editreason[@index='1875'] -opus/edits/editreason[@index='1876'] -opus/edits/editreason[@index='1877'] -opus/edits/editreason[@index='1878'] -opus/edits/editreason[@index='1879'] -opus/edits/editreason[@index='188'] -opus/edits/editreason[@index='1880'] -opus/edits/editreason[@index='1881'] -opus/edits/editreason[@index='1882'] -opus/edits/editreason[@index='1883'] -opus/edits/editreason[@index='1884'] -opus/edits/editreason[@index='1885'] -opus/edits/editreason[@index='1886'] -opus/edits/editreason[@index='1887'] -opus/edits/editreason[@index='1888'] -opus/edits/editreason[@index='1889'] -opus/edits/editreason[@index='189'] -opus/edits/editreason[@index='1890'] -opus/edits/editreason[@index='1891'] -opus/edits/editreason[@index='1892'] -opus/edits/editreason[@index='1893'] -opus/edits/editreason[@index='1894'] -opus/edits/editreason[@index='1895'] -opus/edits/editreason[@index='1896'] -opus/edits/editreason[@index='1897'] -opus/edits/editreason[@index='1898'] -opus/edits/editreason[@index='1899'] -opus/edits/editreason[@index='19'] -opus/edits/editreason[@index='190'] -opus/edits/editreason[@index='1900'] -opus/edits/editreason[@index='1901'] -opus/edits/editreason[@index='1902'] -opus/edits/editreason[@index='1903'] -opus/edits/editreason[@index='1904'] -opus/edits/editreason[@index='1905'] -opus/edits/editreason[@index='1906'] -opus/edits/editreason[@index='1907'] -opus/edits/editreason[@index='1908'] -opus/edits/editreason[@index='1909'] -opus/edits/editreason[@index='191'] -opus/edits/editreason[@index='1910'] -opus/edits/editreason[@index='1911'] -opus/edits/editreason[@index='1912'] -opus/edits/editreason[@index='1913'] -opus/edits/editreason[@index='1914'] -opus/edits/editreason[@index='1915'] -opus/edits/editreason[@index='1916'] -opus/edits/editreason[@index='1917'] -opus/edits/editreason[@index='1918'] -opus/edits/editreason[@index='1919'] -opus/edits/editreason[@index='192'] -opus/edits/editreason[@index='1920'] -opus/edits/editreason[@index='1921'] -opus/edits/editreason[@index='1922'] -opus/edits/editreason[@index='1923'] -opus/edits/editreason[@index='1924'] -opus/edits/editreason[@index='1925'] -opus/edits/editreason[@index='1926'] -opus/edits/editreason[@index='1927'] -opus/edits/editreason[@index='1928'] -opus/edits/editreason[@index='1929'] -opus/edits/editreason[@index='193'] -opus/edits/editreason[@index='1930'] -opus/edits/editreason[@index='1931'] -opus/edits/editreason[@index='1932'] -opus/edits/editreason[@index='1933'] -opus/edits/editreason[@index='1934'] -opus/edits/editreason[@index='1935'] -opus/edits/editreason[@index='1936'] -opus/edits/editreason[@index='1937'] -opus/edits/editreason[@index='1938'] -opus/edits/editreason[@index='1939'] -opus/edits/editreason[@index='194'] -opus/edits/editreason[@index='1940'] -opus/edits/editreason[@index='1941'] -opus/edits/editreason[@index='1942'] -opus/edits/editreason[@index='1943'] -opus/edits/editreason[@index='1944'] -opus/edits/editreason[@index='1945'] -opus/edits/editreason[@index='1946'] -opus/edits/editreason[@index='1947'] -opus/edits/editreason[@index='1948'] -opus/edits/editreason[@index='1949'] -opus/edits/editreason[@index='195'] -opus/edits/editreason[@index='1950'] -opus/edits/editreason[@index='1951'] -opus/edits/editreason[@index='1952'] -opus/edits/editreason[@index='1953'] -opus/edits/editreason[@index='1954'] -opus/edits/editreason[@index='1955'] -opus/edits/editreason[@index='1956'] -opus/edits/editreason[@index='1957'] -opus/edits/editreason[@index='1958'] -opus/edits/editreason[@index='1959'] -opus/edits/editreason[@index='196'] -opus/edits/editreason[@index='1960'] -opus/edits/editreason[@index='1961'] -opus/edits/editreason[@index='1962'] -opus/edits/editreason[@index='1963'] -opus/edits/editreason[@index='1964'] -opus/edits/editreason[@index='1965'] -opus/edits/editreason[@index='1966'] -opus/edits/editreason[@index='1967'] -opus/edits/editreason[@index='1968'] -opus/edits/editreason[@index='1969'] -opus/edits/editreason[@index='197'] -opus/edits/editreason[@index='1970'] -opus/edits/editreason[@index='1971'] -opus/edits/editreason[@index='1972'] -opus/edits/editreason[@index='1973'] -opus/edits/editreason[@index='1974'] -opus/edits/editreason[@index='1975'] -opus/edits/editreason[@index='1976'] -opus/edits/editreason[@index='1977'] -opus/edits/editreason[@index='1978'] -opus/edits/editreason[@index='1979'] -opus/edits/editreason[@index='198'] -opus/edits/editreason[@index='1980'] -opus/edits/editreason[@index='1981'] -opus/edits/editreason[@index='1982'] -opus/edits/editreason[@index='1983'] -opus/edits/editreason[@index='1984'] -opus/edits/editreason[@index='1985'] -opus/edits/editreason[@index='1986'] -opus/edits/editreason[@index='1987'] -opus/edits/editreason[@index='1988'] -opus/edits/editreason[@index='1989'] -opus/edits/editreason[@index='199'] -opus/edits/editreason[@index='1990'] -opus/edits/editreason[@index='1991'] -opus/edits/editreason[@index='1992'] -opus/edits/editreason[@index='1993'] -opus/edits/editreason[@index='1994'] -opus/edits/editreason[@index='1995'] -opus/edits/editreason[@index='1996'] -opus/edits/editreason[@index='1997'] -opus/edits/editreason[@index='1998'] -opus/edits/editreason[@index='1999'] -opus/edits/editreason[@index='2'] -opus/edits/editreason[@index='20'] -opus/edits/editreason[@index='200'] -opus/edits/editreason[@index='2000'] -opus/edits/editreason[@index='2001'] -opus/edits/editreason[@index='2002'] -opus/edits/editreason[@index='2003'] -opus/edits/editreason[@index='2004'] -opus/edits/editreason[@index='2005'] -opus/edits/editreason[@index='2006'] -opus/edits/editreason[@index='2007'] -opus/edits/editreason[@index='2008'] -opus/edits/editreason[@index='2009'] -opus/edits/editreason[@index='201'] -opus/edits/editreason[@index='2010'] -opus/edits/editreason[@index='2011'] -opus/edits/editreason[@index='2012'] -opus/edits/editreason[@index='2013'] -opus/edits/editreason[@index='2014'] -opus/edits/editreason[@index='2015'] -opus/edits/editreason[@index='2016'] -opus/edits/editreason[@index='2017'] -opus/edits/editreason[@index='2018'] -opus/edits/editreason[@index='2019'] -opus/edits/editreason[@index='202'] -opus/edits/editreason[@index='2020'] -opus/edits/editreason[@index='2021'] -opus/edits/editreason[@index='2022'] -opus/edits/editreason[@index='2023'] -opus/edits/editreason[@index='2024'] -opus/edits/editreason[@index='2025'] -opus/edits/editreason[@index='2026'] -opus/edits/editreason[@index='2027'] -opus/edits/editreason[@index='2028'] -opus/edits/editreason[@index='2029'] -opus/edits/editreason[@index='203'] -opus/edits/editreason[@index='2030'] -opus/edits/editreason[@index='2031'] -opus/edits/editreason[@index='2032'] -opus/edits/editreason[@index='2033'] -opus/edits/editreason[@index='2034'] -opus/edits/editreason[@index='2035'] -opus/edits/editreason[@index='2036'] -opus/edits/editreason[@index='2037'] -opus/edits/editreason[@index='2038'] -opus/edits/editreason[@index='2039'] -opus/edits/editreason[@index='204'] -opus/edits/editreason[@index='2040'] -opus/edits/editreason[@index='2041'] -opus/edits/editreason[@index='2042'] -opus/edits/editreason[@index='2043'] -opus/edits/editreason[@index='2044'] -opus/edits/editreason[@index='2045'] -opus/edits/editreason[@index='2046'] -opus/edits/editreason[@index='2047'] -opus/edits/editreason[@index='2048'] -opus/edits/editreason[@index='2049'] -opus/edits/editreason[@index='205'] -opus/edits/editreason[@index='2050'] -opus/edits/editreason[@index='2051'] -opus/edits/editreason[@index='2052'] -opus/edits/editreason[@index='2053'] -opus/edits/editreason[@index='2054'] -opus/edits/editreason[@index='2055'] -opus/edits/editreason[@index='2056'] -opus/edits/editreason[@index='2057'] -opus/edits/editreason[@index='2058'] -opus/edits/editreason[@index='2059'] -opus/edits/editreason[@index='206'] -opus/edits/editreason[@index='2060'] -opus/edits/editreason[@index='2061'] -opus/edits/editreason[@index='2062'] -opus/edits/editreason[@index='2063'] -opus/edits/editreason[@index='2064'] -opus/edits/editreason[@index='2065'] -opus/edits/editreason[@index='2066'] -opus/edits/editreason[@index='2067'] -opus/edits/editreason[@index='2068'] -opus/edits/editreason[@index='2069'] -opus/edits/editreason[@index='207'] -opus/edits/editreason[@index='2070'] -opus/edits/editreason[@index='2071'] -opus/edits/editreason[@index='2072'] -opus/edits/editreason[@index='2073'] -opus/edits/editreason[@index='2074'] -opus/edits/editreason[@index='2075'] -opus/edits/editreason[@index='2076'] -opus/edits/editreason[@index='2077'] -opus/edits/editreason[@index='2078'] -opus/edits/editreason[@index='2079'] -opus/edits/editreason[@index='208'] -opus/edits/editreason[@index='2080'] -opus/edits/editreason[@index='2081'] -opus/edits/editreason[@index='2082'] -opus/edits/editreason[@index='2083'] -opus/edits/editreason[@index='2084'] -opus/edits/editreason[@index='2085'] -opus/edits/editreason[@index='2086'] -opus/edits/editreason[@index='2087'] -opus/edits/editreason[@index='2088'] -opus/edits/editreason[@index='2089'] -opus/edits/editreason[@index='209'] -opus/edits/editreason[@index='2090'] -opus/edits/editreason[@index='2091'] -opus/edits/editreason[@index='2092'] -opus/edits/editreason[@index='2093'] -opus/edits/editreason[@index='2094'] -opus/edits/editreason[@index='2095'] -opus/edits/editreason[@index='2096'] -opus/edits/editreason[@index='2097'] -opus/edits/editreason[@index='2098'] -opus/edits/editreason[@index='2099'] -opus/edits/editreason[@index='21'] -opus/edits/editreason[@index='210'] -opus/edits/editreason[@index='2101'] -opus/edits/editreason[@index='2102'] -opus/edits/editreason[@index='2103'] -opus/edits/editreason[@index='2104'] -opus/edits/editreason[@index='2105'] -opus/edits/editreason[@index='2106'] -opus/edits/editreason[@index='2107'] -opus/edits/editreason[@index='2108'] -opus/edits/editreason[@index='2109'] -opus/edits/editreason[@index='211'] -opus/edits/editreason[@index='2110'] -opus/edits/editreason[@index='2111'] -opus/edits/editreason[@index='2112'] -opus/edits/editreason[@index='2113'] -opus/edits/editreason[@index='2114'] -opus/edits/editreason[@index='2115'] -opus/edits/editreason[@index='2116'] -opus/edits/editreason[@index='2117'] -opus/edits/editreason[@index='2118'] -opus/edits/editreason[@index='2119'] -opus/edits/editreason[@index='212'] -opus/edits/editreason[@index='2120'] -opus/edits/editreason[@index='2121'] -opus/edits/editreason[@index='2122'] -opus/edits/editreason[@index='2123'] -opus/edits/editreason[@index='2124'] -opus/edits/editreason[@index='2125'] -opus/edits/editreason[@index='2126'] -opus/edits/editreason[@index='2127'] -opus/edits/editreason[@index='2128'] -opus/edits/editreason[@index='2129'] -opus/edits/editreason[@index='213'] -opus/edits/editreason[@index='2130'] -opus/edits/editreason[@index='2131'] -opus/edits/editreason[@index='2132'] -opus/edits/editreason[@index='2133'] -opus/edits/editreason[@index='2134'] -opus/edits/editreason[@index='2135'] -opus/edits/editreason[@index='2136'] -opus/edits/editreason[@index='2137'] -opus/edits/editreason[@index='2138'] -opus/edits/editreason[@index='2139'] -opus/edits/editreason[@index='214'] -opus/edits/editreason[@index='2140'] -opus/edits/editreason[@index='2141'] -opus/edits/editreason[@index='2142'] -opus/edits/editreason[@index='2143'] -opus/edits/editreason[@index='2144'] -opus/edits/editreason[@index='2145'] -opus/edits/editreason[@index='2146'] -opus/edits/editreason[@index='2147'] -opus/edits/editreason[@index='2148'] -opus/edits/editreason[@index='2149'] -opus/edits/editreason[@index='215'] -opus/edits/editreason[@index='2150'] -opus/edits/editreason[@index='2151'] -opus/edits/editreason[@index='2152'] -opus/edits/editreason[@index='2153'] -opus/edits/editreason[@index='2154'] -opus/edits/editreason[@index='2155'] -opus/edits/editreason[@index='2156'] -opus/edits/editreason[@index='2157'] -opus/edits/editreason[@index='2158'] -opus/edits/editreason[@index='2159'] -opus/edits/editreason[@index='216'] -opus/edits/editreason[@index='2160'] -opus/edits/editreason[@index='2161'] -opus/edits/editreason[@index='2162'] -opus/edits/editreason[@index='2163'] -opus/edits/editreason[@index='2164'] -opus/edits/editreason[@index='2165'] -opus/edits/editreason[@index='2166'] -opus/edits/editreason[@index='2167'] -opus/edits/editreason[@index='2168'] -opus/edits/editreason[@index='2169'] -opus/edits/editreason[@index='217'] -opus/edits/editreason[@index='2170'] -opus/edits/editreason[@index='2171'] -opus/edits/editreason[@index='2172'] -opus/edits/editreason[@index='2173'] -opus/edits/editreason[@index='2174'] -opus/edits/editreason[@index='2175'] -opus/edits/editreason[@index='2176'] -opus/edits/editreason[@index='2177'] -opus/edits/editreason[@index='2178'] -opus/edits/editreason[@index='2179'] -opus/edits/editreason[@index='218'] -opus/edits/editreason[@index='2180'] -opus/edits/editreason[@index='2181'] -opus/edits/editreason[@index='2182'] -opus/edits/editreason[@index='2183'] -opus/edits/editreason[@index='2184'] -opus/edits/editreason[@index='2185'] -opus/edits/editreason[@index='2186'] -opus/edits/editreason[@index='2187'] -opus/edits/editreason[@index='2188'] -opus/edits/editreason[@index='2189'] -opus/edits/editreason[@index='219'] -opus/edits/editreason[@index='2190'] -opus/edits/editreason[@index='2191'] -opus/edits/editreason[@index='2192'] -opus/edits/editreason[@index='2193'] -opus/edits/editreason[@index='2194'] -opus/edits/editreason[@index='2195'] -opus/edits/editreason[@index='2196'] -opus/edits/editreason[@index='2197'] -opus/edits/editreason[@index='2198'] -opus/edits/editreason[@index='2199'] -opus/edits/editreason[@index='22'] -opus/edits/editreason[@index='220'] -opus/edits/editreason[@index='2201'] -opus/edits/editreason[@index='2202'] -opus/edits/editreason[@index='2203'] -opus/edits/editreason[@index='2204'] -opus/edits/editreason[@index='2205'] -opus/edits/editreason[@index='2206'] -opus/edits/editreason[@index='2207'] -opus/edits/editreason[@index='2208'] -opus/edits/editreason[@index='2209'] -opus/edits/editreason[@index='221'] -opus/edits/editreason[@index='2210'] -opus/edits/editreason[@index='2211'] -opus/edits/editreason[@index='2212'] -opus/edits/editreason[@index='2213'] -opus/edits/editreason[@index='2214'] -opus/edits/editreason[@index='2215'] -opus/edits/editreason[@index='2217'] -opus/edits/editreason[@index='2218'] -opus/edits/editreason[@index='2219'] -opus/edits/editreason[@index='222'] -opus/edits/editreason[@index='2220'] -opus/edits/editreason[@index='2221'] -opus/edits/editreason[@index='2222'] -opus/edits/editreason[@index='2223'] -opus/edits/editreason[@index='2224'] -opus/edits/editreason[@index='2225'] -opus/edits/editreason[@index='2226'] -opus/edits/editreason[@index='2227'] -opus/edits/editreason[@index='2228'] -opus/edits/editreason[@index='2229'] -opus/edits/editreason[@index='223'] -opus/edits/editreason[@index='2230'] -opus/edits/editreason[@index='2231'] -opus/edits/editreason[@index='2232'] -opus/edits/editreason[@index='2233'] -opus/edits/editreason[@index='2234'] -opus/edits/editreason[@index='2235'] -opus/edits/editreason[@index='2236'] -opus/edits/editreason[@index='2237'] -opus/edits/editreason[@index='2238'] -opus/edits/editreason[@index='2239'] -opus/edits/editreason[@index='224'] -opus/edits/editreason[@index='2240'] -opus/edits/editreason[@index='2241'] -opus/edits/editreason[@index='2242'] -opus/edits/editreason[@index='2243'] -opus/edits/editreason[@index='2244'] -opus/edits/editreason[@index='2245'] -opus/edits/editreason[@index='2246'] -opus/edits/editreason[@index='2247'] -opus/edits/editreason[@index='2248'] -opus/edits/editreason[@index='2249'] -opus/edits/editreason[@index='225'] -opus/edits/editreason[@index='2250'] -opus/edits/editreason[@index='2251'] -opus/edits/editreason[@index='2252'] -opus/edits/editreason[@index='2253'] -opus/edits/editreason[@index='2254'] -opus/edits/editreason[@index='2255'] -opus/edits/editreason[@index='2256'] -opus/edits/editreason[@index='2257'] -opus/edits/editreason[@index='2258'] -opus/edits/editreason[@index='2259'] -opus/edits/editreason[@index='226'] -opus/edits/editreason[@index='2260'] -opus/edits/editreason[@index='2261'] -opus/edits/editreason[@index='2262'] -opus/edits/editreason[@index='2263'] -opus/edits/editreason[@index='2264'] -opus/edits/editreason[@index='2265'] -opus/edits/editreason[@index='2266'] -opus/edits/editreason[@index='2267'] -opus/edits/editreason[@index='2268'] -opus/edits/editreason[@index='2269'] -opus/edits/editreason[@index='227'] -opus/edits/editreason[@index='2270'] -opus/edits/editreason[@index='2271'] -opus/edits/editreason[@index='2272'] -opus/edits/editreason[@index='2273'] -opus/edits/editreason[@index='2274'] -opus/edits/editreason[@index='2275'] -opus/edits/editreason[@index='2276'] -opus/edits/editreason[@index='2277'] -opus/edits/editreason[@index='2278'] -opus/edits/editreason[@index='2279'] -opus/edits/editreason[@index='228'] -opus/edits/editreason[@index='2280'] -opus/edits/editreason[@index='2281'] -opus/edits/editreason[@index='2282'] -opus/edits/editreason[@index='2283'] -opus/edits/editreason[@index='2284'] -opus/edits/editreason[@index='2285'] -opus/edits/editreason[@index='2286'] -opus/edits/editreason[@index='2287'] -opus/edits/editreason[@index='2288'] -opus/edits/editreason[@index='2289'] -opus/edits/editreason[@index='229'] -opus/edits/editreason[@index='2290'] -opus/edits/editreason[@index='2291'] -opus/edits/editreason[@index='2293'] -opus/edits/editreason[@index='2294'] -opus/edits/editreason[@index='2295'] -opus/edits/editreason[@index='2296'] -opus/edits/editreason[@index='2297'] -opus/edits/editreason[@index='2298'] -opus/edits/editreason[@index='2299'] -opus/edits/editreason[@index='23'] -opus/edits/editreason[@index='230'] -opus/edits/editreason[@index='2300'] -opus/edits/editreason[@index='2301'] -opus/edits/editreason[@index='2302'] -opus/edits/editreason[@index='2303'] -opus/edits/editreason[@index='2304'] -opus/edits/editreason[@index='2305'] -opus/edits/editreason[@index='2306'] -opus/edits/editreason[@index='2307'] -opus/edits/editreason[@index='2308'] -opus/edits/editreason[@index='2309'] -opus/edits/editreason[@index='231'] -opus/edits/editreason[@index='2310'] -opus/edits/editreason[@index='2311'] -opus/edits/editreason[@index='2312'] -opus/edits/editreason[@index='2313'] -opus/edits/editreason[@index='2314'] -opus/edits/editreason[@index='2315'] -opus/edits/editreason[@index='2316'] -opus/edits/editreason[@index='2317'] -opus/edits/editreason[@index='2318'] -opus/edits/editreason[@index='2319'] -opus/edits/editreason[@index='232'] -opus/edits/editreason[@index='2320'] -opus/edits/editreason[@index='2321'] -opus/edits/editreason[@index='2322'] -opus/edits/editreason[@index='2323'] -opus/edits/editreason[@index='2325'] -opus/edits/editreason[@index='2326'] -opus/edits/editreason[@index='2327'] -opus/edits/editreason[@index='2328'] -opus/edits/editreason[@index='2329'] -opus/edits/editreason[@index='233'] -opus/edits/editreason[@index='2330'] -opus/edits/editreason[@index='2331'] -opus/edits/editreason[@index='2332'] -opus/edits/editreason[@index='2333'] -opus/edits/editreason[@index='2334'] -opus/edits/editreason[@index='2335'] -opus/edits/editreason[@index='2336'] -opus/edits/editreason[@index='2337'] -opus/edits/editreason[@index='2338'] -opus/edits/editreason[@index='2339'] -opus/edits/editreason[@index='234'] -opus/edits/editreason[@index='2340'] -opus/edits/editreason[@index='2341'] -opus/edits/editreason[@index='2342'] -opus/edits/editreason[@index='2343'] -opus/edits/editreason[@index='2344'] -opus/edits/editreason[@index='2345'] -opus/edits/editreason[@index='2346'] -opus/edits/editreason[@index='2347'] -opus/edits/editreason[@index='2348'] -opus/edits/editreason[@index='2349'] -opus/edits/editreason[@index='235'] -opus/edits/editreason[@index='2350'] -opus/edits/editreason[@index='2351'] -opus/edits/editreason[@index='2352'] -opus/edits/editreason[@index='2353'] -opus/edits/editreason[@index='2354'] -opus/edits/editreason[@index='2355'] -opus/edits/editreason[@index='2356'] -opus/edits/editreason[@index='2357'] -opus/edits/editreason[@index='2358'] -opus/edits/editreason[@index='2359'] -opus/edits/editreason[@index='236'] -opus/edits/editreason[@index='2360'] -opus/edits/editreason[@index='2361'] -opus/edits/editreason[@index='2362'] -opus/edits/editreason[@index='2363'] -opus/edits/editreason[@index='2364'] -opus/edits/editreason[@index='2365'] -opus/edits/editreason[@index='2366'] -opus/edits/editreason[@index='2367'] -opus/edits/editreason[@index='2368'] -opus/edits/editreason[@index='2369'] -opus/edits/editreason[@index='237'] -opus/edits/editreason[@index='2370'] -opus/edits/editreason[@index='2371'] -opus/edits/editreason[@index='2373'] -opus/edits/editreason[@index='2374'] -opus/edits/editreason[@index='2375'] -opus/edits/editreason[@index='2376'] -opus/edits/editreason[@index='2377'] -opus/edits/editreason[@index='2379'] -opus/edits/editreason[@index='238'] -opus/edits/editreason[@index='2380'] -opus/edits/editreason[@index='2381'] -opus/edits/editreason[@index='2382'] -opus/edits/editreason[@index='2383'] -opus/edits/editreason[@index='2384'] -opus/edits/editreason[@index='2385'] -opus/edits/editreason[@index='2386'] -opus/edits/editreason[@index='2387'] -opus/edits/editreason[@index='2388'] -opus/edits/editreason[@index='2389'] -opus/edits/editreason[@index='239'] -opus/edits/editreason[@index='2390'] -opus/edits/editreason[@index='2391'] -opus/edits/editreason[@index='2392'] -opus/edits/editreason[@index='2393'] -opus/edits/editreason[@index='2394'] -opus/edits/editreason[@index='2395'] -opus/edits/editreason[@index='2396'] -opus/edits/editreason[@index='2397'] -opus/edits/editreason[@index='2398'] -opus/edits/editreason[@index='2399'] -opus/edits/editreason[@index='24'] -opus/edits/editreason[@index='240'] -opus/edits/editreason[@index='2400'] -opus/edits/editreason[@index='2401'] -opus/edits/editreason[@index='2402'] -opus/edits/editreason[@index='2403'] -opus/edits/editreason[@index='2404'] -opus/edits/editreason[@index='2405'] -opus/edits/editreason[@index='2406'] -opus/edits/editreason[@index='2407'] -opus/edits/editreason[@index='2408'] -opus/edits/editreason[@index='2409'] -opus/edits/editreason[@index='241'] -opus/edits/editreason[@index='2410'] -opus/edits/editreason[@index='2411'] -opus/edits/editreason[@index='2412'] -opus/edits/editreason[@index='2413'] -opus/edits/editreason[@index='2414'] -opus/edits/editreason[@index='2415'] -opus/edits/editreason[@index='2416'] -opus/edits/editreason[@index='2417'] -opus/edits/editreason[@index='2418'] -opus/edits/editreason[@index='2419'] -opus/edits/editreason[@index='242'] -opus/edits/editreason[@index='2420'] -opus/edits/editreason[@index='2421'] -opus/edits/editreason[@index='2422'] -opus/edits/editreason[@index='2423'] -opus/edits/editreason[@index='2424'] -opus/edits/editreason[@index='2425'] -opus/edits/editreason[@index='2426'] -opus/edits/editreason[@index='2427'] -opus/edits/editreason[@index='2428'] -opus/edits/editreason[@index='2429'] -opus/edits/editreason[@index='243'] -opus/edits/editreason[@index='2430'] -opus/edits/editreason[@index='2431'] -opus/edits/editreason[@index='2432'] -opus/edits/editreason[@index='2433'] -opus/edits/editreason[@index='2434'] -opus/edits/editreason[@index='2435'] -opus/edits/editreason[@index='2436'] -opus/edits/editreason[@index='2437'] -opus/edits/editreason[@index='2438'] -opus/edits/editreason[@index='2439'] -opus/edits/editreason[@index='244'] -opus/edits/editreason[@index='2440'] -opus/edits/editreason[@index='2441'] -opus/edits/editreason[@index='2442'] -opus/edits/editreason[@index='2443'] -opus/edits/editreason[@index='2444'] -opus/edits/editreason[@index='2445'] -opus/edits/editreason[@index='2446'] -opus/edits/editreason[@index='2447'] -opus/edits/editreason[@index='2448'] -opus/edits/editreason[@index='2449'] -opus/edits/editreason[@index='245'] -opus/edits/editreason[@index='2450'] -opus/edits/editreason[@index='2451'] -opus/edits/editreason[@index='2452'] -opus/edits/editreason[@index='2453'] -opus/edits/editreason[@index='2454'] -opus/edits/editreason[@index='2455'] -opus/edits/editreason[@index='2456'] -opus/edits/editreason[@index='2457'] -opus/edits/editreason[@index='2458'] -opus/edits/editreason[@index='2459'] -opus/edits/editreason[@index='246'] -opus/edits/editreason[@index='2460'] -opus/edits/editreason[@index='2461'] -opus/edits/editreason[@index='2462'] -opus/edits/editreason[@index='2463'] -opus/edits/editreason[@index='2464'] -opus/edits/editreason[@index='2465'] -opus/edits/editreason[@index='2466'] -opus/edits/editreason[@index='2467'] -opus/edits/editreason[@index='2468'] -opus/edits/editreason[@index='2469'] -opus/edits/editreason[@index='247'] -opus/edits/editreason[@index='2470'] -opus/edits/editreason[@index='2471'] -opus/edits/editreason[@index='2472'] -opus/edits/editreason[@index='2473'] -opus/edits/editreason[@index='2474'] -opus/edits/editreason[@index='2475'] -opus/edits/editreason[@index='2476'] -opus/edits/editreason[@index='2477'] -opus/edits/editreason[@index='2478'] -opus/edits/editreason[@index='2479'] -opus/edits/editreason[@index='248'] -opus/edits/editreason[@index='2480'] -opus/edits/editreason[@index='2481'] -opus/edits/editreason[@index='2482'] -opus/edits/editreason[@index='2483'] -opus/edits/editreason[@index='2484'] -opus/edits/editreason[@index='2485'] -opus/edits/editreason[@index='2486'] -opus/edits/editreason[@index='2487'] -opus/edits/editreason[@index='2488'] -opus/edits/editreason[@index='2489'] -opus/edits/editreason[@index='249'] -opus/edits/editreason[@index='2490'] -opus/edits/editreason[@index='2491'] -opus/edits/editreason[@index='2492'] -opus/edits/editreason[@index='2493'] -opus/edits/editreason[@index='2494'] -opus/edits/editreason[@index='2495'] -opus/edits/editreason[@index='2496'] -opus/edits/editreason[@index='2497'] -opus/edits/editreason[@index='2498'] -opus/edits/editreason[@index='2499'] -opus/edits/editreason[@index='25'] -opus/edits/editreason[@index='250'] -opus/edits/editreason[@index='2500'] -opus/edits/editreason[@index='2501'] -opus/edits/editreason[@index='2502'] -opus/edits/editreason[@index='2503'] -opus/edits/editreason[@index='2504'] -opus/edits/editreason[@index='2505'] -opus/edits/editreason[@index='2506'] -opus/edits/editreason[@index='2507'] -opus/edits/editreason[@index='2508'] -opus/edits/editreason[@index='2509'] -opus/edits/editreason[@index='251'] -opus/edits/editreason[@index='2510'] -opus/edits/editreason[@index='2511'] -opus/edits/editreason[@index='2512'] -opus/edits/editreason[@index='2513'] -opus/edits/editreason[@index='2514'] -opus/edits/editreason[@index='2515'] -opus/edits/editreason[@index='2516'] -opus/edits/editreason[@index='2517'] -opus/edits/editreason[@index='2518'] -opus/edits/editreason[@index='2519'] -opus/edits/editreason[@index='252'] -opus/edits/editreason[@index='2520'] -opus/edits/editreason[@index='2521'] -opus/edits/editreason[@index='2522'] -opus/edits/editreason[@index='2523'] -opus/edits/editreason[@index='2524'] -opus/edits/editreason[@index='2525'] -opus/edits/editreason[@index='2526'] -opus/edits/editreason[@index='2527'] -opus/edits/editreason[@index='2528'] -opus/edits/editreason[@index='2529'] -opus/edits/editreason[@index='253'] -opus/edits/editreason[@index='2530'] -opus/edits/editreason[@index='2531'] -opus/edits/editreason[@index='2532'] -opus/edits/editreason[@index='2533'] -opus/edits/editreason[@index='2534'] -opus/edits/editreason[@index='2535'] -opus/edits/editreason[@index='2536'] -opus/edits/editreason[@index='2537'] -opus/edits/editreason[@index='2538'] -opus/edits/editreason[@index='2539'] -opus/edits/editreason[@index='254'] -opus/edits/editreason[@index='2540'] -opus/edits/editreason[@index='2541'] -opus/edits/editreason[@index='2542'] -opus/edits/editreason[@index='2543'] -opus/edits/editreason[@index='2544'] -opus/edits/editreason[@index='2545'] -opus/edits/editreason[@index='2546'] -opus/edits/editreason[@index='2547'] -opus/edits/editreason[@index='2548'] -opus/edits/editreason[@index='2549'] -opus/edits/editreason[@index='255'] -opus/edits/editreason[@index='2550'] -opus/edits/editreason[@index='2551'] -opus/edits/editreason[@index='2552'] -opus/edits/editreason[@index='2553'] -opus/edits/editreason[@index='2554'] -opus/edits/editreason[@index='2555'] -opus/edits/editreason[@index='2556'] -opus/edits/editreason[@index='2557'] -opus/edits/editreason[@index='2558'] -opus/edits/editreason[@index='2559'] -opus/edits/editreason[@index='256'] -opus/edits/editreason[@index='2560'] -opus/edits/editreason[@index='2561'] -opus/edits/editreason[@index='2562'] -opus/edits/editreason[@index='2563'] -opus/edits/editreason[@index='2564'] -opus/edits/editreason[@index='2565'] -opus/edits/editreason[@index='2566'] -opus/edits/editreason[@index='2567'] -opus/edits/editreason[@index='2568'] -opus/edits/editreason[@index='2569'] -opus/edits/editreason[@index='257'] -opus/edits/editreason[@index='2570'] -opus/edits/editreason[@index='2571'] -opus/edits/editreason[@index='2572'] -opus/edits/editreason[@index='2573'] -opus/edits/editreason[@index='2574'] -opus/edits/editreason[@index='2575'] -opus/edits/editreason[@index='2576'] -opus/edits/editreason[@index='2577'] -opus/edits/editreason[@index='2578'] -opus/edits/editreason[@index='2579'] -opus/edits/editreason[@index='258'] -opus/edits/editreason[@index='2580'] -opus/edits/editreason[@index='2581'] -opus/edits/editreason[@index='2582'] -opus/edits/editreason[@index='2583'] -opus/edits/editreason[@index='2584'] -opus/edits/editreason[@index='2585'] -opus/edits/editreason[@index='2586'] -opus/edits/editreason[@index='2587'] -opus/edits/editreason[@index='2588'] -opus/edits/editreason[@index='2589'] -opus/edits/editreason[@index='259'] -opus/edits/editreason[@index='2590'] -opus/edits/editreason[@index='2591'] -opus/edits/editreason[@index='2592'] -opus/edits/editreason[@index='2593'] -opus/edits/editreason[@index='2594'] -opus/edits/editreason[@index='2595'] -opus/edits/editreason[@index='2596'] -opus/edits/editreason[@index='2597'] -opus/edits/editreason[@index='2598'] -opus/edits/editreason[@index='2599'] -opus/edits/editreason[@index='26'] -opus/edits/editreason[@index='260'] -opus/edits/editreason[@index='2600'] -opus/edits/editreason[@index='2601'] -opus/edits/editreason[@index='2602'] -opus/edits/editreason[@index='2603'] -opus/edits/editreason[@index='2604'] -opus/edits/editreason[@index='2605'] -opus/edits/editreason[@index='2606'] -opus/edits/editreason[@index='2607'] -opus/edits/editreason[@index='2608'] -opus/edits/editreason[@index='2609'] -opus/edits/editreason[@index='261'] -opus/edits/editreason[@index='2610'] -opus/edits/editreason[@index='2611'] -opus/edits/editreason[@index='2612'] -opus/edits/editreason[@index='2613'] -opus/edits/editreason[@index='2614'] -opus/edits/editreason[@index='2615'] -opus/edits/editreason[@index='2616'] -opus/edits/editreason[@index='2617'] -opus/edits/editreason[@index='2618'] -opus/edits/editreason[@index='2619'] -opus/edits/editreason[@index='262'] -opus/edits/editreason[@index='2620'] -opus/edits/editreason[@index='2621'] -opus/edits/editreason[@index='2622'] -opus/edits/editreason[@index='2623'] -opus/edits/editreason[@index='2624'] -opus/edits/editreason[@index='2625'] -opus/edits/editreason[@index='2626'] -opus/edits/editreason[@index='2627'] -opus/edits/editreason[@index='2628'] -opus/edits/editreason[@index='2629'] -opus/edits/editreason[@index='263'] -opus/edits/editreason[@index='2630'] -opus/edits/editreason[@index='2631'] -opus/edits/editreason[@index='2632'] -opus/edits/editreason[@index='2633'] -opus/edits/editreason[@index='2634'] -opus/edits/editreason[@index='2635'] -opus/edits/editreason[@index='2636'] -opus/edits/editreason[@index='2637'] -opus/edits/editreason[@index='2638'] -opus/edits/editreason[@index='2639'] -opus/edits/editreason[@index='264'] -opus/edits/editreason[@index='2640'] -opus/edits/editreason[@index='2641'] -opus/edits/editreason[@index='2642'] -opus/edits/editreason[@index='2643'] -opus/edits/editreason[@index='2644'] -opus/edits/editreason[@index='2645'] -opus/edits/editreason[@index='2646'] -opus/edits/editreason[@index='2647'] -opus/edits/editreason[@index='2648'] -opus/edits/editreason[@index='2649'] -opus/edits/editreason[@index='265'] -opus/edits/editreason[@index='2650'] -opus/edits/editreason[@index='2651'] -opus/edits/editreason[@index='2652'] -opus/edits/editreason[@index='2653'] -opus/edits/editreason[@index='2654'] -opus/edits/editreason[@index='2655'] -opus/edits/editreason[@index='2656'] -opus/edits/editreason[@index='2657'] -opus/edits/editreason[@index='2658'] -opus/edits/editreason[@index='2659'] -opus/edits/editreason[@index='266'] -opus/edits/editreason[@index='2660'] -opus/edits/editreason[@index='2661'] -opus/edits/editreason[@index='2662'] -opus/edits/editreason[@index='2663'] -opus/edits/editreason[@index='2664'] -opus/edits/editreason[@index='2665'] -opus/edits/editreason[@index='2666'] -opus/edits/editreason[@index='2667'] -opus/edits/editreason[@index='2668'] -opus/edits/editreason[@index='2669'] -opus/edits/editreason[@index='267'] -opus/edits/editreason[@index='2670'] -opus/edits/editreason[@index='2671'] -opus/edits/editreason[@index='2672'] -opus/edits/editreason[@index='2673'] -opus/edits/editreason[@index='2674'] -opus/edits/editreason[@index='2675'] -opus/edits/editreason[@index='2676'] -opus/edits/editreason[@index='2677'] -opus/edits/editreason[@index='2678'] -opus/edits/editreason[@index='2679'] -opus/edits/editreason[@index='268'] -opus/edits/editreason[@index='2680'] -opus/edits/editreason[@index='2681'] -opus/edits/editreason[@index='2682'] -opus/edits/editreason[@index='2683'] -opus/edits/editreason[@index='2684'] -opus/edits/editreason[@index='2685'] -opus/edits/editreason[@index='2686'] -opus/edits/editreason[@index='2687'] -opus/edits/editreason[@index='2688'] -opus/edits/editreason[@index='2689'] -opus/edits/editreason[@index='269'] -opus/edits/editreason[@index='2690'] -opus/edits/editreason[@index='2691'] -opus/edits/editreason[@index='2692'] -opus/edits/editreason[@index='2693'] -opus/edits/editreason[@index='2694'] -opus/edits/editreason[@index='2695'] -opus/edits/editreason[@index='2696'] -opus/edits/editreason[@index='2697'] -opus/edits/editreason[@index='2698'] -opus/edits/editreason[@index='2699'] -opus/edits/editreason[@index='27'] -opus/edits/editreason[@index='270'] -opus/edits/editreason[@index='2700'] -opus/edits/editreason[@index='2701'] -opus/edits/editreason[@index='2702'] -opus/edits/editreason[@index='2703'] -opus/edits/editreason[@index='2704'] -opus/edits/editreason[@index='2705'] -opus/edits/editreason[@index='2706'] -opus/edits/editreason[@index='2707'] -opus/edits/editreason[@index='2708'] -opus/edits/editreason[@index='2709'] -opus/edits/editreason[@index='271'] -opus/edits/editreason[@index='2710'] -opus/edits/editreason[@index='2711'] -opus/edits/editreason[@index='2712'] -opus/edits/editreason[@index='2713'] -opus/edits/editreason[@index='2714'] -opus/edits/editreason[@index='2715'] -opus/edits/editreason[@index='2716'] -opus/edits/editreason[@index='2717'] -opus/edits/editreason[@index='2718'] -opus/edits/editreason[@index='2719'] -opus/edits/editreason[@index='272'] -opus/edits/editreason[@index='2720'] -opus/edits/editreason[@index='2721'] -opus/edits/editreason[@index='2722'] -opus/edits/editreason[@index='2723'] -opus/edits/editreason[@index='2724'] -opus/edits/editreason[@index='2725'] -opus/edits/editreason[@index='2726'] -opus/edits/editreason[@index='2727'] -opus/edits/editreason[@index='2728'] -opus/edits/editreason[@index='2729'] -opus/edits/editreason[@index='273'] -opus/edits/editreason[@index='2730'] -opus/edits/editreason[@index='2731'] -opus/edits/editreason[@index='2732'] -opus/edits/editreason[@index='2733'] -opus/edits/editreason[@index='2734'] -opus/edits/editreason[@index='2735'] -opus/edits/editreason[@index='2736'] -opus/edits/editreason[@index='2737'] -opus/edits/editreason[@index='2738'] -opus/edits/editreason[@index='2739'] -opus/edits/editreason[@index='274'] -opus/edits/editreason[@index='2740'] -opus/edits/editreason[@index='2741'] -opus/edits/editreason[@index='2742'] -opus/edits/editreason[@index='2743'] -opus/edits/editreason[@index='2744'] -opus/edits/editreason[@index='2745'] -opus/edits/editreason[@index='2746'] -opus/edits/editreason[@index='2747'] -opus/edits/editreason[@index='2748'] -opus/edits/editreason[@index='2749'] -opus/edits/editreason[@index='275'] -opus/edits/editreason[@index='2750'] -opus/edits/editreason[@index='2751'] -opus/edits/editreason[@index='2752'] -opus/edits/editreason[@index='2753'] -opus/edits/editreason[@index='2754'] -opus/edits/editreason[@index='2755'] -opus/edits/editreason[@index='2756'] -opus/edits/editreason[@index='2757'] -opus/edits/editreason[@index='2758'] -opus/edits/editreason[@index='2759'] -opus/edits/editreason[@index='276'] -opus/edits/editreason[@index='2760'] -opus/edits/editreason[@index='2761'] -opus/edits/editreason[@index='2762'] -opus/edits/editreason[@index='2763'] -opus/edits/editreason[@index='2764'] -opus/edits/editreason[@index='2765'] -opus/edits/editreason[@index='2766'] -opus/edits/editreason[@index='2767'] -opus/edits/editreason[@index='2768'] -opus/edits/editreason[@index='2769'] -opus/edits/editreason[@index='277'] -opus/edits/editreason[@index='2770'] -opus/edits/editreason[@index='2771'] -opus/edits/editreason[@index='2772'] -opus/edits/editreason[@index='2773'] -opus/edits/editreason[@index='2774'] -opus/edits/editreason[@index='2775'] -opus/edits/editreason[@index='2776'] -opus/edits/editreason[@index='2777'] -opus/edits/editreason[@index='2778'] -opus/edits/editreason[@index='2779'] -opus/edits/editreason[@index='278'] -opus/edits/editreason[@index='2780'] -opus/edits/editreason[@index='2781'] -opus/edits/editreason[@index='2782'] -opus/edits/editreason[@index='2783'] -opus/edits/editreason[@index='2784'] -opus/edits/editreason[@index='2785'] -opus/edits/editreason[@index='2786'] -opus/edits/editreason[@index='2787'] -opus/edits/editreason[@index='2788'] -opus/edits/editreason[@index='2789'] -opus/edits/editreason[@index='279'] -opus/edits/editreason[@index='2790'] -opus/edits/editreason[@index='2791'] -opus/edits/editreason[@index='2792'] -opus/edits/editreason[@index='2793'] -opus/edits/editreason[@index='2794'] -opus/edits/editreason[@index='2795'] -opus/edits/editreason[@index='2796'] -opus/edits/editreason[@index='2797'] -opus/edits/editreason[@index='2798'] -opus/edits/editreason[@index='2799'] -opus/edits/editreason[@index='28'] -opus/edits/editreason[@index='280'] -opus/edits/editreason[@index='2800'] -opus/edits/editreason[@index='2801'] -opus/edits/editreason[@index='2802'] -opus/edits/editreason[@index='2803'] -opus/edits/editreason[@index='2804'] -opus/edits/editreason[@index='2805'] -opus/edits/editreason[@index='2807'] -opus/edits/editreason[@index='2808'] -opus/edits/editreason[@index='2809'] -opus/edits/editreason[@index='281'] -opus/edits/editreason[@index='2810'] -opus/edits/editreason[@index='2811'] -opus/edits/editreason[@index='2812'] -opus/edits/editreason[@index='2813'] -opus/edits/editreason[@index='2814'] -opus/edits/editreason[@index='2815'] -opus/edits/editreason[@index='2816'] -opus/edits/editreason[@index='2817'] -opus/edits/editreason[@index='2818'] -opus/edits/editreason[@index='2819'] -opus/edits/editreason[@index='282'] -opus/edits/editreason[@index='2820'] -opus/edits/editreason[@index='2821'] -opus/edits/editreason[@index='2822'] -opus/edits/editreason[@index='2823'] -opus/edits/editreason[@index='2824'] -opus/edits/editreason[@index='2825'] -opus/edits/editreason[@index='2826'] -opus/edits/editreason[@index='2827'] -opus/edits/editreason[@index='2828'] -opus/edits/editreason[@index='2829'] -opus/edits/editreason[@index='283'] -opus/edits/editreason[@index='2830'] -opus/edits/editreason[@index='2831'] -opus/edits/editreason[@index='2832'] -opus/edits/editreason[@index='2833'] -opus/edits/editreason[@index='2834'] -opus/edits/editreason[@index='2835'] -opus/edits/editreason[@index='2836'] -opus/edits/editreason[@index='2837'] -opus/edits/editreason[@index='2838'] -opus/edits/editreason[@index='2839'] -opus/edits/editreason[@index='284'] -opus/edits/editreason[@index='2840'] -opus/edits/editreason[@index='2841'] -opus/edits/editreason[@index='2842'] -opus/edits/editreason[@index='2843'] -opus/edits/editreason[@index='2844'] -opus/edits/editreason[@index='2845'] -opus/edits/editreason[@index='2846'] -opus/edits/editreason[@index='2847'] -opus/edits/editreason[@index='2848'] -opus/edits/editreason[@index='2849'] -opus/edits/editreason[@index='285'] -opus/edits/editreason[@index='2850'] -opus/edits/editreason[@index='2851'] -opus/edits/editreason[@index='2852'] -opus/edits/editreason[@index='2853'] -opus/edits/editreason[@index='2854'] -opus/edits/editreason[@index='2855'] -opus/edits/editreason[@index='2856'] -opus/edits/editreason[@index='2857'] -opus/edits/editreason[@index='2858'] -opus/edits/editreason[@index='2859'] -opus/edits/editreason[@index='286'] -opus/edits/editreason[@index='2860'] -opus/edits/editreason[@index='2861'] -opus/edits/editreason[@index='2862'] -opus/edits/editreason[@index='2863'] -opus/edits/editreason[@index='2864'] -opus/edits/editreason[@index='2865'] -opus/edits/editreason[@index='2866'] -opus/edits/editreason[@index='2867'] -opus/edits/editreason[@index='2868'] -opus/edits/editreason[@index='2869'] -opus/edits/editreason[@index='287'] -opus/edits/editreason[@index='2870'] -opus/edits/editreason[@index='2871'] -opus/edits/editreason[@index='2872'] -opus/edits/editreason[@index='2873'] -opus/edits/editreason[@index='2874'] -opus/edits/editreason[@index='2875'] -opus/edits/editreason[@index='2876'] -opus/edits/editreason[@index='2877'] -opus/edits/editreason[@index='2878'] -opus/edits/editreason[@index='2879'] -opus/edits/editreason[@index='288'] -opus/edits/editreason[@index='2880'] -opus/edits/editreason[@index='2881'] -opus/edits/editreason[@index='2882'] -opus/edits/editreason[@index='2883'] -opus/edits/editreason[@index='2884'] -opus/edits/editreason[@index='2885'] -opus/edits/editreason[@index='2886'] -opus/edits/editreason[@index='2887'] -opus/edits/editreason[@index='2888'] -opus/edits/editreason[@index='2889'] -opus/edits/editreason[@index='289'] -opus/edits/editreason[@index='2890'] -opus/edits/editreason[@index='2891'] -opus/edits/editreason[@index='2892'] -opus/edits/editreason[@index='2893'] -opus/edits/editreason[@index='2894'] -opus/edits/editreason[@index='2895'] -opus/edits/editreason[@index='2896'] -opus/edits/editreason[@index='2897'] -opus/edits/editreason[@index='2898'] -opus/edits/editreason[@index='2899'] -opus/edits/editreason[@index='29'] -opus/edits/editreason[@index='290'] -opus/edits/editreason[@index='2900'] -opus/edits/editreason[@index='2901'] -opus/edits/editreason[@index='2902'] -opus/edits/editreason[@index='2903'] -opus/edits/editreason[@index='2904'] -opus/edits/editreason[@index='2905'] -opus/edits/editreason[@index='2906'] -opus/edits/editreason[@index='2907'] -opus/edits/editreason[@index='2908'] -opus/edits/editreason[@index='2909'] -opus/edits/editreason[@index='291'] -opus/edits/editreason[@index='2910'] -opus/edits/editreason[@index='2911'] -opus/edits/editreason[@index='2912'] -opus/edits/editreason[@index='2913'] -opus/edits/editreason[@index='2914'] -opus/edits/editreason[@index='2915'] -opus/edits/editreason[@index='2916'] -opus/edits/editreason[@index='2917'] -opus/edits/editreason[@index='2918'] -opus/edits/editreason[@index='2919'] -opus/edits/editreason[@index='292'] -opus/edits/editreason[@index='2920'] -opus/edits/editreason[@index='2921'] -opus/edits/editreason[@index='2922'] -opus/edits/editreason[@index='2923'] -opus/edits/editreason[@index='2924'] -opus/edits/editreason[@index='2925'] -opus/edits/editreason[@index='2926'] -opus/edits/editreason[@index='2927'] -opus/edits/editreason[@index='2928'] -opus/edits/editreason[@index='2929'] -opus/edits/editreason[@index='293'] -opus/edits/editreason[@index='2930'] -opus/edits/editreason[@index='2931'] -opus/edits/editreason[@index='2932'] -opus/edits/editreason[@index='2933'] -opus/edits/editreason[@index='2934'] -opus/edits/editreason[@index='2935'] -opus/edits/editreason[@index='2936'] -opus/edits/editreason[@index='2937'] -opus/edits/editreason[@index='2938'] -opus/edits/editreason[@index='2939'] -opus/edits/editreason[@index='294'] -opus/edits/editreason[@index='2940'] -opus/edits/editreason[@index='2941'] -opus/edits/editreason[@index='2942'] -opus/edits/editreason[@index='2943'] -opus/edits/editreason[@index='2944'] -opus/edits/editreason[@index='2945'] -opus/edits/editreason[@index='2946'] -opus/edits/editreason[@index='2947'] -opus/edits/editreason[@index='2948'] -opus/edits/editreason[@index='2949'] -opus/edits/editreason[@index='295'] -opus/edits/editreason[@index='2950'] -opus/edits/editreason[@index='2951'] -opus/edits/editreason[@index='2952'] -opus/edits/editreason[@index='2953'] -opus/edits/editreason[@index='2954'] -opus/edits/editreason[@index='2955'] -opus/edits/editreason[@index='2956'] -opus/edits/editreason[@index='2957'] -opus/edits/editreason[@index='2958'] -opus/edits/editreason[@index='2959'] -opus/edits/editreason[@index='296'] -opus/edits/editreason[@index='2960'] -opus/edits/editreason[@index='2961'] -opus/edits/editreason[@index='2962'] -opus/edits/editreason[@index='2963'] -opus/edits/editreason[@index='2964'] -opus/edits/editreason[@index='2965'] -opus/edits/editreason[@index='2966'] -opus/edits/editreason[@index='2967'] -opus/edits/editreason[@index='2968'] -opus/edits/editreason[@index='2969'] -opus/edits/editreason[@index='297'] -opus/edits/editreason[@index='2970'] -opus/edits/editreason[@index='2971'] -opus/edits/editreason[@index='2972'] -opus/edits/editreason[@index='2973'] -opus/edits/editreason[@index='2974'] -opus/edits/editreason[@index='2975'] -opus/edits/editreason[@index='2976'] -opus/edits/editreason[@index='2977'] -opus/edits/editreason[@index='2978'] -opus/edits/editreason[@index='2979'] -opus/edits/editreason[@index='298'] -opus/edits/editreason[@index='2980'] -opus/edits/editreason[@index='2981'] -opus/edits/editreason[@index='2982'] -opus/edits/editreason[@index='2983'] -opus/edits/editreason[@index='2984'] -opus/edits/editreason[@index='2985'] -opus/edits/editreason[@index='2986'] -opus/edits/editreason[@index='2987'] -opus/edits/editreason[@index='2988'] -opus/edits/editreason[@index='2989'] -opus/edits/editreason[@index='299'] -opus/edits/editreason[@index='2990'] -opus/edits/editreason[@index='2991'] -opus/edits/editreason[@index='2992'] -opus/edits/editreason[@index='2993'] -opus/edits/editreason[@index='2994'] -opus/edits/editreason[@index='2995'] -opus/edits/editreason[@index='2996'] -opus/edits/editreason[@index='2997'] -opus/edits/editreason[@index='2998'] -opus/edits/editreason[@index='2999'] -opus/edits/editreason[@index='3'] -opus/edits/editreason[@index='30'] -opus/edits/editreason[@index='300'] -opus/edits/editreason[@index='3000'] -opus/edits/editreason[@index='3001'] -opus/edits/editreason[@index='3002'] -opus/edits/editreason[@index='3003'] -opus/edits/editreason[@index='3004'] -opus/edits/editreason[@index='3005'] -opus/edits/editreason[@index='3006'] -opus/edits/editreason[@index='3007'] -opus/edits/editreason[@index='3008'] -opus/edits/editreason[@index='3009'] -opus/edits/editreason[@index='301'] -opus/edits/editreason[@index='3010'] -opus/edits/editreason[@index='3011'] -opus/edits/editreason[@index='3012'] -opus/edits/editreason[@index='3013'] -opus/edits/editreason[@index='3014'] -opus/edits/editreason[@index='3015'] -opus/edits/editreason[@index='3016'] -opus/edits/editreason[@index='3017'] -opus/edits/editreason[@index='3018'] -opus/edits/editreason[@index='3019'] -opus/edits/editreason[@index='302'] -opus/edits/editreason[@index='3020'] -opus/edits/editreason[@index='3021'] -opus/edits/editreason[@index='3022'] -opus/edits/editreason[@index='3023'] -opus/edits/editreason[@index='3024'] -opus/edits/editreason[@index='3025'] -opus/edits/editreason[@index='3026'] -opus/edits/editreason[@index='3027'] -opus/edits/editreason[@index='3028'] -opus/edits/editreason[@index='3029'] -opus/edits/editreason[@index='303'] -opus/edits/editreason[@index='3030'] -opus/edits/editreason[@index='3031'] -opus/edits/editreason[@index='3032'] -opus/edits/editreason[@index='3033'] -opus/edits/editreason[@index='3034'] -opus/edits/editreason[@index='3035'] -opus/edits/editreason[@index='3036'] -opus/edits/editreason[@index='3037'] -opus/edits/editreason[@index='3038'] -opus/edits/editreason[@index='3039'] -opus/edits/editreason[@index='304'] -opus/edits/editreason[@index='3040'] -opus/edits/editreason[@index='3041'] -opus/edits/editreason[@index='3042'] -opus/edits/editreason[@index='3043'] -opus/edits/editreason[@index='3044'] -opus/edits/editreason[@index='3045'] -opus/edits/editreason[@index='3046'] -opus/edits/editreason[@index='3047'] -opus/edits/editreason[@index='3048'] -opus/edits/editreason[@index='3049'] -opus/edits/editreason[@index='305'] -opus/edits/editreason[@index='3050'] -opus/edits/editreason[@index='3051'] -opus/edits/editreason[@index='3052'] -opus/edits/editreason[@index='3053'] -opus/edits/editreason[@index='3054'] -opus/edits/editreason[@index='3055'] -opus/edits/editreason[@index='3057'] -opus/edits/editreason[@index='3058'] -opus/edits/editreason[@index='3059'] -opus/edits/editreason[@index='306'] -opus/edits/editreason[@index='3060'] -opus/edits/editreason[@index='3061'] -opus/edits/editreason[@index='3062'] -opus/edits/editreason[@index='3063'] -opus/edits/editreason[@index='3064'] -opus/edits/editreason[@index='3065'] -opus/edits/editreason[@index='3066'] -opus/edits/editreason[@index='3067'] -opus/edits/editreason[@index='3068'] -opus/edits/editreason[@index='3069'] -opus/edits/editreason[@index='307'] -opus/edits/editreason[@index='3070'] -opus/edits/editreason[@index='3071'] -opus/edits/editreason[@index='3072'] -opus/edits/editreason[@index='3073'] -opus/edits/editreason[@index='3074'] -opus/edits/editreason[@index='3075'] -opus/edits/editreason[@index='3076'] -opus/edits/editreason[@index='3077'] -opus/edits/editreason[@index='3078'] -opus/edits/editreason[@index='3079'] -opus/edits/editreason[@index='308'] -opus/edits/editreason[@index='3080'] -opus/edits/editreason[@index='3081'] -opus/edits/editreason[@index='3082'] -opus/edits/editreason[@index='3083'] -opus/edits/editreason[@index='3084'] -opus/edits/editreason[@index='3085'] -opus/edits/editreason[@index='3086'] -opus/edits/editreason[@index='3087'] -opus/edits/editreason[@index='3088'] -opus/edits/editreason[@index='3089'] -opus/edits/editreason[@index='309'] -opus/edits/editreason[@index='3090'] -opus/edits/editreason[@index='3091'] -opus/edits/editreason[@index='3092'] -opus/edits/editreason[@index='3093'] -opus/edits/editreason[@index='3094'] -opus/edits/editreason[@index='3095'] -opus/edits/editreason[@index='3096'] -opus/edits/editreason[@index='3097'] -opus/edits/editreason[@index='3098'] -opus/edits/editreason[@index='3099'] -opus/edits/editreason[@index='31'] -opus/edits/editreason[@index='310'] -opus/edits/editreason[@index='3100'] -opus/edits/editreason[@index='3101'] -opus/edits/editreason[@index='3102'] -opus/edits/editreason[@index='3103'] -opus/edits/editreason[@index='3104'] -opus/edits/editreason[@index='3105'] -opus/edits/editreason[@index='3106'] -opus/edits/editreason[@index='3107'] -opus/edits/editreason[@index='3108'] -opus/edits/editreason[@index='3109'] -opus/edits/editreason[@index='311'] -opus/edits/editreason[@index='3110'] -opus/edits/editreason[@index='3111'] -opus/edits/editreason[@index='3112'] -opus/edits/editreason[@index='3113'] -opus/edits/editreason[@index='3114'] -opus/edits/editreason[@index='3115'] -opus/edits/editreason[@index='3116'] -opus/edits/editreason[@index='3117'] -opus/edits/editreason[@index='3118'] -opus/edits/editreason[@index='3119'] -opus/edits/editreason[@index='312'] -opus/edits/editreason[@index='3120'] -opus/edits/editreason[@index='3121'] -opus/edits/editreason[@index='3122'] -opus/edits/editreason[@index='3123'] -opus/edits/editreason[@index='3124'] -opus/edits/editreason[@index='3125'] -opus/edits/editreason[@index='3126'] -opus/edits/editreason[@index='3127'] -opus/edits/editreason[@index='3128'] -opus/edits/editreason[@index='3129'] -opus/edits/editreason[@index='313'] -opus/edits/editreason[@index='3130'] -opus/edits/editreason[@index='3131'] -opus/edits/editreason[@index='3132'] -opus/edits/editreason[@index='3133'] -opus/edits/editreason[@index='3134'] -opus/edits/editreason[@index='3135'] -opus/edits/editreason[@index='3136'] -opus/edits/editreason[@index='3137'] -opus/edits/editreason[@index='3138'] -opus/edits/editreason[@index='3139'] -opus/edits/editreason[@index='314'] -opus/edits/editreason[@index='3140'] -opus/edits/editreason[@index='3141'] -opus/edits/editreason[@index='3142'] -opus/edits/editreason[@index='3143'] -opus/edits/editreason[@index='3144'] -opus/edits/editreason[@index='3145'] -opus/edits/editreason[@index='3146'] -opus/edits/editreason[@index='3147'] -opus/edits/editreason[@index='3148'] -opus/edits/editreason[@index='3149'] -opus/edits/editreason[@index='315'] -opus/edits/editreason[@index='3150'] -opus/edits/editreason[@index='3151'] -opus/edits/editreason[@index='3152'] -opus/edits/editreason[@index='3153'] -opus/edits/editreason[@index='3154'] -opus/edits/editreason[@index='3155'] -opus/edits/editreason[@index='3156'] -opus/edits/editreason[@index='3157'] -opus/edits/editreason[@index='3158'] -opus/edits/editreason[@index='3159'] -opus/edits/editreason[@index='316'] -opus/edits/editreason[@index='3160'] -opus/edits/editreason[@index='3161'] -opus/edits/editreason[@index='3162'] -opus/edits/editreason[@index='3163'] -opus/edits/editreason[@index='3164'] -opus/edits/editreason[@index='3165'] -opus/edits/editreason[@index='3166'] -opus/edits/editreason[@index='3167'] -opus/edits/editreason[@index='3168'] -opus/edits/editreason[@index='3169'] -opus/edits/editreason[@index='317'] -opus/edits/editreason[@index='3170'] -opus/edits/editreason[@index='3171'] -opus/edits/editreason[@index='3172'] -opus/edits/editreason[@index='3173'] -opus/edits/editreason[@index='3174'] -opus/edits/editreason[@index='3175'] -opus/edits/editreason[@index='3176'] -opus/edits/editreason[@index='3177'] -opus/edits/editreason[@index='3178'] -opus/edits/editreason[@index='3179'] -opus/edits/editreason[@index='318'] -opus/edits/editreason[@index='3180'] -opus/edits/editreason[@index='3181'] -opus/edits/editreason[@index='3182'] -opus/edits/editreason[@index='3183'] -opus/edits/editreason[@index='3184'] -opus/edits/editreason[@index='3185'] -opus/edits/editreason[@index='3186'] -opus/edits/editreason[@index='3187'] -opus/edits/editreason[@index='3188'] -opus/edits/editreason[@index='3189'] -opus/edits/editreason[@index='319'] -opus/edits/editreason[@index='3190'] -opus/edits/editreason[@index='3191'] -opus/edits/editreason[@index='3192'] -opus/edits/editreason[@index='3193'] -opus/edits/editreason[@index='3194'] -opus/edits/editreason[@index='3195'] -opus/edits/editreason[@index='3196'] -opus/edits/editreason[@index='3197'] -opus/edits/editreason[@index='3198'] -opus/edits/editreason[@index='3199'] -opus/edits/editreason[@index='32'] -opus/edits/editreason[@index='320'] -opus/edits/editreason[@index='3200'] -opus/edits/editreason[@index='3201'] -opus/edits/editreason[@index='3202'] -opus/edits/editreason[@index='3203'] -opus/edits/editreason[@index='3204'] -opus/edits/editreason[@index='3205'] -opus/edits/editreason[@index='3206'] -opus/edits/editreason[@index='3207'] -opus/edits/editreason[@index='3208'] -opus/edits/editreason[@index='3209'] -opus/edits/editreason[@index='321'] -opus/edits/editreason[@index='3210'] -opus/edits/editreason[@index='3211'] -opus/edits/editreason[@index='3212'] -opus/edits/editreason[@index='3213'] -opus/edits/editreason[@index='3214'] -opus/edits/editreason[@index='3215'] -opus/edits/editreason[@index='3216'] -opus/edits/editreason[@index='3217'] -opus/edits/editreason[@index='3218'] -opus/edits/editreason[@index='3219'] -opus/edits/editreason[@index='322'] -opus/edits/editreason[@index='3220'] -opus/edits/editreason[@index='3221'] -opus/edits/editreason[@index='3222'] -opus/edits/editreason[@index='3223'] -opus/edits/editreason[@index='3224'] -opus/edits/editreason[@index='3225'] -opus/edits/editreason[@index='3226'] -opus/edits/editreason[@index='3227'] -opus/edits/editreason[@index='3228'] -opus/edits/editreason[@index='3229'] -opus/edits/editreason[@index='323'] -opus/edits/editreason[@index='3230'] -opus/edits/editreason[@index='3231'] -opus/edits/editreason[@index='3232'] -opus/edits/editreason[@index='3233'] -opus/edits/editreason[@index='3234'] -opus/edits/editreason[@index='3235'] -opus/edits/editreason[@index='3236'] -opus/edits/editreason[@index='3237'] -opus/edits/editreason[@index='3238'] -opus/edits/editreason[@index='3239'] -opus/edits/editreason[@index='324'] -opus/edits/editreason[@index='3240'] -opus/edits/editreason[@index='3241'] -opus/edits/editreason[@index='3242'] -opus/edits/editreason[@index='3243'] -opus/edits/editreason[@index='3244'] -opus/edits/editreason[@index='3245'] -opus/edits/editreason[@index='3246'] -opus/edits/editreason[@index='3247'] -opus/edits/editreason[@index='3248'] -opus/edits/editreason[@index='3249'] -opus/edits/editreason[@index='325'] -opus/edits/editreason[@index='3250'] -opus/edits/editreason[@index='3251'] -opus/edits/editreason[@index='3252'] -opus/edits/editreason[@index='3253'] -opus/edits/editreason[@index='3254'] -opus/edits/editreason[@index='3255'] -opus/edits/editreason[@index='3256'] -opus/edits/editreason[@index='3257'] -opus/edits/editreason[@index='3258'] -opus/edits/editreason[@index='3259'] -opus/edits/editreason[@index='326'] -opus/edits/editreason[@index='3260'] -opus/edits/editreason[@index='3261'] -opus/edits/editreason[@index='3262'] -opus/edits/editreason[@index='3263'] -opus/edits/editreason[@index='3264'] -opus/edits/editreason[@index='3265'] -opus/edits/editreason[@index='3266'] -opus/edits/editreason[@index='3267'] -opus/edits/editreason[@index='3268'] -opus/edits/editreason[@index='3269'] -opus/edits/editreason[@index='327'] -opus/edits/editreason[@index='3270'] -opus/edits/editreason[@index='3271'] -opus/edits/editreason[@index='3272'] -opus/edits/editreason[@index='3273'] -opus/edits/editreason[@index='3274'] -opus/edits/editreason[@index='3275'] -opus/edits/editreason[@index='3276'] -opus/edits/editreason[@index='3277'] -opus/edits/editreason[@index='3278'] -opus/edits/editreason[@index='3279'] -opus/edits/editreason[@index='328'] -opus/edits/editreason[@index='3280'] -opus/edits/editreason[@index='3281'] -opus/edits/editreason[@index='3282'] -opus/edits/editreason[@index='3283'] -opus/edits/editreason[@index='3284'] -opus/edits/editreason[@index='3285'] -opus/edits/editreason[@index='3286'] -opus/edits/editreason[@index='3287'] -opus/edits/editreason[@index='3288'] -opus/edits/editreason[@index='3289'] -opus/edits/editreason[@index='329'] -opus/edits/editreason[@index='3290'] -opus/edits/editreason[@index='3291'] -opus/edits/editreason[@index='3292'] -opus/edits/editreason[@index='3293'] -opus/edits/editreason[@index='3294'] -opus/edits/editreason[@index='3295'] -opus/edits/editreason[@index='3296'] -opus/edits/editreason[@index='3297'] -opus/edits/editreason[@index='3298'] -opus/edits/editreason[@index='3299'] -opus/edits/editreason[@index='33'] -opus/edits/editreason[@index='330'] -opus/edits/editreason[@index='3300'] -opus/edits/editreason[@index='3301'] -opus/edits/editreason[@index='3302'] -opus/edits/editreason[@index='3303'] -opus/edits/editreason[@index='3304'] -opus/edits/editreason[@index='3305'] -opus/edits/editreason[@index='3306'] -opus/edits/editreason[@index='3307'] -opus/edits/editreason[@index='3308'] -opus/edits/editreason[@index='3309'] -opus/edits/editreason[@index='331'] -opus/edits/editreason[@index='3310'] -opus/edits/editreason[@index='3311'] -opus/edits/editreason[@index='3312'] -opus/edits/editreason[@index='3313'] -opus/edits/editreason[@index='3314'] -opus/edits/editreason[@index='3315'] -opus/edits/editreason[@index='3316'] -opus/edits/editreason[@index='3317'] -opus/edits/editreason[@index='3318'] -opus/edits/editreason[@index='3319'] -opus/edits/editreason[@index='332'] -opus/edits/editreason[@index='3320'] -opus/edits/editreason[@index='3321'] -opus/edits/editreason[@index='3322'] -opus/edits/editreason[@index='3323'] -opus/edits/editreason[@index='3324'] -opus/edits/editreason[@index='3325'] -opus/edits/editreason[@index='3326'] -opus/edits/editreason[@index='3327'] -opus/edits/editreason[@index='3328'] -opus/edits/editreason[@index='3329'] -opus/edits/editreason[@index='333'] -opus/edits/editreason[@index='3330'] -opus/edits/editreason[@index='3331'] -opus/edits/editreason[@index='3332'] -opus/edits/editreason[@index='3333'] -opus/edits/editreason[@index='3334'] -opus/edits/editreason[@index='3335'] -opus/edits/editreason[@index='3336'] -opus/edits/editreason[@index='3337'] -opus/edits/editreason[@index='3338'] -opus/edits/editreason[@index='3339'] -opus/edits/editreason[@index='334'] -opus/edits/editreason[@index='3340'] -opus/edits/editreason[@index='3342'] -opus/edits/editreason[@index='3343'] -opus/edits/editreason[@index='3344'] -opus/edits/editreason[@index='3345'] -opus/edits/editreason[@index='3346'] -opus/edits/editreason[@index='3347'] -opus/edits/editreason[@index='3348'] -opus/edits/editreason[@index='3349'] -opus/edits/editreason[@index='335'] -opus/edits/editreason[@index='3350'] -opus/edits/editreason[@index='3351'] -opus/edits/editreason[@index='3352'] -opus/edits/editreason[@index='3353'] -opus/edits/editreason[@index='3354'] -opus/edits/editreason[@index='3357'] -opus/edits/editreason[@index='3358'] -opus/edits/editreason[@index='3359'] -opus/edits/editreason[@index='336'] -opus/edits/editreason[@index='3360'] -opus/edits/editreason[@index='3361'] -opus/edits/editreason[@index='3362'] -opus/edits/editreason[@index='3363'] -opus/edits/editreason[@index='3364'] -opus/edits/editreason[@index='3365'] -opus/edits/editreason[@index='3366'] -opus/edits/editreason[@index='3367'] -opus/edits/editreason[@index='3368'] -opus/edits/editreason[@index='3369'] -opus/edits/editreason[@index='337'] -opus/edits/editreason[@index='3370'] -opus/edits/editreason[@index='3371'] -opus/edits/editreason[@index='3372'] -opus/edits/editreason[@index='3373'] -opus/edits/editreason[@index='3374'] -opus/edits/editreason[@index='3375'] -opus/edits/editreason[@index='3376'] -opus/edits/editreason[@index='3377'] -opus/edits/editreason[@index='3378'] -opus/edits/editreason[@index='3379'] -opus/edits/editreason[@index='338'] -opus/edits/editreason[@index='3380'] -opus/edits/editreason[@index='3381'] -opus/edits/editreason[@index='3382'] -opus/edits/editreason[@index='3383'] -opus/edits/editreason[@index='3384'] -opus/edits/editreason[@index='3385'] -opus/edits/editreason[@index='3386'] -opus/edits/editreason[@index='3387'] -opus/edits/editreason[@index='3388'] -opus/edits/editreason[@index='3389'] -opus/edits/editreason[@index='339'] -opus/edits/editreason[@index='3390'] -opus/edits/editreason[@index='3391'] -opus/edits/editreason[@index='3392'] -opus/edits/editreason[@index='3393'] -opus/edits/editreason[@index='3394'] -opus/edits/editreason[@index='3395'] -opus/edits/editreason[@index='3396'] -opus/edits/editreason[@index='3397'] -opus/edits/editreason[@index='3398'] -opus/edits/editreason[@index='3399'] -opus/edits/editreason[@index='34'] -opus/edits/editreason[@index='340'] -opus/edits/editreason[@index='3400'] -opus/edits/editreason[@index='3401'] -opus/edits/editreason[@index='3402'] -opus/edits/editreason[@index='3403'] -opus/edits/editreason[@index='3404'] -opus/edits/editreason[@index='3405'] -opus/edits/editreason[@index='3406'] -opus/edits/editreason[@index='3407'] -opus/edits/editreason[@index='3408'] -opus/edits/editreason[@index='3409'] -opus/edits/editreason[@index='341'] -opus/edits/editreason[@index='3410'] -opus/edits/editreason[@index='3411'] -opus/edits/editreason[@index='3412'] -opus/edits/editreason[@index='3413'] -opus/edits/editreason[@index='3414'] -opus/edits/editreason[@index='3415'] -opus/edits/editreason[@index='3416'] -opus/edits/editreason[@index='3417'] -opus/edits/editreason[@index='3418'] -opus/edits/editreason[@index='3419'] -opus/edits/editreason[@index='342'] -opus/edits/editreason[@index='3420'] -opus/edits/editreason[@index='3421'] -opus/edits/editreason[@index='3422'] -opus/edits/editreason[@index='3423'] -opus/edits/editreason[@index='3424'] -opus/edits/editreason[@index='3425'] -opus/edits/editreason[@index='3426'] -opus/edits/editreason[@index='3427'] -opus/edits/editreason[@index='3428'] -opus/edits/editreason[@index='3429'] -opus/edits/editreason[@index='343'] -opus/edits/editreason[@index='3430'] -opus/edits/editreason[@index='3431'] -opus/edits/editreason[@index='3432'] -opus/edits/editreason[@index='3433'] -opus/edits/editreason[@index='3434'] -opus/edits/editreason[@index='3435'] -opus/edits/editreason[@index='3436'] -opus/edits/editreason[@index='3437'] -opus/edits/editreason[@index='3438'] -opus/edits/editreason[@index='3439'] -opus/edits/editreason[@index='344'] -opus/edits/editreason[@index='3440'] -opus/edits/editreason[@index='3441'] -opus/edits/editreason[@index='3442'] -opus/edits/editreason[@index='3443'] -opus/edits/editreason[@index='3444'] -opus/edits/editreason[@index='3445'] -opus/edits/editreason[@index='3446'] -opus/edits/editreason[@index='3447'] -opus/edits/editreason[@index='3448'] -opus/edits/editreason[@index='3449'] -opus/edits/editreason[@index='345'] -opus/edits/editreason[@index='3450'] -opus/edits/editreason[@index='3451'] -opus/edits/editreason[@index='3452'] -opus/edits/editreason[@index='3453'] -opus/edits/editreason[@index='3454'] -opus/edits/editreason[@index='3455'] -opus/edits/editreason[@index='3456'] -opus/edits/editreason[@index='3457'] -opus/edits/editreason[@index='3458'] -opus/edits/editreason[@index='3459'] -opus/edits/editreason[@index='346'] -opus/edits/editreason[@index='3460'] -opus/edits/editreason[@index='3461'] -opus/edits/editreason[@index='3462'] -opus/edits/editreason[@index='3463'] -opus/edits/editreason[@index='3464'] -opus/edits/editreason[@index='3465'] -opus/edits/editreason[@index='3466'] -opus/edits/editreason[@index='3467'] -opus/edits/editreason[@index='3468'] -opus/edits/editreason[@index='3469'] -opus/edits/editreason[@index='347'] -opus/edits/editreason[@index='3470'] -opus/edits/editreason[@index='3471'] -opus/edits/editreason[@index='3472'] -opus/edits/editreason[@index='3473'] -opus/edits/editreason[@index='3474'] -opus/edits/editreason[@index='3475'] -opus/edits/editreason[@index='3476'] -opus/edits/editreason[@index='3477'] -opus/edits/editreason[@index='3478'] -opus/edits/editreason[@index='3479'] -opus/edits/editreason[@index='348'] -opus/edits/editreason[@index='3480'] -opus/edits/editreason[@index='3481'] -opus/edits/editreason[@index='3482'] -opus/edits/editreason[@index='3483'] -opus/edits/editreason[@index='3484'] -opus/edits/editreason[@index='3485'] -opus/edits/editreason[@index='3486'] -opus/edits/editreason[@index='3487'] -opus/edits/editreason[@index='3488'] -opus/edits/editreason[@index='3489'] -opus/edits/editreason[@index='349'] -opus/edits/editreason[@index='3490'] -opus/edits/editreason[@index='3491'] -opus/edits/editreason[@index='3492'] -opus/edits/editreason[@index='3493'] -opus/edits/editreason[@index='3494'] -opus/edits/editreason[@index='3495'] -opus/edits/editreason[@index='3496'] -opus/edits/editreason[@index='3497'] -opus/edits/editreason[@index='3498'] -opus/edits/editreason[@index='3499'] -opus/edits/editreason[@index='35'] -opus/edits/editreason[@index='350'] -opus/edits/editreason[@index='3500'] -opus/edits/editreason[@index='3501'] -opus/edits/editreason[@index='3503'] -opus/edits/editreason[@index='3504'] -opus/edits/editreason[@index='3505'] -opus/edits/editreason[@index='3506'] -opus/edits/editreason[@index='3507'] -opus/edits/editreason[@index='3508'] -opus/edits/editreason[@index='3509'] -opus/edits/editreason[@index='351'] -opus/edits/editreason[@index='3510'] -opus/edits/editreason[@index='3511'] -opus/edits/editreason[@index='3512'] -opus/edits/editreason[@index='3513'] -opus/edits/editreason[@index='3514'] -opus/edits/editreason[@index='3515'] -opus/edits/editreason[@index='3516'] -opus/edits/editreason[@index='3517'] -opus/edits/editreason[@index='3518'] -opus/edits/editreason[@index='3519'] -opus/edits/editreason[@index='352'] -opus/edits/editreason[@index='3520'] -opus/edits/editreason[@index='3521'] -opus/edits/editreason[@index='3522'] -opus/edits/editreason[@index='3523'] -opus/edits/editreason[@index='3524'] -opus/edits/editreason[@index='3525'] -opus/edits/editreason[@index='3526'] -opus/edits/editreason[@index='3527'] -opus/edits/editreason[@index='3528'] -opus/edits/editreason[@index='3529'] -opus/edits/editreason[@index='353'] -opus/edits/editreason[@index='3530'] -opus/edits/editreason[@index='3531'] -opus/edits/editreason[@index='3532'] -opus/edits/editreason[@index='3533'] -opus/edits/editreason[@index='3534'] -opus/edits/editreason[@index='3535'] -opus/edits/editreason[@index='3536'] -opus/edits/editreason[@index='3537'] -opus/edits/editreason[@index='3538'] -opus/edits/editreason[@index='3539'] -opus/edits/editreason[@index='354'] -opus/edits/editreason[@index='3540'] -opus/edits/editreason[@index='3541'] -opus/edits/editreason[@index='3542'] -opus/edits/editreason[@index='3543'] -opus/edits/editreason[@index='3544'] -opus/edits/editreason[@index='3545'] -opus/edits/editreason[@index='3546'] -opus/edits/editreason[@index='3547'] -opus/edits/editreason[@index='3548'] -opus/edits/editreason[@index='3549'] -opus/edits/editreason[@index='355'] -opus/edits/editreason[@index='3550'] -opus/edits/editreason[@index='3551'] -opus/edits/editreason[@index='3552'] -opus/edits/editreason[@index='3553'] -opus/edits/editreason[@index='3554'] -opus/edits/editreason[@index='3555'] -opus/edits/editreason[@index='3556'] -opus/edits/editreason[@index='3557'] -opus/edits/editreason[@index='3558'] -opus/edits/editreason[@index='3559'] -opus/edits/editreason[@index='356'] -opus/edits/editreason[@index='3560'] -opus/edits/editreason[@index='3561'] -opus/edits/editreason[@index='3562'] -opus/edits/editreason[@index='3563'] -opus/edits/editreason[@index='3564'] -opus/edits/editreason[@index='3565'] -opus/edits/editreason[@index='3566'] -opus/edits/editreason[@index='3567'] -opus/edits/editreason[@index='3568'] -opus/edits/editreason[@index='3569'] -opus/edits/editreason[@index='357'] -opus/edits/editreason[@index='3570'] -opus/edits/editreason[@index='3571'] -opus/edits/editreason[@index='3572'] -opus/edits/editreason[@index='3573'] -opus/edits/editreason[@index='3574'] -opus/edits/editreason[@index='3575'] -opus/edits/editreason[@index='3576'] -opus/edits/editreason[@index='3577'] -opus/edits/editreason[@index='3578'] -opus/edits/editreason[@index='3579'] -opus/edits/editreason[@index='358'] -opus/edits/editreason[@index='3580'] -opus/edits/editreason[@index='3581'] -opus/edits/editreason[@index='3582'] -opus/edits/editreason[@index='3583'] -opus/edits/editreason[@index='3584'] -opus/edits/editreason[@index='3585'] -opus/edits/editreason[@index='3586'] -opus/edits/editreason[@index='3587'] -opus/edits/editreason[@index='3588'] -opus/edits/editreason[@index='3589'] -opus/edits/editreason[@index='359'] -opus/edits/editreason[@index='3590'] -opus/edits/editreason[@index='3591'] -opus/edits/editreason[@index='3592'] -opus/edits/editreason[@index='3593'] -opus/edits/editreason[@index='3594'] -opus/edits/editreason[@index='3595'] -opus/edits/editreason[@index='3596'] -opus/edits/editreason[@index='3597'] -opus/edits/editreason[@index='3598'] -opus/edits/editreason[@index='3599'] -opus/edits/editreason[@index='36'] -opus/edits/editreason[@index='360'] -opus/edits/editreason[@index='3600'] -opus/edits/editreason[@index='3601'] -opus/edits/editreason[@index='3602'] -opus/edits/editreason[@index='3603'] -opus/edits/editreason[@index='3604'] -opus/edits/editreason[@index='3605'] -opus/edits/editreason[@index='3606'] -opus/edits/editreason[@index='3607'] -opus/edits/editreason[@index='3608'] -opus/edits/editreason[@index='3609'] -opus/edits/editreason[@index='361'] -opus/edits/editreason[@index='3610'] -opus/edits/editreason[@index='3611'] -opus/edits/editreason[@index='3612'] -opus/edits/editreason[@index='3613'] -opus/edits/editreason[@index='3614'] -opus/edits/editreason[@index='3615'] -opus/edits/editreason[@index='3616'] -opus/edits/editreason[@index='3617'] -opus/edits/editreason[@index='3618'] -opus/edits/editreason[@index='3619'] -opus/edits/editreason[@index='362'] -opus/edits/editreason[@index='3620'] -opus/edits/editreason[@index='3621'] -opus/edits/editreason[@index='3622'] -opus/edits/editreason[@index='3623'] -opus/edits/editreason[@index='3624'] -opus/edits/editreason[@index='3625'] -opus/edits/editreason[@index='3626'] -opus/edits/editreason[@index='3627'] -opus/edits/editreason[@index='3628'] -opus/edits/editreason[@index='3629'] -opus/edits/editreason[@index='363'] -opus/edits/editreason[@index='3630'] -opus/edits/editreason[@index='3631'] -opus/edits/editreason[@index='3632'] -opus/edits/editreason[@index='3633'] -opus/edits/editreason[@index='3634'] -opus/edits/editreason[@index='3635'] -opus/edits/editreason[@index='3636'] -opus/edits/editreason[@index='3637'] -opus/edits/editreason[@index='3638'] -opus/edits/editreason[@index='3639'] -opus/edits/editreason[@index='364'] -opus/edits/editreason[@index='3640'] -opus/edits/editreason[@index='3641'] -opus/edits/editreason[@index='3642'] -opus/edits/editreason[@index='3643'] -opus/edits/editreason[@index='3644'] -opus/edits/editreason[@index='3645'] -opus/edits/editreason[@index='3646'] -opus/edits/editreason[@index='3647'] -opus/edits/editreason[@index='3648'] -opus/edits/editreason[@index='3649'] -opus/edits/editreason[@index='365'] -opus/edits/editreason[@index='3650'] -opus/edits/editreason[@index='3651'] -opus/edits/editreason[@index='3652'] -opus/edits/editreason[@index='3653'] -opus/edits/editreason[@index='3654'] -opus/edits/editreason[@index='3655'] -opus/edits/editreason[@index='3656'] -opus/edits/editreason[@index='3657'] -opus/edits/editreason[@index='3658'] -opus/edits/editreason[@index='3659'] -opus/edits/editreason[@index='366'] -opus/edits/editreason[@index='3660'] -opus/edits/editreason[@index='3661'] -opus/edits/editreason[@index='3662'] -opus/edits/editreason[@index='3663'] -opus/edits/editreason[@index='3664'] -opus/edits/editreason[@index='3665'] -opus/edits/editreason[@index='3666'] -opus/edits/editreason[@index='3667'] -opus/edits/editreason[@index='3668'] -opus/edits/editreason[@index='3669'] -opus/edits/editreason[@index='367'] -opus/edits/editreason[@index='3670'] -opus/edits/editreason[@index='3671'] -opus/edits/editreason[@index='3672'] -opus/edits/editreason[@index='3673'] -opus/edits/editreason[@index='3674'] -opus/edits/editreason[@index='3675'] -opus/edits/editreason[@index='3676'] -opus/edits/editreason[@index='3677'] -opus/edits/editreason[@index='3678'] -opus/edits/editreason[@index='3679'] -opus/edits/editreason[@index='368'] -opus/edits/editreason[@index='3680'] -opus/edits/editreason[@index='3681'] -opus/edits/editreason[@index='3682'] -opus/edits/editreason[@index='3683'] -opus/edits/editreason[@index='3684'] -opus/edits/editreason[@index='3685'] -opus/edits/editreason[@index='3686'] -opus/edits/editreason[@index='3687'] -opus/edits/editreason[@index='3688'] -opus/edits/editreason[@index='3689'] -opus/edits/editreason[@index='369'] -opus/edits/editreason[@index='3690'] -opus/edits/editreason[@index='3691'] -opus/edits/editreason[@index='3692'] -opus/edits/editreason[@index='3693'] -opus/edits/editreason[@index='3694'] -opus/edits/editreason[@index='3695'] -opus/edits/editreason[@index='3696'] -opus/edits/editreason[@index='3697'] -opus/edits/editreason[@index='3698'] -opus/edits/editreason[@index='3699'] -opus/edits/editreason[@index='37'] -opus/edits/editreason[@index='370'] -opus/edits/editreason[@index='3700'] -opus/edits/editreason[@index='3701'] -opus/edits/editreason[@index='3702'] -opus/edits/editreason[@index='3703'] -opus/edits/editreason[@index='3704'] -opus/edits/editreason[@index='3705'] -opus/edits/editreason[@index='3706'] -opus/edits/editreason[@index='3707'] -opus/edits/editreason[@index='3708'] -opus/edits/editreason[@index='3709'] -opus/edits/editreason[@index='371'] -opus/edits/editreason[@index='3710'] -opus/edits/editreason[@index='3711'] -opus/edits/editreason[@index='3712'] -opus/edits/editreason[@index='3713'] -opus/edits/editreason[@index='3714'] -opus/edits/editreason[@index='3715'] -opus/edits/editreason[@index='3716'] -opus/edits/editreason[@index='3717'] -opus/edits/editreason[@index='3718'] -opus/edits/editreason[@index='3719'] -opus/edits/editreason[@index='372'] -opus/edits/editreason[@index='3720'] -opus/edits/editreason[@index='3721'] -opus/edits/editreason[@index='3722'] -opus/edits/editreason[@index='3723'] -opus/edits/editreason[@index='3724'] -opus/edits/editreason[@index='3725'] -opus/edits/editreason[@index='3726'] -opus/edits/editreason[@index='3727'] -opus/edits/editreason[@index='3728'] -opus/edits/editreason[@index='3729'] -opus/edits/editreason[@index='373'] -opus/edits/editreason[@index='3730'] -opus/edits/editreason[@index='3731'] -opus/edits/editreason[@index='3732'] -opus/edits/editreason[@index='3733'] -opus/edits/editreason[@index='3734'] -opus/edits/editreason[@index='3735'] -opus/edits/editreason[@index='3736'] -opus/edits/editreason[@index='3737'] -opus/edits/editreason[@index='3738'] -opus/edits/editreason[@index='3739'] -opus/edits/editreason[@index='374'] -opus/edits/editreason[@index='3740'] -opus/edits/editreason[@index='3741'] -opus/edits/editreason[@index='3742'] -opus/edits/editreason[@index='3743'] -opus/edits/editreason[@index='3744'] -opus/edits/editreason[@index='3745'] -opus/edits/editreason[@index='3746'] -opus/edits/editreason[@index='3747'] -opus/edits/editreason[@index='3748'] -opus/edits/editreason[@index='3749'] -opus/edits/editreason[@index='375'] -opus/edits/editreason[@index='3750'] -opus/edits/editreason[@index='3751'] -opus/edits/editreason[@index='3752'] -opus/edits/editreason[@index='3753'] -opus/edits/editreason[@index='3754'] -opus/edits/editreason[@index='3755'] -opus/edits/editreason[@index='3756'] -opus/edits/editreason[@index='3757'] -opus/edits/editreason[@index='3758'] -opus/edits/editreason[@index='3759'] -opus/edits/editreason[@index='376'] -opus/edits/editreason[@index='3760'] -opus/edits/editreason[@index='3761'] -opus/edits/editreason[@index='3762'] -opus/edits/editreason[@index='3763'] -opus/edits/editreason[@index='3764'] -opus/edits/editreason[@index='3765'] -opus/edits/editreason[@index='3766'] -opus/edits/editreason[@index='3767'] -opus/edits/editreason[@index='3768'] -opus/edits/editreason[@index='3769'] -opus/edits/editreason[@index='377'] -opus/edits/editreason[@index='3770'] -opus/edits/editreason[@index='3771'] -opus/edits/editreason[@index='3772'] -opus/edits/editreason[@index='3773'] -opus/edits/editreason[@index='3774'] -opus/edits/editreason[@index='3775'] -opus/edits/editreason[@index='3776'] -opus/edits/editreason[@index='3777'] -opus/edits/editreason[@index='3778'] -opus/edits/editreason[@index='3779'] -opus/edits/editreason[@index='378'] -opus/edits/editreason[@index='3780'] -opus/edits/editreason[@index='3781'] -opus/edits/editreason[@index='3782'] -opus/edits/editreason[@index='3784'] -opus/edits/editreason[@index='3785'] -opus/edits/editreason[@index='3786'] -opus/edits/editreason[@index='3787'] -opus/edits/editreason[@index='3788'] -opus/edits/editreason[@index='3789'] -opus/edits/editreason[@index='379'] -opus/edits/editreason[@index='3790'] -opus/edits/editreason[@index='3791'] -opus/edits/editreason[@index='3792'] -opus/edits/editreason[@index='3793'] -opus/edits/editreason[@index='3794'] -opus/edits/editreason[@index='3795'] -opus/edits/editreason[@index='3796'] -opus/edits/editreason[@index='3797'] -opus/edits/editreason[@index='3798'] -opus/edits/editreason[@index='3799'] -opus/edits/editreason[@index='38'] -opus/edits/editreason[@index='380'] -opus/edits/editreason[@index='3800'] -opus/edits/editreason[@index='3801'] -opus/edits/editreason[@index='3802'] -opus/edits/editreason[@index='3803'] -opus/edits/editreason[@index='3804'] -opus/edits/editreason[@index='3805'] -opus/edits/editreason[@index='3806'] -opus/edits/editreason[@index='3807'] -opus/edits/editreason[@index='3808'] -opus/edits/editreason[@index='3809'] -opus/edits/editreason[@index='381'] -opus/edits/editreason[@index='3810'] -opus/edits/editreason[@index='3811'] -opus/edits/editreason[@index='3812'] -opus/edits/editreason[@index='3813'] -opus/edits/editreason[@index='3814'] -opus/edits/editreason[@index='3815'] -opus/edits/editreason[@index='3816'] -opus/edits/editreason[@index='3817'] -opus/edits/editreason[@index='3818'] -opus/edits/editreason[@index='3819'] -opus/edits/editreason[@index='382'] -opus/edits/editreason[@index='3820'] -opus/edits/editreason[@index='3821'] -opus/edits/editreason[@index='3822'] -opus/edits/editreason[@index='3823'] -opus/edits/editreason[@index='3824'] -opus/edits/editreason[@index='3825'] -opus/edits/editreason[@index='3826'] -opus/edits/editreason[@index='3827'] -opus/edits/editreason[@index='3828'] -opus/edits/editreason[@index='3829'] -opus/edits/editreason[@index='383'] -opus/edits/editreason[@index='3830'] -opus/edits/editreason[@index='3831'] -opus/edits/editreason[@index='3832'] -opus/edits/editreason[@index='3833'] -opus/edits/editreason[@index='3834'] -opus/edits/editreason[@index='3835'] -opus/edits/editreason[@index='3836'] -opus/edits/editreason[@index='3837'] -opus/edits/editreason[@index='3838'] -opus/edits/editreason[@index='3839'] -opus/edits/editreason[@index='384'] -opus/edits/editreason[@index='3840'] -opus/edits/editreason[@index='3841'] -opus/edits/editreason[@index='3842'] -opus/edits/editreason[@index='3843'] -opus/edits/editreason[@index='3844'] -opus/edits/editreason[@index='3845'] -opus/edits/editreason[@index='3846'] -opus/edits/editreason[@index='3847'] -opus/edits/editreason[@index='3848'] -opus/edits/editreason[@index='3849'] -opus/edits/editreason[@index='385'] -opus/edits/editreason[@index='3850'] -opus/edits/editreason[@index='3851'] -opus/edits/editreason[@index='3852'] -opus/edits/editreason[@index='3853'] -opus/edits/editreason[@index='3854'] -opus/edits/editreason[@index='3855'] -opus/edits/editreason[@index='3856'] -opus/edits/editreason[@index='3857'] -opus/edits/editreason[@index='3858'] -opus/edits/editreason[@index='3859'] -opus/edits/editreason[@index='386'] -opus/edits/editreason[@index='3860'] -opus/edits/editreason[@index='3861'] -opus/edits/editreason[@index='3862'] -opus/edits/editreason[@index='3863'] -opus/edits/editreason[@index='3864'] -opus/edits/editreason[@index='3865'] -opus/edits/editreason[@index='3866'] -opus/edits/editreason[@index='3867'] -opus/edits/editreason[@index='3868'] -opus/edits/editreason[@index='3869'] -opus/edits/editreason[@index='387'] -opus/edits/editreason[@index='3870'] -opus/edits/editreason[@index='3871'] -opus/edits/editreason[@index='3872'] -opus/edits/editreason[@index='3873'] -opus/edits/editreason[@index='3874'] -opus/edits/editreason[@index='3875'] -opus/edits/editreason[@index='3876'] -opus/edits/editreason[@index='3877'] -opus/edits/editreason[@index='3878'] -opus/edits/editreason[@index='3879'] -opus/edits/editreason[@index='388'] -opus/edits/editreason[@index='3880'] -opus/edits/editreason[@index='3881'] -opus/edits/editreason[@index='3882'] -opus/edits/editreason[@index='3883'] -opus/edits/editreason[@index='3884'] -opus/edits/editreason[@index='3885'] -opus/edits/editreason[@index='3886'] -opus/edits/editreason[@index='3887'] -opus/edits/editreason[@index='3888'] -opus/edits/editreason[@index='3889'] -opus/edits/editreason[@index='3890'] -opus/edits/editreason[@index='3891'] -opus/edits/editreason[@index='3892'] -opus/edits/editreason[@index='3893'] -opus/edits/editreason[@index='3894'] -opus/edits/editreason[@index='3895'] -opus/edits/editreason[@index='3896'] -opus/edits/editreason[@index='3897'] -opus/edits/editreason[@index='3898'] -opus/edits/editreason[@index='3899'] -opus/edits/editreason[@index='39'] -opus/edits/editreason[@index='3900'] -opus/edits/editreason[@index='3901'] -opus/edits/editreason[@index='3902'] -opus/edits/editreason[@index='3903'] -opus/edits/editreason[@index='3904'] -opus/edits/editreason[@index='3905'] -opus/edits/editreason[@index='3906'] -opus/edits/editreason[@index='3907'] -opus/edits/editreason[@index='3908'] -opus/edits/editreason[@index='3909'] -opus/edits/editreason[@index='3910'] -opus/edits/editreason[@index='3911'] -opus/edits/editreason[@index='3912'] -opus/edits/editreason[@index='3913'] -opus/edits/editreason[@index='3914'] -opus/edits/editreason[@index='3915'] -opus/edits/editreason[@index='3916'] -opus/edits/editreason[@index='3917'] -opus/edits/editreason[@index='3918'] -opus/edits/editreason[@index='3919'] -opus/edits/editreason[@index='3920'] -opus/edits/editreason[@index='3921'] -opus/edits/editreason[@index='3922'] -opus/edits/editreason[@index='3923'] -opus/edits/editreason[@index='3924'] -opus/edits/editreason[@index='3925'] -opus/edits/editreason[@index='3926'] -opus/edits/editreason[@index='3927'] -opus/edits/editreason[@index='3928'] -opus/edits/editreason[@index='3929'] -opus/edits/editreason[@index='3930'] -opus/edits/editreason[@index='3931'] -opus/edits/editreason[@index='3932'] -opus/edits/editreason[@index='3933'] -opus/edits/editreason[@index='3934'] -opus/edits/editreason[@index='3935'] -opus/edits/editreason[@index='3936'] -opus/edits/editreason[@index='3937'] -opus/edits/editreason[@index='3938'] -opus/edits/editreason[@index='3939'] -opus/edits/editreason[@index='3940'] -opus/edits/editreason[@index='3941'] -opus/edits/editreason[@index='3942'] -opus/edits/editreason[@index='3943'] -opus/edits/editreason[@index='3944'] -opus/edits/editreason[@index='3945'] -opus/edits/editreason[@index='3946'] -opus/edits/editreason[@index='3947'] -opus/edits/editreason[@index='3948'] -opus/edits/editreason[@index='3949'] -opus/edits/editreason[@index='3950'] -opus/edits/editreason[@index='3951'] -opus/edits/editreason[@index='3952'] -opus/edits/editreason[@index='3953'] -opus/edits/editreason[@index='3954'] -opus/edits/editreason[@index='3955'] -opus/edits/editreason[@index='3956'] -opus/edits/editreason[@index='3957'] -opus/edits/editreason[@index='3958'] -opus/edits/editreason[@index='3959'] -opus/edits/editreason[@index='3960'] -opus/edits/editreason[@index='3961'] -opus/edits/editreason[@index='3962'] -opus/edits/editreason[@index='3963'] -opus/edits/editreason[@index='3964'] -opus/edits/editreason[@index='3965'] -opus/edits/editreason[@index='3966'] -opus/edits/editreason[@index='3967'] -opus/edits/editreason[@index='3968'] -opus/edits/editreason[@index='3969'] -opus/edits/editreason[@index='3970'] -opus/edits/editreason[@index='3971'] -opus/edits/editreason[@index='3972'] -opus/edits/editreason[@index='3973'] -opus/edits/editreason[@index='3974'] -opus/edits/editreason[@index='3975'] -opus/edits/editreason[@index='3976'] -opus/edits/editreason[@index='3977'] -opus/edits/editreason[@index='3978'] -opus/edits/editreason[@index='3979'] -opus/edits/editreason[@index='3980'] -opus/edits/editreason[@index='3981'] -opus/edits/editreason[@index='3982'] -opus/edits/editreason[@index='3983'] -opus/edits/editreason[@index='3984'] -opus/edits/editreason[@index='3985'] -opus/edits/editreason[@index='3986'] -opus/edits/editreason[@index='3987'] -opus/edits/editreason[@index='3988'] -opus/edits/editreason[@index='3989'] -opus/edits/editreason[@index='399'] -opus/edits/editreason[@index='3990'] -opus/edits/editreason[@index='3991'] -opus/edits/editreason[@index='3992'] -opus/edits/editreason[@index='3993'] -opus/edits/editreason[@index='3994'] -opus/edits/editreason[@index='3995'] -opus/edits/editreason[@index='3996'] -opus/edits/editreason[@index='3997'] -opus/edits/editreason[@index='3998'] -opus/edits/editreason[@index='3999'] -opus/edits/editreason[@index='40'] -opus/edits/editreason[@index='400'] -opus/edits/editreason[@index='4001'] -opus/edits/editreason[@index='4002'] -opus/edits/editreason[@index='4003'] -opus/edits/editreason[@index='4004'] -opus/edits/editreason[@index='4005'] -opus/edits/editreason[@index='4006'] -opus/edits/editreason[@index='4007'] -opus/edits/editreason[@index='4008'] -opus/edits/editreason[@index='4009'] -opus/edits/editreason[@index='401'] -opus/edits/editreason[@index='4010'] -opus/edits/editreason[@index='4011'] -opus/edits/editreason[@index='4012'] -opus/edits/editreason[@index='4013'] -opus/edits/editreason[@index='4014'] -opus/edits/editreason[@index='4015'] -opus/edits/editreason[@index='4016'] -opus/edits/editreason[@index='4017'] -opus/edits/editreason[@index='4018'] -opus/edits/editreason[@index='4019'] -opus/edits/editreason[@index='402'] -opus/edits/editreason[@index='4020'] -opus/edits/editreason[@index='4021'] -opus/edits/editreason[@index='4022'] -opus/edits/editreason[@index='4023'] -opus/edits/editreason[@index='4024'] -opus/edits/editreason[@index='4025'] -opus/edits/editreason[@index='4026'] -opus/edits/editreason[@index='4027'] -opus/edits/editreason[@index='4028'] -opus/edits/editreason[@index='4029'] -opus/edits/editreason[@index='403'] -opus/edits/editreason[@index='4030'] -opus/edits/editreason[@index='4031'] -opus/edits/editreason[@index='4032'] -opus/edits/editreason[@index='4033'] -opus/edits/editreason[@index='4034'] -opus/edits/editreason[@index='4035'] -opus/edits/editreason[@index='4036'] -opus/edits/editreason[@index='4037'] -opus/edits/editreason[@index='4038'] -opus/edits/editreason[@index='4039'] -opus/edits/editreason[@index='404'] -opus/edits/editreason[@index='4040'] -opus/edits/editreason[@index='4041'] -opus/edits/editreason[@index='4042'] -opus/edits/editreason[@index='4043'] -opus/edits/editreason[@index='4044'] -opus/edits/editreason[@index='4045'] -opus/edits/editreason[@index='4046'] -opus/edits/editreason[@index='4047'] -opus/edits/editreason[@index='4048'] -opus/edits/editreason[@index='4049'] -opus/edits/editreason[@index='405'] -opus/edits/editreason[@index='4050'] -opus/edits/editreason[@index='4051'] -opus/edits/editreason[@index='4052'] -opus/edits/editreason[@index='4053'] -opus/edits/editreason[@index='4054'] -opus/edits/editreason[@index='4055'] -opus/edits/editreason[@index='4056'] -opus/edits/editreason[@index='4057'] -opus/edits/editreason[@index='4058'] -opus/edits/editreason[@index='4059'] -opus/edits/editreason[@index='406'] -opus/edits/editreason[@index='4060'] -opus/edits/editreason[@index='4061'] -opus/edits/editreason[@index='4062'] -opus/edits/editreason[@index='4063'] -opus/edits/editreason[@index='4064'] -opus/edits/editreason[@index='4065'] -opus/edits/editreason[@index='4066'] -opus/edits/editreason[@index='4068'] -opus/edits/editreason[@index='4069'] -opus/edits/editreason[@index='407'] -opus/edits/editreason[@index='4070'] -opus/edits/editreason[@index='4071'] -opus/edits/editreason[@index='4072'] -opus/edits/editreason[@index='4073'] -opus/edits/editreason[@index='4074'] -opus/edits/editreason[@index='4075'] -opus/edits/editreason[@index='4076'] -opus/edits/editreason[@index='4077'] -opus/edits/editreason[@index='4078'] -opus/edits/editreason[@index='4079'] -opus/edits/editreason[@index='408'] -opus/edits/editreason[@index='4080'] -opus/edits/editreason[@index='4081'] -opus/edits/editreason[@index='4082'] -opus/edits/editreason[@index='4083'] -opus/edits/editreason[@index='4084'] -opus/edits/editreason[@index='4085'] -opus/edits/editreason[@index='4086'] -opus/edits/editreason[@index='4087'] -opus/edits/editreason[@index='4088'] -opus/edits/editreason[@index='4089'] -opus/edits/editreason[@index='409'] -opus/edits/editreason[@index='4090'] -opus/edits/editreason[@index='4091'] -opus/edits/editreason[@index='4092'] -opus/edits/editreason[@index='4093'] -opus/edits/editreason[@index='4094'] -opus/edits/editreason[@index='4095'] -opus/edits/editreason[@index='4096'] -opus/edits/editreason[@index='4097'] -opus/edits/editreason[@index='4098'] -opus/edits/editreason[@index='4099'] -opus/edits/editreason[@index='41'] -opus/edits/editreason[@index='410'] -opus/edits/editreason[@index='4100'] -opus/edits/editreason[@index='4101'] -opus/edits/editreason[@index='4102'] -opus/edits/editreason[@index='4103'] -opus/edits/editreason[@index='4104'] -opus/edits/editreason[@index='4105'] -opus/edits/editreason[@index='4106'] -opus/edits/editreason[@index='4107'] -opus/edits/editreason[@index='4108'] -opus/edits/editreason[@index='4109'] -opus/edits/editreason[@index='411'] -opus/edits/editreason[@index='4110'] -opus/edits/editreason[@index='4111'] -opus/edits/editreason[@index='4112'] -opus/edits/editreason[@index='4113'] -opus/edits/editreason[@index='4114'] -opus/edits/editreason[@index='4115'] -opus/edits/editreason[@index='4116'] -opus/edits/editreason[@index='4117'] -opus/edits/editreason[@index='4118'] -opus/edits/editreason[@index='4119'] -opus/edits/editreason[@index='412'] -opus/edits/editreason[@index='4120'] -opus/edits/editreason[@index='4121'] -opus/edits/editreason[@index='4122'] -opus/edits/editreason[@index='4123'] -opus/edits/editreason[@index='4124'] -opus/edits/editreason[@index='4125'] -opus/edits/editreason[@index='4126'] -opus/edits/editreason[@index='4127'] -opus/edits/editreason[@index='4128'] -opus/edits/editreason[@index='4129'] -opus/edits/editreason[@index='413'] -opus/edits/editreason[@index='4130'] -opus/edits/editreason[@index='4131'] -opus/edits/editreason[@index='4132'] -opus/edits/editreason[@index='4133'] -opus/edits/editreason[@index='4134'] -opus/edits/editreason[@index='4135'] -opus/edits/editreason[@index='4136'] -opus/edits/editreason[@index='4137'] -opus/edits/editreason[@index='4138'] -opus/edits/editreason[@index='4139'] -opus/edits/editreason[@index='414'] -opus/edits/editreason[@index='4140'] -opus/edits/editreason[@index='4141'] -opus/edits/editreason[@index='4142'] -opus/edits/editreason[@index='4143'] -opus/edits/editreason[@index='4144'] -opus/edits/editreason[@index='4145'] -opus/edits/editreason[@index='4146'] -opus/edits/editreason[@index='4147'] -opus/edits/editreason[@index='4148'] -opus/edits/editreason[@index='4149'] -opus/edits/editreason[@index='415'] -opus/edits/editreason[@index='4150'] -opus/edits/editreason[@index='4151'] -opus/edits/editreason[@index='4152'] -opus/edits/editreason[@index='4153'] -opus/edits/editreason[@index='4154'] -opus/edits/editreason[@index='4155'] -opus/edits/editreason[@index='4156'] -opus/edits/editreason[@index='4157'] -opus/edits/editreason[@index='4158'] -opus/edits/editreason[@index='4159'] -opus/edits/editreason[@index='416'] -opus/edits/editreason[@index='4160'] -opus/edits/editreason[@index='4161'] -opus/edits/editreason[@index='4162'] -opus/edits/editreason[@index='4163'] -opus/edits/editreason[@index='4164'] -opus/edits/editreason[@index='4165'] -opus/edits/editreason[@index='4166'] -opus/edits/editreason[@index='4167'] -opus/edits/editreason[@index='4168'] -opus/edits/editreason[@index='4169'] -opus/edits/editreason[@index='417'] -opus/edits/editreason[@index='4170'] -opus/edits/editreason[@index='4171'] -opus/edits/editreason[@index='4172'] -opus/edits/editreason[@index='4173'] -opus/edits/editreason[@index='4174'] -opus/edits/editreason[@index='4175'] -opus/edits/editreason[@index='4176'] -opus/edits/editreason[@index='4177'] -opus/edits/editreason[@index='4178'] -opus/edits/editreason[@index='4179'] -opus/edits/editreason[@index='418'] -opus/edits/editreason[@index='4180'] -opus/edits/editreason[@index='4181'] -opus/edits/editreason[@index='4182'] -opus/edits/editreason[@index='4183'] -opus/edits/editreason[@index='4184'] -opus/edits/editreason[@index='4185'] -opus/edits/editreason[@index='4186'] -opus/edits/editreason[@index='4187'] -opus/edits/editreason[@index='4188'] -opus/edits/editreason[@index='4189'] -opus/edits/editreason[@index='419'] -opus/edits/editreason[@index='4190'] -opus/edits/editreason[@index='4191'] -opus/edits/editreason[@index='4192'] -opus/edits/editreason[@index='4193'] -opus/edits/editreason[@index='4194'] -opus/edits/editreason[@index='4195'] -opus/edits/editreason[@index='4196'] -opus/edits/editreason[@index='4197'] -opus/edits/editreason[@index='4198'] -opus/edits/editreason[@index='4199'] -opus/edits/editreason[@index='42'] -opus/edits/editreason[@index='420'] -opus/edits/editreason[@index='4201'] -opus/edits/editreason[@index='4202'] -opus/edits/editreason[@index='4203'] -opus/edits/editreason[@index='4204'] -opus/edits/editreason[@index='4205'] -opus/edits/editreason[@index='4206'] -opus/edits/editreason[@index='4207'] -opus/edits/editreason[@index='4208'] -opus/edits/editreason[@index='4209'] -opus/edits/editreason[@index='421'] -opus/edits/editreason[@index='4210'] -opus/edits/editreason[@index='4211'] -opus/edits/editreason[@index='4212'] -opus/edits/editreason[@index='4213'] -opus/edits/editreason[@index='4214'] -opus/edits/editreason[@index='4215'] -opus/edits/editreason[@index='4216'] -opus/edits/editreason[@index='4217'] -opus/edits/editreason[@index='4218'] -opus/edits/editreason[@index='4219'] -opus/edits/editreason[@index='422'] -opus/edits/editreason[@index='4220'] -opus/edits/editreason[@index='4221'] -opus/edits/editreason[@index='4222'] -opus/edits/editreason[@index='4223'] -opus/edits/editreason[@index='4224'] -opus/edits/editreason[@index='4225'] -opus/edits/editreason[@index='4226'] -opus/edits/editreason[@index='4227'] -opus/edits/editreason[@index='4228'] -opus/edits/editreason[@index='4229'] -opus/edits/editreason[@index='423'] -opus/edits/editreason[@index='4230'] -opus/edits/editreason[@index='4231'] -opus/edits/editreason[@index='4232'] -opus/edits/editreason[@index='4233'] -opus/edits/editreason[@index='4234'] -opus/edits/editreason[@index='4235'] -opus/edits/editreason[@index='4236'] -opus/edits/editreason[@index='4237'] -opus/edits/editreason[@index='4238'] -opus/edits/editreason[@index='4239'] -opus/edits/editreason[@index='424'] -opus/edits/editreason[@index='4240'] -opus/edits/editreason[@index='4241'] -opus/edits/editreason[@index='4242'] -opus/edits/editreason[@index='4243'] -opus/edits/editreason[@index='4244'] -opus/edits/editreason[@index='4245'] -opus/edits/editreason[@index='4246'] -opus/edits/editreason[@index='4247'] -opus/edits/editreason[@index='4248'] -opus/edits/editreason[@index='4249'] -opus/edits/editreason[@index='425'] -opus/edits/editreason[@index='4250'] -opus/edits/editreason[@index='4251'] -opus/edits/editreason[@index='4252'] -opus/edits/editreason[@index='4253'] -opus/edits/editreason[@index='4254'] -opus/edits/editreason[@index='4255'] -opus/edits/editreason[@index='4256'] -opus/edits/editreason[@index='4257'] -opus/edits/editreason[@index='4258'] -opus/edits/editreason[@index='4259'] -opus/edits/editreason[@index='426'] -opus/edits/editreason[@index='4260'] -opus/edits/editreason[@index='4261'] -opus/edits/editreason[@index='4262'] -opus/edits/editreason[@index='4263'] -opus/edits/editreason[@index='4264'] -opus/edits/editreason[@index='4265'] -opus/edits/editreason[@index='4266'] -opus/edits/editreason[@index='4267'] -opus/edits/editreason[@index='4268'] -opus/edits/editreason[@index='4269'] -opus/edits/editreason[@index='427'] -opus/edits/editreason[@index='4270'] -opus/edits/editreason[@index='4271'] -opus/edits/editreason[@index='4272'] -opus/edits/editreason[@index='4273'] -opus/edits/editreason[@index='4274'] -opus/edits/editreason[@index='4275'] -opus/edits/editreason[@index='4276'] -opus/edits/editreason[@index='4277'] -opus/edits/editreason[@index='4278'] -opus/edits/editreason[@index='4279'] -opus/edits/editreason[@index='428'] -opus/edits/editreason[@index='4280'] -opus/edits/editreason[@index='4281'] -opus/edits/editreason[@index='4282'] -opus/edits/editreason[@index='4283'] -opus/edits/editreason[@index='4284'] -opus/edits/editreason[@index='4285'] -opus/edits/editreason[@index='4286'] -opus/edits/editreason[@index='4287'] -opus/edits/editreason[@index='4288'] -opus/edits/editreason[@index='4289'] -opus/edits/editreason[@index='429'] -opus/edits/editreason[@index='4290'] -opus/edits/editreason[@index='4291'] -opus/edits/editreason[@index='4292'] -opus/edits/editreason[@index='4293'] -opus/edits/editreason[@index='4294'] -opus/edits/editreason[@index='4295'] -opus/edits/editreason[@index='4296'] -opus/edits/editreason[@index='4297'] -opus/edits/editreason[@index='4298'] -opus/edits/editreason[@index='4299'] -opus/edits/editreason[@index='43'] -opus/edits/editreason[@index='430'] -opus/edits/editreason[@index='4300'] -opus/edits/editreason[@index='4301'] -opus/edits/editreason[@index='4302'] -opus/edits/editreason[@index='4303'] -opus/edits/editreason[@index='4304'] -opus/edits/editreason[@index='4305'] -opus/edits/editreason[@index='4306'] -opus/edits/editreason[@index='4307'] -opus/edits/editreason[@index='4308'] -opus/edits/editreason[@index='4309'] -opus/edits/editreason[@index='431'] -opus/edits/editreason[@index='4310'] -opus/edits/editreason[@index='4311'] -opus/edits/editreason[@index='4312'] -opus/edits/editreason[@index='4313'] -opus/edits/editreason[@index='4314'] -opus/edits/editreason[@index='4315'] -opus/edits/editreason[@index='4316'] -opus/edits/editreason[@index='4317'] -opus/edits/editreason[@index='4318'] -opus/edits/editreason[@index='4319'] -opus/edits/editreason[@index='432'] -opus/edits/editreason[@index='4320'] -opus/edits/editreason[@index='4321'] -opus/edits/editreason[@index='4322'] -opus/edits/editreason[@index='4323'] -opus/edits/editreason[@index='4324'] -opus/edits/editreason[@index='4325'] -opus/edits/editreason[@index='4326'] -opus/edits/editreason[@index='4327'] -opus/edits/editreason[@index='4328'] -opus/edits/editreason[@index='4329'] -opus/edits/editreason[@index='433'] -opus/edits/editreason[@index='4330'] -opus/edits/editreason[@index='4331'] -opus/edits/editreason[@index='4332'] -opus/edits/editreason[@index='4333'] -opus/edits/editreason[@index='4334'] -opus/edits/editreason[@index='4335'] -opus/edits/editreason[@index='4336'] -opus/edits/editreason[@index='4337'] -opus/edits/editreason[@index='4338'] -opus/edits/editreason[@index='4339'] -opus/edits/editreason[@index='434'] -opus/edits/editreason[@index='4340'] -opus/edits/editreason[@index='4341'] -opus/edits/editreason[@index='4342'] -opus/edits/editreason[@index='4343'] -opus/edits/editreason[@index='4344'] -opus/edits/editreason[@index='4345'] -opus/edits/editreason[@index='4346'] -opus/edits/editreason[@index='4347'] -opus/edits/editreason[@index='4348'] -opus/edits/editreason[@index='4349'] -opus/edits/editreason[@index='435'] -opus/edits/editreason[@index='4350'] -opus/edits/editreason[@index='4353'] -opus/edits/editreason[@index='4354'] -opus/edits/editreason[@index='4355'] -opus/edits/editreason[@index='4356'] -opus/edits/editreason[@index='4357'] -opus/edits/editreason[@index='4358'] -opus/edits/editreason[@index='4359'] -opus/edits/editreason[@index='436'] -opus/edits/editreason[@index='4360'] -opus/edits/editreason[@index='4361'] -opus/edits/editreason[@index='4362'] -opus/edits/editreason[@index='4363'] -opus/edits/editreason[@index='4364'] -opus/edits/editreason[@index='4365'] -opus/edits/editreason[@index='4366'] -opus/edits/editreason[@index='4367'] -opus/edits/editreason[@index='4368'] -opus/edits/editreason[@index='4369'] -opus/edits/editreason[@index='437'] -opus/edits/editreason[@index='4370'] -opus/edits/editreason[@index='4371'] -opus/edits/editreason[@index='4372'] -opus/edits/editreason[@index='4373'] -opus/edits/editreason[@index='4374'] -opus/edits/editreason[@index='4375'] -opus/edits/editreason[@index='4376'] -opus/edits/editreason[@index='4377'] -opus/edits/editreason[@index='4378'] -opus/edits/editreason[@index='4379'] -opus/edits/editreason[@index='438'] -opus/edits/editreason[@index='4380'] -opus/edits/editreason[@index='4381'] -opus/edits/editreason[@index='4382'] -opus/edits/editreason[@index='4383'] -opus/edits/editreason[@index='4384'] -opus/edits/editreason[@index='4385'] -opus/edits/editreason[@index='4386'] -opus/edits/editreason[@index='4387'] -opus/edits/editreason[@index='4388'] -opus/edits/editreason[@index='4389'] -opus/edits/editreason[@index='439'] -opus/edits/editreason[@index='4390'] -opus/edits/editreason[@index='4391'] -opus/edits/editreason[@index='4392'] -opus/edits/editreason[@index='4393'] -opus/edits/editreason[@index='4394'] -opus/edits/editreason[@index='4395'] -opus/edits/editreason[@index='4396'] -opus/edits/editreason[@index='4397'] -opus/edits/editreason[@index='4398'] -opus/edits/editreason[@index='4399'] -opus/edits/editreason[@index='44'] -opus/edits/editreason[@index='440'] -opus/edits/editreason[@index='4400'] -opus/edits/editreason[@index='4401'] -opus/edits/editreason[@index='4402'] -opus/edits/editreason[@index='4403'] -opus/edits/editreason[@index='4404'] -opus/edits/editreason[@index='4405'] -opus/edits/editreason[@index='4406'] -opus/edits/editreason[@index='4407'] -opus/edits/editreason[@index='4408'] -opus/edits/editreason[@index='4409'] -opus/edits/editreason[@index='441'] -opus/edits/editreason[@index='4410'] -opus/edits/editreason[@index='4411'] -opus/edits/editreason[@index='4412'] -opus/edits/editreason[@index='4413'] -opus/edits/editreason[@index='4414'] -opus/edits/editreason[@index='4415'] -opus/edits/editreason[@index='4416'] -opus/edits/editreason[@index='4417'] -opus/edits/editreason[@index='4418'] -opus/edits/editreason[@index='4419'] -opus/edits/editreason[@index='442'] -opus/edits/editreason[@index='4420'] -opus/edits/editreason[@index='4421'] -opus/edits/editreason[@index='4422'] -opus/edits/editreason[@index='4423'] -opus/edits/editreason[@index='4424'] -opus/edits/editreason[@index='4425'] -opus/edits/editreason[@index='4426'] -opus/edits/editreason[@index='4427'] -opus/edits/editreason[@index='4428'] -opus/edits/editreason[@index='4429'] -opus/edits/editreason[@index='443'] -opus/edits/editreason[@index='4430'] -opus/edits/editreason[@index='4431'] -opus/edits/editreason[@index='4432'] -opus/edits/editreason[@index='4433'] -opus/edits/editreason[@index='4434'] -opus/edits/editreason[@index='4435'] -opus/edits/editreason[@index='4436'] -opus/edits/editreason[@index='4437'] -opus/edits/editreason[@index='4438'] -opus/edits/editreason[@index='4439'] -opus/edits/editreason[@index='444'] -opus/edits/editreason[@index='4440'] -opus/edits/editreason[@index='4441'] -opus/edits/editreason[@index='4442'] -opus/edits/editreason[@index='4443'] -opus/edits/editreason[@index='4444'] -opus/edits/editreason[@index='4445'] -opus/edits/editreason[@index='4446'] -opus/edits/editreason[@index='4447'] -opus/edits/editreason[@index='4448'] -opus/edits/editreason[@index='4449'] -opus/edits/editreason[@index='445'] -opus/edits/editreason[@index='4450'] -opus/edits/editreason[@index='4451'] -opus/edits/editreason[@index='4452'] -opus/edits/editreason[@index='4453'] -opus/edits/editreason[@index='4454'] -opus/edits/editreason[@index='4455'] -opus/edits/editreason[@index='4456'] -opus/edits/editreason[@index='4457'] -opus/edits/editreason[@index='4458'] -opus/edits/editreason[@index='4459'] -opus/edits/editreason[@index='446'] -opus/edits/editreason[@index='4460'] -opus/edits/editreason[@index='4461'] -opus/edits/editreason[@index='4462'] -opus/edits/editreason[@index='4463'] -opus/edits/editreason[@index='4464'] -opus/edits/editreason[@index='4465'] -opus/edits/editreason[@index='4466'] -opus/edits/editreason[@index='4467'] -opus/edits/editreason[@index='4468'] -opus/edits/editreason[@index='4469'] -opus/edits/editreason[@index='447'] -opus/edits/editreason[@index='4470'] -opus/edits/editreason[@index='4471'] -opus/edits/editreason[@index='4472'] -opus/edits/editreason[@index='4473'] -opus/edits/editreason[@index='4474'] -opus/edits/editreason[@index='4475'] -opus/edits/editreason[@index='4476'] -opus/edits/editreason[@index='4477'] -opus/edits/editreason[@index='4478'] -opus/edits/editreason[@index='4479'] -opus/edits/editreason[@index='448'] -opus/edits/editreason[@index='4480'] -opus/edits/editreason[@index='4481'] -opus/edits/editreason[@index='4482'] -opus/edits/editreason[@index='4483'] -opus/edits/editreason[@index='4484'] -opus/edits/editreason[@index='4485'] -opus/edits/editreason[@index='4486'] -opus/edits/editreason[@index='4487'] -opus/edits/editreason[@index='4488'] -opus/edits/editreason[@index='4489'] -opus/edits/editreason[@index='449'] -opus/edits/editreason[@index='4490'] -opus/edits/editreason[@index='4491'] -opus/edits/editreason[@index='4492'] -opus/edits/editreason[@index='4493'] -opus/edits/editreason[@index='4494'] -opus/edits/editreason[@index='4495'] -opus/edits/editreason[@index='4496'] -opus/edits/editreason[@index='4497'] -opus/edits/editreason[@index='4498'] -opus/edits/editreason[@index='4499'] -opus/edits/editreason[@index='45'] -opus/edits/editreason[@index='450'] -opus/edits/editreason[@index='4500'] -opus/edits/editreason[@index='4501'] -opus/edits/editreason[@index='4502'] -opus/edits/editreason[@index='4503'] -opus/edits/editreason[@index='4504'] -opus/edits/editreason[@index='4505'] -opus/edits/editreason[@index='4506'] -opus/edits/editreason[@index='4507'] -opus/edits/editreason[@index='4508'] -opus/edits/editreason[@index='4509'] -opus/edits/editreason[@index='451'] -opus/edits/editreason[@index='4510'] -opus/edits/editreason[@index='4511'] -opus/edits/editreason[@index='4512'] -opus/edits/editreason[@index='4513'] -opus/edits/editreason[@index='4514'] -opus/edits/editreason[@index='4515'] -opus/edits/editreason[@index='4516'] -opus/edits/editreason[@index='4517'] -opus/edits/editreason[@index='4518'] -opus/edits/editreason[@index='4519'] -opus/edits/editreason[@index='452'] -opus/edits/editreason[@index='4520'] -opus/edits/editreason[@index='4521'] -opus/edits/editreason[@index='4522'] -opus/edits/editreason[@index='4523'] -opus/edits/editreason[@index='4524'] -opus/edits/editreason[@index='4525'] -opus/edits/editreason[@index='4526'] -opus/edits/editreason[@index='4527'] -opus/edits/editreason[@index='4528'] -opus/edits/editreason[@index='4529'] -opus/edits/editreason[@index='453'] -opus/edits/editreason[@index='4530'] -opus/edits/editreason[@index='4531'] -opus/edits/editreason[@index='4532'] -opus/edits/editreason[@index='4533'] -opus/edits/editreason[@index='4534'] -opus/edits/editreason[@index='4535'] -opus/edits/editreason[@index='4536'] -opus/edits/editreason[@index='4537'] -opus/edits/editreason[@index='4538'] -opus/edits/editreason[@index='4539'] -opus/edits/editreason[@index='454'] -opus/edits/editreason[@index='4540'] -opus/edits/editreason[@index='4541'] -opus/edits/editreason[@index='4542'] -opus/edits/editreason[@index='4543'] -opus/edits/editreason[@index='4544'] -opus/edits/editreason[@index='4545'] -opus/edits/editreason[@index='4546'] -opus/edits/editreason[@index='4547'] -opus/edits/editreason[@index='4548'] -opus/edits/editreason[@index='4549'] -opus/edits/editreason[@index='455'] -opus/edits/editreason[@index='4550'] -opus/edits/editreason[@index='4551'] -opus/edits/editreason[@index='4552'] -opus/edits/editreason[@index='4553'] -opus/edits/editreason[@index='4554'] -opus/edits/editreason[@index='4555'] -opus/edits/editreason[@index='4556'] -opus/edits/editreason[@index='4557'] -opus/edits/editreason[@index='4558'] -opus/edits/editreason[@index='4559'] -opus/edits/editreason[@index='456'] -opus/edits/editreason[@index='4560'] -opus/edits/editreason[@index='4561'] -opus/edits/editreason[@index='4562'] -opus/edits/editreason[@index='4563'] -opus/edits/editreason[@index='4564'] -opus/edits/editreason[@index='4565'] -opus/edits/editreason[@index='4566'] -opus/edits/editreason[@index='4567'] -opus/edits/editreason[@index='4568'] -opus/edits/editreason[@index='4569'] -opus/edits/editreason[@index='457'] -opus/edits/editreason[@index='4570'] -opus/edits/editreason[@index='4571'] -opus/edits/editreason[@index='4572'] -opus/edits/editreason[@index='4573'] -opus/edits/editreason[@index='4574'] -opus/edits/editreason[@index='4575'] -opus/edits/editreason[@index='4576'] -opus/edits/editreason[@index='4577'] -opus/edits/editreason[@index='4578'] -opus/edits/editreason[@index='4579'] -opus/edits/editreason[@index='458'] -opus/edits/editreason[@index='4580'] -opus/edits/editreason[@index='4581'] -opus/edits/editreason[@index='4582'] -opus/edits/editreason[@index='4583'] -opus/edits/editreason[@index='4584'] -opus/edits/editreason[@index='4585'] -opus/edits/editreason[@index='4586'] -opus/edits/editreason[@index='4587'] -opus/edits/editreason[@index='4588'] -opus/edits/editreason[@index='4589'] -opus/edits/editreason[@index='459'] -opus/edits/editreason[@index='4590'] -opus/edits/editreason[@index='4591'] -opus/edits/editreason[@index='4592'] -opus/edits/editreason[@index='4593'] -opus/edits/editreason[@index='4594'] -opus/edits/editreason[@index='4595'] -opus/edits/editreason[@index='4596'] -opus/edits/editreason[@index='4597'] -opus/edits/editreason[@index='4598'] -opus/edits/editreason[@index='4599'] -opus/edits/editreason[@index='46'] -opus/edits/editreason[@index='460'] -opus/edits/editreason[@index='4600'] -opus/edits/editreason[@index='4601'] -opus/edits/editreason[@index='4602'] -opus/edits/editreason[@index='4603'] -opus/edits/editreason[@index='4604'] -opus/edits/editreason[@index='4605'] -opus/edits/editreason[@index='4606'] -opus/edits/editreason[@index='4607'] -opus/edits/editreason[@index='4608'] -opus/edits/editreason[@index='4609'] -opus/edits/editreason[@index='461'] -opus/edits/editreason[@index='4610'] -opus/edits/editreason[@index='4611'] -opus/edits/editreason[@index='4612'] -opus/edits/editreason[@index='4613'] -opus/edits/editreason[@index='4614'] -opus/edits/editreason[@index='4615'] -opus/edits/editreason[@index='4616'] -opus/edits/editreason[@index='4617'] -opus/edits/editreason[@index='4618'] -opus/edits/editreason[@index='4619'] -opus/edits/editreason[@index='462'] -opus/edits/editreason[@index='4620'] -opus/edits/editreason[@index='4621'] -opus/edits/editreason[@index='4622'] -opus/edits/editreason[@index='4623'] -opus/edits/editreason[@index='4624'] -opus/edits/editreason[@index='4625'] -opus/edits/editreason[@index='4626'] -opus/edits/editreason[@index='4627'] -opus/edits/editreason[@index='4628'] -opus/edits/editreason[@index='4629'] -opus/edits/editreason[@index='463'] -opus/edits/editreason[@index='4630'] -opus/edits/editreason[@index='4631'] -opus/edits/editreason[@index='4632'] -opus/edits/editreason[@index='4633'] -opus/edits/editreason[@index='4635'] -opus/edits/editreason[@index='4636'] -opus/edits/editreason[@index='4637'] -opus/edits/editreason[@index='4638'] -opus/edits/editreason[@index='4639'] -opus/edits/editreason[@index='464'] -opus/edits/editreason[@index='4640'] -opus/edits/editreason[@index='4641'] -opus/edits/editreason[@index='4642'] -opus/edits/editreason[@index='4643'] -opus/edits/editreason[@index='4644'] -opus/edits/editreason[@index='4645'] -opus/edits/editreason[@index='4646'] -opus/edits/editreason[@index='4647'] -opus/edits/editreason[@index='4648'] -opus/edits/editreason[@index='4649'] -opus/edits/editreason[@index='465'] -opus/edits/editreason[@index='4650'] -opus/edits/editreason[@index='4651'] -opus/edits/editreason[@index='4652'] -opus/edits/editreason[@index='4653'] -opus/edits/editreason[@index='4654'] -opus/edits/editreason[@index='4655'] -opus/edits/editreason[@index='4656'] -opus/edits/editreason[@index='4657'] -opus/edits/editreason[@index='4658'] -opus/edits/editreason[@index='4659'] -opus/edits/editreason[@index='4660'] -opus/edits/editreason[@index='4661'] -opus/edits/editreason[@index='4662'] -opus/edits/editreason[@index='4663'] -opus/edits/editreason[@index='4664'] -opus/edits/editreason[@index='4665'] -opus/edits/editreason[@index='4666'] -opus/edits/editreason[@index='4668'] -opus/edits/editreason[@index='4669'] -opus/edits/editreason[@index='4670'] -opus/edits/editreason[@index='4671'] -opus/edits/editreason[@index='4672'] -opus/edits/editreason[@index='4673'] -opus/edits/editreason[@index='4674'] -opus/edits/editreason[@index='4675'] -opus/edits/editreason[@index='4676'] -opus/edits/editreason[@index='4677'] -opus/edits/editreason[@index='4678'] -opus/edits/editreason[@index='4679'] -opus/edits/editreason[@index='4680'] -opus/edits/editreason[@index='4681'] -opus/edits/editreason[@index='4682'] -opus/edits/editreason[@index='4683'] -opus/edits/editreason[@index='4684'] -opus/edits/editreason[@index='4685'] -opus/edits/editreason[@index='4686'] -opus/edits/editreason[@index='4687'] -opus/edits/editreason[@index='4688'] -opus/edits/editreason[@index='4689'] -opus/edits/editreason[@index='4690'] -opus/edits/editreason[@index='4691'] -opus/edits/editreason[@index='4692'] -opus/edits/editreason[@index='4693'] -opus/edits/editreason[@index='4694'] -opus/edits/editreason[@index='4695'] -opus/edits/editreason[@index='4696'] -opus/edits/editreason[@index='4697'] -opus/edits/editreason[@index='4698'] -opus/edits/editreason[@index='4699'] -opus/edits/editreason[@index='47'] -opus/edits/editreason[@index='4700'] -opus/edits/editreason[@index='4701'] -opus/edits/editreason[@index='4702'] -opus/edits/editreason[@index='4703'] -opus/edits/editreason[@index='4704'] -opus/edits/editreason[@index='4705'] -opus/edits/editreason[@index='4706'] -opus/edits/editreason[@index='4707'] -opus/edits/editreason[@index='4708'] -opus/edits/editreason[@index='4709'] -opus/edits/editreason[@index='4710'] -opus/edits/editreason[@index='4711'] -opus/edits/editreason[@index='4712'] -opus/edits/editreason[@index='4713'] -opus/edits/editreason[@index='4714'] -opus/edits/editreason[@index='4715'] -opus/edits/editreason[@index='4716'] -opus/edits/editreason[@index='4717'] -opus/edits/editreason[@index='4718'] -opus/edits/editreason[@index='4719'] -opus/edits/editreason[@index='4720'] -opus/edits/editreason[@index='4721'] -opus/edits/editreason[@index='4722'] -opus/edits/editreason[@index='4723'] -opus/edits/editreason[@index='4724'] -opus/edits/editreason[@index='4725'] -opus/edits/editreason[@index='4726'] -opus/edits/editreason[@index='4727'] -opus/edits/editreason[@index='4728'] -opus/edits/editreason[@index='473'] -opus/edits/editreason[@index='4730'] -opus/edits/editreason[@index='4731'] -opus/edits/editreason[@index='4732'] -opus/edits/editreason[@index='4733'] -opus/edits/editreason[@index='4734'] -opus/edits/editreason[@index='4735'] -opus/edits/editreason[@index='4736'] -opus/edits/editreason[@index='4737'] -opus/edits/editreason[@index='4738'] -opus/edits/editreason[@index='4739'] -opus/edits/editreason[@index='474'] -opus/edits/editreason[@index='4740'] -opus/edits/editreason[@index='4741'] -opus/edits/editreason[@index='4742'] -opus/edits/editreason[@index='4743'] -opus/edits/editreason[@index='4744'] -opus/edits/editreason[@index='4745'] -opus/edits/editreason[@index='4746'] -opus/edits/editreason[@index='4747'] -opus/edits/editreason[@index='4748'] -opus/edits/editreason[@index='4749'] -opus/edits/editreason[@index='475'] -opus/edits/editreason[@index='4750'] -opus/edits/editreason[@index='4751'] -opus/edits/editreason[@index='4752'] -opus/edits/editreason[@index='4753'] -opus/edits/editreason[@index='4754'] -opus/edits/editreason[@index='4755'] -opus/edits/editreason[@index='4756'] -opus/edits/editreason[@index='4757'] -opus/edits/editreason[@index='4758'] -opus/edits/editreason[@index='4759'] -opus/edits/editreason[@index='476'] -opus/edits/editreason[@index='4760'] -opus/edits/editreason[@index='4761'] -opus/edits/editreason[@index='4762'] -opus/edits/editreason[@index='4763'] -opus/edits/editreason[@index='4764'] -opus/edits/editreason[@index='4765'] -opus/edits/editreason[@index='4766'] -opus/edits/editreason[@index='4767'] -opus/edits/editreason[@index='4768'] -opus/edits/editreason[@index='4769'] -opus/edits/editreason[@index='477'] -opus/edits/editreason[@index='4770'] -opus/edits/editreason[@index='4771'] -opus/edits/editreason[@index='4772'] -opus/edits/editreason[@index='4773'] -opus/edits/editreason[@index='4774'] -opus/edits/editreason[@index='4775'] -opus/edits/editreason[@index='4776'] -opus/edits/editreason[@index='4777'] -opus/edits/editreason[@index='4778'] -opus/edits/editreason[@index='4779'] -opus/edits/editreason[@index='478'] -opus/edits/editreason[@index='4780'] -opus/edits/editreason[@index='4781'] -opus/edits/editreason[@index='4782'] -opus/edits/editreason[@index='4783'] -opus/edits/editreason[@index='4784'] -opus/edits/editreason[@index='4785'] -opus/edits/editreason[@index='4786'] -opus/edits/editreason[@index='4787'] -opus/edits/editreason[@index='4788'] -opus/edits/editreason[@index='4789'] -opus/edits/editreason[@index='479'] -opus/edits/editreason[@index='4790'] -opus/edits/editreason[@index='4791'] -opus/edits/editreason[@index='4792'] -opus/edits/editreason[@index='4793'] -opus/edits/editreason[@index='4794'] -opus/edits/editreason[@index='4795'] -opus/edits/editreason[@index='4796'] -opus/edits/editreason[@index='4797'] -opus/edits/editreason[@index='4798'] -opus/edits/editreason[@index='4799'] -opus/edits/editreason[@index='48'] -opus/edits/editreason[@index='480'] -opus/edits/editreason[@index='4800'] -opus/edits/editreason[@index='4801'] -opus/edits/editreason[@index='4802'] -opus/edits/editreason[@index='4803'] -opus/edits/editreason[@index='4804'] -opus/edits/editreason[@index='4805'] -opus/edits/editreason[@index='4806'] -opus/edits/editreason[@index='4807'] -opus/edits/editreason[@index='4808'] -opus/edits/editreason[@index='4809'] -opus/edits/editreason[@index='481'] -opus/edits/editreason[@index='4810'] -opus/edits/editreason[@index='4811'] -opus/edits/editreason[@index='4812'] -opus/edits/editreason[@index='4813'] -opus/edits/editreason[@index='4814'] -opus/edits/editreason[@index='4815'] -opus/edits/editreason[@index='4816'] -opus/edits/editreason[@index='4817'] -opus/edits/editreason[@index='4818'] -opus/edits/editreason[@index='4819'] -opus/edits/editreason[@index='482'] -opus/edits/editreason[@index='4820'] -opus/edits/editreason[@index='4821'] -opus/edits/editreason[@index='4822'] -opus/edits/editreason[@index='4823'] -opus/edits/editreason[@index='4824'] -opus/edits/editreason[@index='4825'] -opus/edits/editreason[@index='4826'] -opus/edits/editreason[@index='4827'] -opus/edits/editreason[@index='4828'] -opus/edits/editreason[@index='4829'] -opus/edits/editreason[@index='483'] -opus/edits/editreason[@index='4830'] -opus/edits/editreason[@index='4831'] -opus/edits/editreason[@index='4832'] -opus/edits/editreason[@index='4833'] -opus/edits/editreason[@index='4834'] -opus/edits/editreason[@index='4835'] -opus/edits/editreason[@index='4836'] -opus/edits/editreason[@index='4837'] -opus/edits/editreason[@index='4838'] -opus/edits/editreason[@index='4839'] -opus/edits/editreason[@index='4840'] -opus/edits/editreason[@index='4841'] -opus/edits/editreason[@index='4842'] -opus/edits/editreason[@index='4843'] -opus/edits/editreason[@index='4844'] -opus/edits/editreason[@index='4845'] -opus/edits/editreason[@index='4846'] -opus/edits/editreason[@index='4847'] -opus/edits/editreason[@index='4848'] -opus/edits/editreason[@index='4849'] -opus/edits/editreason[@index='485'] -opus/edits/editreason[@index='4850'] -opus/edits/editreason[@index='4851'] -opus/edits/editreason[@index='4852'] -opus/edits/editreason[@index='4853'] -opus/edits/editreason[@index='4854'] -opus/edits/editreason[@index='4855'] -opus/edits/editreason[@index='4856'] -opus/edits/editreason[@index='4857'] -opus/edits/editreason[@index='4858'] -opus/edits/editreason[@index='4859'] -opus/edits/editreason[@index='486'] -opus/edits/editreason[@index='4860'] -opus/edits/editreason[@index='4861'] -opus/edits/editreason[@index='4862'] -opus/edits/editreason[@index='4863'] -opus/edits/editreason[@index='4864'] -opus/edits/editreason[@index='4865'] -opus/edits/editreason[@index='4866'] -opus/edits/editreason[@index='4867'] -opus/edits/editreason[@index='4868'] -opus/edits/editreason[@index='4869'] -opus/edits/editreason[@index='487'] -opus/edits/editreason[@index='4870'] -opus/edits/editreason[@index='4871'] -opus/edits/editreason[@index='4872'] -opus/edits/editreason[@index='4873'] -opus/edits/editreason[@index='4874'] -opus/edits/editreason[@index='4875'] -opus/edits/editreason[@index='4876'] -opus/edits/editreason[@index='4877'] -opus/edits/editreason[@index='4878'] -opus/edits/editreason[@index='4879'] -opus/edits/editreason[@index='488'] -opus/edits/editreason[@index='4880'] -opus/edits/editreason[@index='4881'] -opus/edits/editreason[@index='4882'] -opus/edits/editreason[@index='4883'] -opus/edits/editreason[@index='4884'] -opus/edits/editreason[@index='4885'] -opus/edits/editreason[@index='4886'] -opus/edits/editreason[@index='4887'] -opus/edits/editreason[@index='4888'] -opus/edits/editreason[@index='4889'] -opus/edits/editreason[@index='489'] -opus/edits/editreason[@index='4890'] -opus/edits/editreason[@index='4891'] -opus/edits/editreason[@index='4892'] -opus/edits/editreason[@index='4893'] -opus/edits/editreason[@index='4894'] -opus/edits/editreason[@index='4895'] -opus/edits/editreason[@index='4896'] -opus/edits/editreason[@index='4897'] -opus/edits/editreason[@index='4898'] -opus/edits/editreason[@index='4899'] -opus/edits/editreason[@index='49'] -opus/edits/editreason[@index='490'] -opus/edits/editreason[@index='4900'] -opus/edits/editreason[@index='4901'] -opus/edits/editreason[@index='4902'] -opus/edits/editreason[@index='4903'] -opus/edits/editreason[@index='4904'] -opus/edits/editreason[@index='4905'] -opus/edits/editreason[@index='4906'] -opus/edits/editreason[@index='4907'] -opus/edits/editreason[@index='4908'] -opus/edits/editreason[@index='4909'] -opus/edits/editreason[@index='491'] -opus/edits/editreason[@index='4910'] -opus/edits/editreason[@index='4911'] -opus/edits/editreason[@index='4912'] -opus/edits/editreason[@index='4913'] -opus/edits/editreason[@index='4914'] -opus/edits/editreason[@index='4915'] -opus/edits/editreason[@index='4916'] -opus/edits/editreason[@index='4917'] -opus/edits/editreason[@index='4918'] -opus/edits/editreason[@index='4919'] -opus/edits/editreason[@index='492'] -opus/edits/editreason[@index='4920'] -opus/edits/editreason[@index='4921'] -opus/edits/editreason[@index='4922'] -opus/edits/editreason[@index='4923'] -opus/edits/editreason[@index='4924'] -opus/edits/editreason[@index='4925'] -opus/edits/editreason[@index='4926'] -opus/edits/editreason[@index='4927'] -opus/edits/editreason[@index='4928'] -opus/edits/editreason[@index='4929'] -opus/edits/editreason[@index='493'] -opus/edits/editreason[@index='4930'] -opus/edits/editreason[@index='4931'] -opus/edits/editreason[@index='4932'] -opus/edits/editreason[@index='4933'] -opus/edits/editreason[@index='4934'] -opus/edits/editreason[@index='4935'] -opus/edits/editreason[@index='4936'] -opus/edits/editreason[@index='4937'] -opus/edits/editreason[@index='4938'] -opus/edits/editreason[@index='4939'] -opus/edits/editreason[@index='494'] -opus/edits/editreason[@index='4940'] -opus/edits/editreason[@index='4941'] -opus/edits/editreason[@index='4942'] -opus/edits/editreason[@index='4943'] -opus/edits/editreason[@index='4944'] -opus/edits/editreason[@index='4945'] -opus/edits/editreason[@index='4946'] -opus/edits/editreason[@index='4947'] -opus/edits/editreason[@index='4948'] -opus/edits/editreason[@index='4949'] -opus/edits/editreason[@index='495'] -opus/edits/editreason[@index='4950'] -opus/edits/editreason[@index='4951'] -opus/edits/editreason[@index='4952'] -opus/edits/editreason[@index='4953'] -opus/edits/editreason[@index='4954'] -opus/edits/editreason[@index='4955'] -opus/edits/editreason[@index='4956'] -opus/edits/editreason[@index='4957'] -opus/edits/editreason[@index='4958'] -opus/edits/editreason[@index='4959'] -opus/edits/editreason[@index='496'] -opus/edits/editreason[@index='4960'] -opus/edits/editreason[@index='4961'] -opus/edits/editreason[@index='4962'] -opus/edits/editreason[@index='4963'] -opus/edits/editreason[@index='4964'] -opus/edits/editreason[@index='4965'] -opus/edits/editreason[@index='4966'] -opus/edits/editreason[@index='4967'] -opus/edits/editreason[@index='4968'] -opus/edits/editreason[@index='4969'] -opus/edits/editreason[@index='497'] -opus/edits/editreason[@index='4970'] -opus/edits/editreason[@index='4971'] -opus/edits/editreason[@index='4972'] -opus/edits/editreason[@index='4973'] -opus/edits/editreason[@index='4974'] -opus/edits/editreason[@index='4975'] -opus/edits/editreason[@index='4976'] -opus/edits/editreason[@index='4977'] -opus/edits/editreason[@index='4978'] -opus/edits/editreason[@index='4979'] -opus/edits/editreason[@index='498'] -opus/edits/editreason[@index='4980'] -opus/edits/editreason[@index='4981'] -opus/edits/editreason[@index='4982'] -opus/edits/editreason[@index='4983'] -opus/edits/editreason[@index='4984'] -opus/edits/editreason[@index='4985'] -opus/edits/editreason[@index='4986'] -opus/edits/editreason[@index='4987'] -opus/edits/editreason[@index='4988'] -opus/edits/editreason[@index='4989'] -opus/edits/editreason[@index='499'] -opus/edits/editreason[@index='4990'] -opus/edits/editreason[@index='4991'] -opus/edits/editreason[@index='4992'] -opus/edits/editreason[@index='4993'] -opus/edits/editreason[@index='4994'] -opus/edits/editreason[@index='4995'] -opus/edits/editreason[@index='4996'] -opus/edits/editreason[@index='4997'] -opus/edits/editreason[@index='4998'] -opus/edits/editreason[@index='4999'] -opus/edits/editreason[@index='50'] -opus/edits/editreason[@index='500'] -opus/edits/editreason[@index='5000'] -opus/edits/editreason[@index='5001'] -opus/edits/editreason[@index='5002'] -opus/edits/editreason[@index='5003'] -opus/edits/editreason[@index='5004'] -opus/edits/editreason[@index='5005'] -opus/edits/editreason[@index='5006'] -opus/edits/editreason[@index='5007'] -opus/edits/editreason[@index='5008'] -opus/edits/editreason[@index='5009'] -opus/edits/editreason[@index='501'] -opus/edits/editreason[@index='5010'] -opus/edits/editreason[@index='5011'] -opus/edits/editreason[@index='5012'] -opus/edits/editreason[@index='5013'] -opus/edits/editreason[@index='5014'] -opus/edits/editreason[@index='5015'] -opus/edits/editreason[@index='5016'] -opus/edits/editreason[@index='5017'] -opus/edits/editreason[@index='5018'] -opus/edits/editreason[@index='5019'] -opus/edits/editreason[@index='5020'] -opus/edits/editreason[@index='5021'] -opus/edits/editreason[@index='5022'] -opus/edits/editreason[@index='5023'] -opus/edits/editreason[@index='5024'] -opus/edits/editreason[@index='5025'] -opus/edits/editreason[@index='5026'] -opus/edits/editreason[@index='5027'] -opus/edits/editreason[@index='5028'] -opus/edits/editreason[@index='5029'] -opus/edits/editreason[@index='503'] -opus/edits/editreason[@index='5030'] -opus/edits/editreason[@index='5031'] -opus/edits/editreason[@index='5032'] -opus/edits/editreason[@index='5033'] -opus/edits/editreason[@index='5034'] -opus/edits/editreason[@index='5035'] -opus/edits/editreason[@index='5036'] -opus/edits/editreason[@index='5037'] -opus/edits/editreason[@index='5038'] -opus/edits/editreason[@index='5039'] -opus/edits/editreason[@index='504'] -opus/edits/editreason[@index='5040'] -opus/edits/editreason[@index='5041'] -opus/edits/editreason[@index='5042'] -opus/edits/editreason[@index='5043'] -opus/edits/editreason[@index='5044'] -opus/edits/editreason[@index='5045'] -opus/edits/editreason[@index='5046'] -opus/edits/editreason[@index='5047'] -opus/edits/editreason[@index='5048'] -opus/edits/editreason[@index='5049'] -opus/edits/editreason[@index='505'] -opus/edits/editreason[@index='5050'] -opus/edits/editreason[@index='5051'] -opus/edits/editreason[@index='5052'] -opus/edits/editreason[@index='5053'] -opus/edits/editreason[@index='5054'] -opus/edits/editreason[@index='5055'] -opus/edits/editreason[@index='5056'] -opus/edits/editreason[@index='5057'] -opus/edits/editreason[@index='5058'] -opus/edits/editreason[@index='5059'] -opus/edits/editreason[@index='506'] -opus/edits/editreason[@index='5060'] -opus/edits/editreason[@index='5061'] -opus/edits/editreason[@index='5062'] -opus/edits/editreason[@index='5063'] -opus/edits/editreason[@index='5064'] -opus/edits/editreason[@index='5065'] -opus/edits/editreason[@index='5066'] -opus/edits/editreason[@index='5067'] -opus/edits/editreason[@index='5068'] -opus/edits/editreason[@index='5069'] -opus/edits/editreason[@index='507'] -opus/edits/editreason[@index='5070'] -opus/edits/editreason[@index='5071'] -opus/edits/editreason[@index='5072'] -opus/edits/editreason[@index='5073'] -opus/edits/editreason[@index='5074'] -opus/edits/editreason[@index='5075'] -opus/edits/editreason[@index='5076'] -opus/edits/editreason[@index='5077'] -opus/edits/editreason[@index='5078'] -opus/edits/editreason[@index='5079'] -opus/edits/editreason[@index='508'] -opus/edits/editreason[@index='5080'] -opus/edits/editreason[@index='5081'] -opus/edits/editreason[@index='5082'] -opus/edits/editreason[@index='5083'] -opus/edits/editreason[@index='5084'] -opus/edits/editreason[@index='5085'] -opus/edits/editreason[@index='5086'] -opus/edits/editreason[@index='5087'] -opus/edits/editreason[@index='5088'] -opus/edits/editreason[@index='5089'] -opus/edits/editreason[@index='509'] -opus/edits/editreason[@index='5090'] -opus/edits/editreason[@index='5091'] -opus/edits/editreason[@index='5092'] -opus/edits/editreason[@index='5093'] -opus/edits/editreason[@index='5094'] -opus/edits/editreason[@index='5095'] -opus/edits/editreason[@index='5096'] -opus/edits/editreason[@index='5097'] -opus/edits/editreason[@index='5098'] -opus/edits/editreason[@index='5099'] -opus/edits/editreason[@index='51'] -opus/edits/editreason[@index='510'] -opus/edits/editreason[@index='5100'] -opus/edits/editreason[@index='5101'] -opus/edits/editreason[@index='5102'] -opus/edits/editreason[@index='5103'] -opus/edits/editreason[@index='5104'] -opus/edits/editreason[@index='5105'] -opus/edits/editreason[@index='5106'] -opus/edits/editreason[@index='5107'] -opus/edits/editreason[@index='5108'] -opus/edits/editreason[@index='5109'] -opus/edits/editreason[@index='511'] -opus/edits/editreason[@index='5110'] -opus/edits/editreason[@index='5111'] -opus/edits/editreason[@index='5112'] -opus/edits/editreason[@index='5113'] -opus/edits/editreason[@index='5114'] -opus/edits/editreason[@index='5115'] -opus/edits/editreason[@index='5116'] -opus/edits/editreason[@index='5117'] -opus/edits/editreason[@index='5118'] -opus/edits/editreason[@index='5119'] -opus/edits/editreason[@index='512'] -opus/edits/editreason[@index='5120'] -opus/edits/editreason[@index='5121'] -opus/edits/editreason[@index='5122'] -opus/edits/editreason[@index='5123'] -opus/edits/editreason[@index='5124'] -opus/edits/editreason[@index='5125'] -opus/edits/editreason[@index='5126'] -opus/edits/editreason[@index='5127'] -opus/edits/editreason[@index='5128'] -opus/edits/editreason[@index='5129'] -opus/edits/editreason[@index='513'] -opus/edits/editreason[@index='5130'] -opus/edits/editreason[@index='5131'] -opus/edits/editreason[@index='5132'] -opus/edits/editreason[@index='5133'] -opus/edits/editreason[@index='5134'] -opus/edits/editreason[@index='5135'] -opus/edits/editreason[@index='5136'] -opus/edits/editreason[@index='5137'] -opus/edits/editreason[@index='5138'] -opus/edits/editreason[@index='5139'] -opus/edits/editreason[@index='514'] -opus/edits/editreason[@index='5140'] -opus/edits/editreason[@index='5141'] -opus/edits/editreason[@index='5142'] -opus/edits/editreason[@index='5143'] -opus/edits/editreason[@index='5144'] -opus/edits/editreason[@index='5145'] -opus/edits/editreason[@index='5146'] -opus/edits/editreason[@index='5147'] -opus/edits/editreason[@index='5148'] -opus/edits/editreason[@index='5149'] -opus/edits/editreason[@index='515'] -opus/edits/editreason[@index='5150'] -opus/edits/editreason[@index='5151'] -opus/edits/editreason[@index='5152'] -opus/edits/editreason[@index='5153'] -opus/edits/editreason[@index='5154'] -opus/edits/editreason[@index='5155'] -opus/edits/editreason[@index='5156'] -opus/edits/editreason[@index='5157'] -opus/edits/editreason[@index='5158'] -opus/edits/editreason[@index='5159'] -opus/edits/editreason[@index='516'] -opus/edits/editreason[@index='5160'] -opus/edits/editreason[@index='5161'] -opus/edits/editreason[@index='5162'] -opus/edits/editreason[@index='5163'] -opus/edits/editreason[@index='5164'] -opus/edits/editreason[@index='5165'] -opus/edits/editreason[@index='5166'] -opus/edits/editreason[@index='5167'] -opus/edits/editreason[@index='5168'] -opus/edits/editreason[@index='5169'] -opus/edits/editreason[@index='5170'] -opus/edits/editreason[@index='5171'] -opus/edits/editreason[@index='5172'] -opus/edits/editreason[@index='5173'] -opus/edits/editreason[@index='5174'] -opus/edits/editreason[@index='5175'] -opus/edits/editreason[@index='5176'] -opus/edits/editreason[@index='5177'] -opus/edits/editreason[@index='5178'] -opus/edits/editreason[@index='5179'] -opus/edits/editreason[@index='518'] -opus/edits/editreason[@index='5180'] -opus/edits/editreason[@index='5181'] -opus/edits/editreason[@index='5182'] -opus/edits/editreason[@index='5183'] -opus/edits/editreason[@index='5184'] -opus/edits/editreason[@index='5185'] -opus/edits/editreason[@index='5186'] -opus/edits/editreason[@index='5187'] -opus/edits/editreason[@index='5188'] -opus/edits/editreason[@index='5189'] -opus/edits/editreason[@index='519'] -opus/edits/editreason[@index='5190'] -opus/edits/editreason[@index='5191'] -opus/edits/editreason[@index='5192'] -opus/edits/editreason[@index='5193'] -opus/edits/editreason[@index='5194'] -opus/edits/editreason[@index='5195'] -opus/edits/editreason[@index='5196'] -opus/edits/editreason[@index='5197'] -opus/edits/editreason[@index='5198'] -opus/edits/editreason[@index='5199'] -opus/edits/editreason[@index='52'] -opus/edits/editreason[@index='520'] -opus/edits/editreason[@index='521'] -opus/edits/editreason[@index='523'] -opus/edits/editreason[@index='524'] -opus/edits/editreason[@index='525'] -opus/edits/editreason[@index='527'] -opus/edits/editreason[@index='528'] -opus/edits/editreason[@index='529'] -opus/edits/editreason[@index='53'] -opus/edits/editreason[@index='530'] -opus/edits/editreason[@index='531'] -opus/edits/editreason[@index='532'] -opus/edits/editreason[@index='533'] -opus/edits/editreason[@index='534'] -opus/edits/editreason[@index='535'] -opus/edits/editreason[@index='536'] -opus/edits/editreason[@index='537'] -opus/edits/editreason[@index='538'] -opus/edits/editreason[@index='539'] -opus/edits/editreason[@index='54'] -opus/edits/editreason[@index='540'] -opus/edits/editreason[@index='541'] -opus/edits/editreason[@index='542'] -opus/edits/editreason[@index='543'] -opus/edits/editreason[@index='544'] -opus/edits/editreason[@index='545'] -opus/edits/editreason[@index='546'] -opus/edits/editreason[@index='547'] -opus/edits/editreason[@index='548'] -opus/edits/editreason[@index='549'] -opus/edits/editreason[@index='55'] -opus/edits/editreason[@index='550'] -opus/edits/editreason[@index='551'] -opus/edits/editreason[@index='552'] -opus/edits/editreason[@index='553'] -opus/edits/editreason[@index='554'] -opus/edits/editreason[@index='555'] -opus/edits/editreason[@index='556'] -opus/edits/editreason[@index='557'] -opus/edits/editreason[@index='558'] -opus/edits/editreason[@index='559'] -opus/edits/editreason[@index='56'] -opus/edits/editreason[@index='560'] -opus/edits/editreason[@index='5600'] -opus/edits/editreason[@index='5601'] -opus/edits/editreason[@index='5602'] -opus/edits/editreason[@index='5603'] -opus/edits/editreason[@index='5604'] -opus/edits/editreason[@index='5605'] -opus/edits/editreason[@index='5606'] -opus/edits/editreason[@index='5607'] -opus/edits/editreason[@index='5608'] -opus/edits/editreason[@index='5609'] -opus/edits/editreason[@index='561'] -opus/edits/editreason[@index='5610'] -opus/edits/editreason[@index='5611'] -opus/edits/editreason[@index='5612'] -opus/edits/editreason[@index='5613'] -opus/edits/editreason[@index='5614'] -opus/edits/editreason[@index='5615'] -opus/edits/editreason[@index='5616'] -opus/edits/editreason[@index='5617'] -opus/edits/editreason[@index='5618'] -opus/edits/editreason[@index='5619'] -opus/edits/editreason[@index='562'] -opus/edits/editreason[@index='5620'] -opus/edits/editreason[@index='5621'] -opus/edits/editreason[@index='5622'] -opus/edits/editreason[@index='5623'] -opus/edits/editreason[@index='5624'] -opus/edits/editreason[@index='5625'] -opus/edits/editreason[@index='5626'] -opus/edits/editreason[@index='5627'] -opus/edits/editreason[@index='5628'] -opus/edits/editreason[@index='5629'] -opus/edits/editreason[@index='563'] -opus/edits/editreason[@index='5630'] -opus/edits/editreason[@index='5631'] -opus/edits/editreason[@index='5632'] -opus/edits/editreason[@index='5633'] -opus/edits/editreason[@index='5634'] -opus/edits/editreason[@index='5635'] -opus/edits/editreason[@index='5636'] -opus/edits/editreason[@index='5637'] -opus/edits/editreason[@index='5638'] -opus/edits/editreason[@index='5639'] -opus/edits/editreason[@index='564'] -opus/edits/editreason[@index='5640'] -opus/edits/editreason[@index='5641'] -opus/edits/editreason[@index='5642'] -opus/edits/editreason[@index='5643'] -opus/edits/editreason[@index='5644'] -opus/edits/editreason[@index='5645'] -opus/edits/editreason[@index='5646'] -opus/edits/editreason[@index='5647'] -opus/edits/editreason[@index='5648'] -opus/edits/editreason[@index='5649'] -opus/edits/editreason[@index='565'] -opus/edits/editreason[@index='5650'] -opus/edits/editreason[@index='5651'] -opus/edits/editreason[@index='5652'] -opus/edits/editreason[@index='5653'] -opus/edits/editreason[@index='5654'] -opus/edits/editreason[@index='5655'] -opus/edits/editreason[@index='5656'] -opus/edits/editreason[@index='5657'] -opus/edits/editreason[@index='5658'] -opus/edits/editreason[@index='5659'] -opus/edits/editreason[@index='566'] -opus/edits/editreason[@index='5660'] -opus/edits/editreason[@index='5661'] -opus/edits/editreason[@index='5662'] -opus/edits/editreason[@index='5663'] -opus/edits/editreason[@index='5664'] -opus/edits/editreason[@index='5665'] -opus/edits/editreason[@index='5666'] -opus/edits/editreason[@index='5667'] -opus/edits/editreason[@index='5668'] -opus/edits/editreason[@index='5669'] -opus/edits/editreason[@index='567'] -opus/edits/editreason[@index='5671'] -opus/edits/editreason[@index='5672'] -opus/edits/editreason[@index='5673'] -opus/edits/editreason[@index='5674'] -opus/edits/editreason[@index='5675'] -opus/edits/editreason[@index='5676'] -opus/edits/editreason[@index='5677'] -opus/edits/editreason[@index='5678'] -opus/edits/editreason[@index='5679'] -opus/edits/editreason[@index='568'] -opus/edits/editreason[@index='5680'] -opus/edits/editreason[@index='5681'] -opus/edits/editreason[@index='5682'] -opus/edits/editreason[@index='5683'] -opus/edits/editreason[@index='5684'] -opus/edits/editreason[@index='5685'] -opus/edits/editreason[@index='5686'] -opus/edits/editreason[@index='5687'] -opus/edits/editreason[@index='5688'] -opus/edits/editreason[@index='5689'] -opus/edits/editreason[@index='569'] -opus/edits/editreason[@index='5690'] -opus/edits/editreason[@index='5691'] -opus/edits/editreason[@index='5692'] -opus/edits/editreason[@index='5693'] -opus/edits/editreason[@index='5694'] -opus/edits/editreason[@index='5695'] -opus/edits/editreason[@index='5696'] -opus/edits/editreason[@index='5697'] -opus/edits/editreason[@index='5698'] -opus/edits/editreason[@index='5699'] -opus/edits/editreason[@index='57'] -opus/edits/editreason[@index='570'] -opus/edits/editreason[@index='5700'] -opus/edits/editreason[@index='5701'] -opus/edits/editreason[@index='5702'] -opus/edits/editreason[@index='5703'] -opus/edits/editreason[@index='5704'] -opus/edits/editreason[@index='5705'] -opus/edits/editreason[@index='5706'] -opus/edits/editreason[@index='5707'] -opus/edits/editreason[@index='5708'] -opus/edits/editreason[@index='5709'] -opus/edits/editreason[@index='571'] -opus/edits/editreason[@index='5710'] -opus/edits/editreason[@index='5711'] -opus/edits/editreason[@index='5712'] -opus/edits/editreason[@index='5713'] -opus/edits/editreason[@index='5714'] -opus/edits/editreason[@index='5715'] -opus/edits/editreason[@index='5716'] -opus/edits/editreason[@index='5717'] -opus/edits/editreason[@index='5718'] -opus/edits/editreason[@index='5719'] -opus/edits/editreason[@index='572'] -opus/edits/editreason[@index='5720'] -opus/edits/editreason[@index='5721'] -opus/edits/editreason[@index='5722'] -opus/edits/editreason[@index='5723'] -opus/edits/editreason[@index='5724'] -opus/edits/editreason[@index='5725'] -opus/edits/editreason[@index='5726'] -opus/edits/editreason[@index='5727'] -opus/edits/editreason[@index='5728'] -opus/edits/editreason[@index='5729'] -opus/edits/editreason[@index='573'] -opus/edits/editreason[@index='5730'] -opus/edits/editreason[@index='5731'] -opus/edits/editreason[@index='5732'] -opus/edits/editreason[@index='5733'] -opus/edits/editreason[@index='5734'] -opus/edits/editreason[@index='5735'] -opus/edits/editreason[@index='5736'] -opus/edits/editreason[@index='5737'] -opus/edits/editreason[@index='5738'] -opus/edits/editreason[@index='5739'] -opus/edits/editreason[@index='574'] -opus/edits/editreason[@index='5740'] -opus/edits/editreason[@index='5741'] -opus/edits/editreason[@index='5742'] -opus/edits/editreason[@index='5743'] -opus/edits/editreason[@index='5744'] -opus/edits/editreason[@index='5745'] -opus/edits/editreason[@index='5746'] -opus/edits/editreason[@index='5747'] -opus/edits/editreason[@index='5748'] -opus/edits/editreason[@index='5749'] -opus/edits/editreason[@index='575'] -opus/edits/editreason[@index='5750'] -opus/edits/editreason[@index='5751'] -opus/edits/editreason[@index='5752'] -opus/edits/editreason[@index='5753'] -opus/edits/editreason[@index='5754'] -opus/edits/editreason[@index='5755'] -opus/edits/editreason[@index='5756'] -opus/edits/editreason[@index='5757'] -opus/edits/editreason[@index='5758'] -opus/edits/editreason[@index='5759'] -opus/edits/editreason[@index='576'] -opus/edits/editreason[@index='5760'] -opus/edits/editreason[@index='5761'] -opus/edits/editreason[@index='5762'] -opus/edits/editreason[@index='5763'] -opus/edits/editreason[@index='5764'] -opus/edits/editreason[@index='5765'] -opus/edits/editreason[@index='5766'] -opus/edits/editreason[@index='5767'] -opus/edits/editreason[@index='5768'] -opus/edits/editreason[@index='5769'] -opus/edits/editreason[@index='577'] -opus/edits/editreason[@index='5770'] -opus/edits/editreason[@index='5771'] -opus/edits/editreason[@index='5772'] -opus/edits/editreason[@index='5773'] -opus/edits/editreason[@index='5774'] -opus/edits/editreason[@index='5775'] -opus/edits/editreason[@index='5776'] -opus/edits/editreason[@index='5777'] -opus/edits/editreason[@index='5778'] -opus/edits/editreason[@index='5779'] -opus/edits/editreason[@index='578'] -opus/edits/editreason[@index='5780'] -opus/edits/editreason[@index='5781'] -opus/edits/editreason[@index='5782'] -opus/edits/editreason[@index='5783'] -opus/edits/editreason[@index='5784'] -opus/edits/editreason[@index='5785'] -opus/edits/editreason[@index='5786'] -opus/edits/editreason[@index='5787'] -opus/edits/editreason[@index='5788'] -opus/edits/editreason[@index='5789'] -opus/edits/editreason[@index='579'] -opus/edits/editreason[@index='5790'] -opus/edits/editreason[@index='5791'] -opus/edits/editreason[@index='5792'] -opus/edits/editreason[@index='5793'] -opus/edits/editreason[@index='5794'] -opus/edits/editreason[@index='5795'] -opus/edits/editreason[@index='5796'] -opus/edits/editreason[@index='5797'] -opus/edits/editreason[@index='5798'] -opus/edits/editreason[@index='5799'] -opus/edits/editreason[@index='58'] -opus/edits/editreason[@index='580'] -opus/edits/editreason[@index='5800'] -opus/edits/editreason[@index='5801'] -opus/edits/editreason[@index='5802'] -opus/edits/editreason[@index='5803'] -opus/edits/editreason[@index='5804'] -opus/edits/editreason[@index='5805'] -opus/edits/editreason[@index='5806'] -opus/edits/editreason[@index='5807'] -opus/edits/editreason[@index='5808'] -opus/edits/editreason[@index='5809'] -opus/edits/editreason[@index='581'] -opus/edits/editreason[@index='5810'] -opus/edits/editreason[@index='5811'] -opus/edits/editreason[@index='5812'] -opus/edits/editreason[@index='5813'] -opus/edits/editreason[@index='5814'] -opus/edits/editreason[@index='5815'] -opus/edits/editreason[@index='5816'] -opus/edits/editreason[@index='5817'] -opus/edits/editreason[@index='5818'] -opus/edits/editreason[@index='5819'] -opus/edits/editreason[@index='582'] -opus/edits/editreason[@index='5820'] -opus/edits/editreason[@index='5821'] -opus/edits/editreason[@index='5822'] -opus/edits/editreason[@index='5823'] -opus/edits/editreason[@index='5824'] -opus/edits/editreason[@index='5825'] -opus/edits/editreason[@index='5826'] -opus/edits/editreason[@index='5827'] -opus/edits/editreason[@index='5828'] -opus/edits/editreason[@index='5829'] -opus/edits/editreason[@index='583'] -opus/edits/editreason[@index='5830'] -opus/edits/editreason[@index='5831'] -opus/edits/editreason[@index='5832'] -opus/edits/editreason[@index='5833'] -opus/edits/editreason[@index='5834'] -opus/edits/editreason[@index='5835'] -opus/edits/editreason[@index='5836'] -opus/edits/editreason[@index='5837'] -opus/edits/editreason[@index='5838'] -opus/edits/editreason[@index='5839'] -opus/edits/editreason[@index='584'] -opus/edits/editreason[@index='5840'] -opus/edits/editreason[@index='5841'] -opus/edits/editreason[@index='5842'] -opus/edits/editreason[@index='5843'] -opus/edits/editreason[@index='5844'] -opus/edits/editreason[@index='5845'] -opus/edits/editreason[@index='5846'] -opus/edits/editreason[@index='5847'] -opus/edits/editreason[@index='5848'] -opus/edits/editreason[@index='5849'] -opus/edits/editreason[@index='585'] -opus/edits/editreason[@index='5850'] -opus/edits/editreason[@index='5851'] -opus/edits/editreason[@index='5852'] -opus/edits/editreason[@index='5853'] -opus/edits/editreason[@index='5854'] -opus/edits/editreason[@index='5855'] -opus/edits/editreason[@index='5856'] -opus/edits/editreason[@index='5857'] -opus/edits/editreason[@index='5858'] -opus/edits/editreason[@index='5859'] -opus/edits/editreason[@index='586'] -opus/edits/editreason[@index='5860'] -opus/edits/editreason[@index='5861'] -opus/edits/editreason[@index='5862'] -opus/edits/editreason[@index='5863'] -opus/edits/editreason[@index='5864'] -opus/edits/editreason[@index='5865'] -opus/edits/editreason[@index='5866'] -opus/edits/editreason[@index='5867'] -opus/edits/editreason[@index='5868'] -opus/edits/editreason[@index='5869'] -opus/edits/editreason[@index='587'] -opus/edits/editreason[@index='5870'] -opus/edits/editreason[@index='5871'] -opus/edits/editreason[@index='5872'] -opus/edits/editreason[@index='5873'] -opus/edits/editreason[@index='5874'] -opus/edits/editreason[@index='5875'] -opus/edits/editreason[@index='5876'] -opus/edits/editreason[@index='5877'] -opus/edits/editreason[@index='5878'] -opus/edits/editreason[@index='5879'] -opus/edits/editreason[@index='588'] -opus/edits/editreason[@index='5880'] -opus/edits/editreason[@index='5881'] -opus/edits/editreason[@index='5882'] -opus/edits/editreason[@index='5883'] -opus/edits/editreason[@index='5884'] -opus/edits/editreason[@index='5886'] -opus/edits/editreason[@index='5887'] -opus/edits/editreason[@index='5888'] -opus/edits/editreason[@index='5889'] -opus/edits/editreason[@index='589'] -opus/edits/editreason[@index='5890'] -opus/edits/editreason[@index='5891'] -opus/edits/editreason[@index='5892'] -opus/edits/editreason[@index='5893'] -opus/edits/editreason[@index='5894'] -opus/edits/editreason[@index='5895'] -opus/edits/editreason[@index='5896'] -opus/edits/editreason[@index='5897'] -opus/edits/editreason[@index='5898'] -opus/edits/editreason[@index='5899'] -opus/edits/editreason[@index='59'] -opus/edits/editreason[@index='590'] -opus/edits/editreason[@index='5900'] -opus/edits/editreason[@index='5901'] -opus/edits/editreason[@index='5902'] -opus/edits/editreason[@index='5903'] -opus/edits/editreason[@index='5904'] -opus/edits/editreason[@index='5905'] -opus/edits/editreason[@index='5906'] -opus/edits/editreason[@index='5907'] -opus/edits/editreason[@index='5908'] -opus/edits/editreason[@index='5909'] -opus/edits/editreason[@index='591'] -opus/edits/editreason[@index='5910'] -opus/edits/editreason[@index='5911'] -opus/edits/editreason[@index='5912'] -opus/edits/editreason[@index='5913'] -opus/edits/editreason[@index='5914'] -opus/edits/editreason[@index='5915'] -opus/edits/editreason[@index='5916'] -opus/edits/editreason[@index='5917'] -opus/edits/editreason[@index='5918'] -opus/edits/editreason[@index='5919'] -opus/edits/editreason[@index='592'] -opus/edits/editreason[@index='5920'] -opus/edits/editreason[@index='5921'] -opus/edits/editreason[@index='5922'] -opus/edits/editreason[@index='5923'] -opus/edits/editreason[@index='5924'] -opus/edits/editreason[@index='5925'] -opus/edits/editreason[@index='5926'] -opus/edits/editreason[@index='5927'] -opus/edits/editreason[@index='5928'] -opus/edits/editreason[@index='5929'] -opus/edits/editreason[@index='593'] -opus/edits/editreason[@index='5930'] -opus/edits/editreason[@index='5931'] -opus/edits/editreason[@index='5933'] -opus/edits/editreason[@index='5934'] -opus/edits/editreason[@index='5935'] -opus/edits/editreason[@index='5936'] -opus/edits/editreason[@index='5937'] -opus/edits/editreason[@index='5938'] -opus/edits/editreason[@index='5939'] -opus/edits/editreason[@index='594'] -opus/edits/editreason[@index='5940'] -opus/edits/editreason[@index='5941'] -opus/edits/editreason[@index='5942'] -opus/edits/editreason[@index='5943'] -opus/edits/editreason[@index='5944'] -opus/edits/editreason[@index='5945'] -opus/edits/editreason[@index='5946'] -opus/edits/editreason[@index='5947'] -opus/edits/editreason[@index='5948'] -opus/edits/editreason[@index='5949'] -opus/edits/editreason[@index='595'] -opus/edits/editreason[@index='5950'] -opus/edits/editreason[@index='5951'] -opus/edits/editreason[@index='5952'] -opus/edits/editreason[@index='5953'] -opus/edits/editreason[@index='5954'] -opus/edits/editreason[@index='5955'] -opus/edits/editreason[@index='5956'] -opus/edits/editreason[@index='5957'] -opus/edits/editreason[@index='5958'] -opus/edits/editreason[@index='5959'] -opus/edits/editreason[@index='596'] -opus/edits/editreason[@index='5960'] -opus/edits/editreason[@index='5961'] -opus/edits/editreason[@index='5962'] -opus/edits/editreason[@index='5963'] -opus/edits/editreason[@index='5964'] -opus/edits/editreason[@index='5965'] -opus/edits/editreason[@index='5966'] -opus/edits/editreason[@index='5967'] -opus/edits/editreason[@index='5968'] -opus/edits/editreason[@index='5969'] -opus/edits/editreason[@index='5970'] -opus/edits/editreason[@index='5971'] -opus/edits/editreason[@index='5972'] -opus/edits/editreason[@index='5973'] -opus/edits/editreason[@index='5974'] -opus/edits/editreason[@index='5975'] -opus/edits/editreason[@index='5976'] -opus/edits/editreason[@index='5977'] -opus/edits/editreason[@index='5978'] -opus/edits/editreason[@index='5979'] -opus/edits/editreason[@index='598'] -opus/edits/editreason[@index='5980'] -opus/edits/editreason[@index='5981'] -opus/edits/editreason[@index='5982'] -opus/edits/editreason[@index='5983'] -opus/edits/editreason[@index='5984'] -opus/edits/editreason[@index='5985'] -opus/edits/editreason[@index='5986'] -opus/edits/editreason[@index='5987'] -opus/edits/editreason[@index='5988'] -opus/edits/editreason[@index='5989'] -opus/edits/editreason[@index='599'] -opus/edits/editreason[@index='5990'] -opus/edits/editreason[@index='5991'] -opus/edits/editreason[@index='5992'] -opus/edits/editreason[@index='5993'] -opus/edits/editreason[@index='5994'] -opus/edits/editreason[@index='5995'] -opus/edits/editreason[@index='5996'] -opus/edits/editreason[@index='5998'] -opus/edits/editreason[@index='5999'] -opus/edits/editreason[@index='60'] -opus/edits/editreason[@index='600'] -opus/edits/editreason[@index='6000'] -opus/edits/editreason[@index='6001'] -opus/edits/editreason[@index='6002'] -opus/edits/editreason[@index='6003'] -opus/edits/editreason[@index='6004'] -opus/edits/editreason[@index='6005'] -opus/edits/editreason[@index='6006'] -opus/edits/editreason[@index='6007'] -opus/edits/editreason[@index='6008'] -opus/edits/editreason[@index='6009'] -opus/edits/editreason[@index='601'] -opus/edits/editreason[@index='6010'] -opus/edits/editreason[@index='6011'] -opus/edits/editreason[@index='6012'] -opus/edits/editreason[@index='6013'] -opus/edits/editreason[@index='6014'] -opus/edits/editreason[@index='6015'] -opus/edits/editreason[@index='6016'] -opus/edits/editreason[@index='6017'] -opus/edits/editreason[@index='6018'] -opus/edits/editreason[@index='6019'] -opus/edits/editreason[@index='602'] -opus/edits/editreason[@index='6020'] -opus/edits/editreason[@index='6021'] -opus/edits/editreason[@index='6022'] -opus/edits/editreason[@index='6023'] -opus/edits/editreason[@index='6024'] -opus/edits/editreason[@index='6025'] -opus/edits/editreason[@index='6026'] -opus/edits/editreason[@index='6027'] -opus/edits/editreason[@index='6028'] -opus/edits/editreason[@index='6029'] -opus/edits/editreason[@index='603'] -opus/edits/editreason[@index='6030'] -opus/edits/editreason[@index='6031'] -opus/edits/editreason[@index='6032'] -opus/edits/editreason[@index='6033'] -opus/edits/editreason[@index='6034'] -opus/edits/editreason[@index='6035'] -opus/edits/editreason[@index='6036'] -opus/edits/editreason[@index='6037'] -opus/edits/editreason[@index='6038'] -opus/edits/editreason[@index='6039'] -opus/edits/editreason[@index='604'] -opus/edits/editreason[@index='6040'] -opus/edits/editreason[@index='6041'] -opus/edits/editreason[@index='6042'] -opus/edits/editreason[@index='6043'] -opus/edits/editreason[@index='6044'] -opus/edits/editreason[@index='6045'] -opus/edits/editreason[@index='6046'] -opus/edits/editreason[@index='6047'] -opus/edits/editreason[@index='6048'] -opus/edits/editreason[@index='6049'] -opus/edits/editreason[@index='605'] -opus/edits/editreason[@index='6050'] -opus/edits/editreason[@index='6051'] -opus/edits/editreason[@index='6052'] -opus/edits/editreason[@index='6053'] -opus/edits/editreason[@index='6054'] -opus/edits/editreason[@index='6055'] -opus/edits/editreason[@index='6056'] -opus/edits/editreason[@index='6057'] -opus/edits/editreason[@index='6058'] -opus/edits/editreason[@index='6059'] -opus/edits/editreason[@index='606'] -opus/edits/editreason[@index='6060'] -opus/edits/editreason[@index='6061'] -opus/edits/editreason[@index='6062'] -opus/edits/editreason[@index='6063'] -opus/edits/editreason[@index='6064'] -opus/edits/editreason[@index='6065'] -opus/edits/editreason[@index='6066'] -opus/edits/editreason[@index='6067'] -opus/edits/editreason[@index='6068'] -opus/edits/editreason[@index='6069'] -opus/edits/editreason[@index='607'] -opus/edits/editreason[@index='6070'] -opus/edits/editreason[@index='6071'] -opus/edits/editreason[@index='6072'] -opus/edits/editreason[@index='6073'] -opus/edits/editreason[@index='6074'] -opus/edits/editreason[@index='6075'] -opus/edits/editreason[@index='6076'] -opus/edits/editreason[@index='6077'] -opus/edits/editreason[@index='6078'] -opus/edits/editreason[@index='6079'] -opus/edits/editreason[@index='608'] -opus/edits/editreason[@index='6080'] -opus/edits/editreason[@index='6081'] -opus/edits/editreason[@index='6082'] -opus/edits/editreason[@index='6083'] -opus/edits/editreason[@index='6084'] -opus/edits/editreason[@index='6085'] -opus/edits/editreason[@index='6086'] -opus/edits/editreason[@index='6087'] -opus/edits/editreason[@index='6088'] -opus/edits/editreason[@index='6089'] -opus/edits/editreason[@index='609'] -opus/edits/editreason[@index='6090'] -opus/edits/editreason[@index='6091'] -opus/edits/editreason[@index='6092'] -opus/edits/editreason[@index='6093'] -opus/edits/editreason[@index='6094'] -opus/edits/editreason[@index='6095'] -opus/edits/editreason[@index='6096'] -opus/edits/editreason[@index='6097'] -opus/edits/editreason[@index='6098'] -opus/edits/editreason[@index='6099'] -opus/edits/editreason[@index='61'] -opus/edits/editreason[@index='610'] -opus/edits/editreason[@index='6100'] -opus/edits/editreason[@index='6101'] -opus/edits/editreason[@index='6102'] -opus/edits/editreason[@index='6103'] -opus/edits/editreason[@index='6104'] -opus/edits/editreason[@index='6105'] -opus/edits/editreason[@index='6106'] -opus/edits/editreason[@index='6107'] -opus/edits/editreason[@index='6108'] -opus/edits/editreason[@index='6109'] -opus/edits/editreason[@index='611'] -opus/edits/editreason[@index='6110'] -opus/edits/editreason[@index='6111'] -opus/edits/editreason[@index='6112'] -opus/edits/editreason[@index='6113'] -opus/edits/editreason[@index='6114'] -opus/edits/editreason[@index='6115'] -opus/edits/editreason[@index='6116'] -opus/edits/editreason[@index='6117'] -opus/edits/editreason[@index='6118'] -opus/edits/editreason[@index='6119'] -opus/edits/editreason[@index='612'] -opus/edits/editreason[@index='6120'] -opus/edits/editreason[@index='6121'] -opus/edits/editreason[@index='6122'] -opus/edits/editreason[@index='6123'] -opus/edits/editreason[@index='6124'] -opus/edits/editreason[@index='6125'] -opus/edits/editreason[@index='6126'] -opus/edits/editreason[@index='6127'] -opus/edits/editreason[@index='6128'] -opus/edits/editreason[@index='6129'] -opus/edits/editreason[@index='613'] -opus/edits/editreason[@index='6130'] -opus/edits/editreason[@index='6131'] -opus/edits/editreason[@index='6132'] -opus/edits/editreason[@index='6133'] -opus/edits/editreason[@index='6134'] -opus/edits/editreason[@index='6135'] -opus/edits/editreason[@index='6136'] -opus/edits/editreason[@index='6137'] -opus/edits/editreason[@index='6138'] -opus/edits/editreason[@index='6139'] -opus/edits/editreason[@index='614'] -opus/edits/editreason[@index='6140'] -opus/edits/editreason[@index='6141'] -opus/edits/editreason[@index='6142'] -opus/edits/editreason[@index='6143'] -opus/edits/editreason[@index='6144'] -opus/edits/editreason[@index='6145'] -opus/edits/editreason[@index='6146'] -opus/edits/editreason[@index='6147'] -opus/edits/editreason[@index='6148'] -opus/edits/editreason[@index='6149'] -opus/edits/editreason[@index='615'] -opus/edits/editreason[@index='6150'] -opus/edits/editreason[@index='6151'] -opus/edits/editreason[@index='6152'] -opus/edits/editreason[@index='6153'] -opus/edits/editreason[@index='6154'] -opus/edits/editreason[@index='6155'] -opus/edits/editreason[@index='6156'] -opus/edits/editreason[@index='6157'] -opus/edits/editreason[@index='6158'] -opus/edits/editreason[@index='6159'] -opus/edits/editreason[@index='616'] -opus/edits/editreason[@index='6160'] -opus/edits/editreason[@index='6161'] -opus/edits/editreason[@index='6162'] -opus/edits/editreason[@index='6163'] -opus/edits/editreason[@index='6164'] -opus/edits/editreason[@index='6165'] -opus/edits/editreason[@index='6166'] -opus/edits/editreason[@index='6167'] -opus/edits/editreason[@index='6168'] -opus/edits/editreason[@index='6169'] -opus/edits/editreason[@index='617'] -opus/edits/editreason[@index='6170'] -opus/edits/editreason[@index='6171'] -opus/edits/editreason[@index='6172'] -opus/edits/editreason[@index='6173'] -opus/edits/editreason[@index='6174'] -opus/edits/editreason[@index='6175'] -opus/edits/editreason[@index='6176'] -opus/edits/editreason[@index='6177'] -opus/edits/editreason[@index='6178'] -opus/edits/editreason[@index='6179'] -opus/edits/editreason[@index='618'] -opus/edits/editreason[@index='6180'] -opus/edits/editreason[@index='6181'] -opus/edits/editreason[@index='6182'] -opus/edits/editreason[@index='6183'] -opus/edits/editreason[@index='6184'] -opus/edits/editreason[@index='6185'] -opus/edits/editreason[@index='6186'] -opus/edits/editreason[@index='6187'] -opus/edits/editreason[@index='6188'] -opus/edits/editreason[@index='6189'] -opus/edits/editreason[@index='619'] -opus/edits/editreason[@index='6190'] -opus/edits/editreason[@index='6191'] -opus/edits/editreason[@index='6192'] -opus/edits/editreason[@index='6193'] -opus/edits/editreason[@index='6194'] -opus/edits/editreason[@index='6195'] -opus/edits/editreason[@index='6196'] -opus/edits/editreason[@index='6197'] -opus/edits/editreason[@index='6198'] -opus/edits/editreason[@index='6199'] -opus/edits/editreason[@index='62'] -opus/edits/editreason[@index='6200'] -opus/edits/editreason[@index='6201'] -opus/edits/editreason[@index='6202'] -opus/edits/editreason[@index='6203'] -opus/edits/editreason[@index='6204'] -opus/edits/editreason[@index='6205'] -opus/edits/editreason[@index='6206'] -opus/edits/editreason[@index='6207'] -opus/edits/editreason[@index='6208'] -opus/edits/editreason[@index='6209'] -opus/edits/editreason[@index='621'] -opus/edits/editreason[@index='6210'] -opus/edits/editreason[@index='6211'] -opus/edits/editreason[@index='6212'] -opus/edits/editreason[@index='6213'] -opus/edits/editreason[@index='6214'] -opus/edits/editreason[@index='6215'] -opus/edits/editreason[@index='6216'] -opus/edits/editreason[@index='6217'] -opus/edits/editreason[@index='6218'] -opus/edits/editreason[@index='6219'] -opus/edits/editreason[@index='622'] -opus/edits/editreason[@index='6220'] -opus/edits/editreason[@index='6221'] -opus/edits/editreason[@index='6222'] -opus/edits/editreason[@index='6223'] -opus/edits/editreason[@index='6224'] -opus/edits/editreason[@index='6225'] -opus/edits/editreason[@index='6226'] -opus/edits/editreason[@index='6227'] -opus/edits/editreason[@index='6228'] -opus/edits/editreason[@index='6229'] -opus/edits/editreason[@index='623'] -opus/edits/editreason[@index='6230'] -opus/edits/editreason[@index='6231'] -opus/edits/editreason[@index='6232'] -opus/edits/editreason[@index='6233'] -opus/edits/editreason[@index='6234'] -opus/edits/editreason[@index='6235'] -opus/edits/editreason[@index='6236'] -opus/edits/editreason[@index='6237'] -opus/edits/editreason[@index='6238'] -opus/edits/editreason[@index='6239'] -opus/edits/editreason[@index='624'] -opus/edits/editreason[@index='6240'] -opus/edits/editreason[@index='6241'] -opus/edits/editreason[@index='6242'] -opus/edits/editreason[@index='6243'] -opus/edits/editreason[@index='6244'] -opus/edits/editreason[@index='6245'] -opus/edits/editreason[@index='6246'] -opus/edits/editreason[@index='6247'] -opus/edits/editreason[@index='6248'] -opus/edits/editreason[@index='6249'] -opus/edits/editreason[@index='625'] -opus/edits/editreason[@index='6250'] -opus/edits/editreason[@index='6251'] -opus/edits/editreason[@index='6252'] -opus/edits/editreason[@index='6253'] -opus/edits/editreason[@index='6254'] -opus/edits/editreason[@index='6255'] -opus/edits/editreason[@index='6256'] -opus/edits/editreason[@index='6257'] -opus/edits/editreason[@index='6258'] -opus/edits/editreason[@index='6259'] -opus/edits/editreason[@index='626'] -opus/edits/editreason[@index='6260'] -opus/edits/editreason[@index='6261'] -opus/edits/editreason[@index='6262'] -opus/edits/editreason[@index='6263'] -opus/edits/editreason[@index='6264'] -opus/edits/editreason[@index='6265'] -opus/edits/editreason[@index='6266'] -opus/edits/editreason[@index='6267'] -opus/edits/editreason[@index='6268'] -opus/edits/editreason[@index='6269'] -opus/edits/editreason[@index='627'] -opus/edits/editreason[@index='6270'] -opus/edits/editreason[@index='6271'] -opus/edits/editreason[@index='6272'] -opus/edits/editreason[@index='6273'] -opus/edits/editreason[@index='6274'] -opus/edits/editreason[@index='6275'] -opus/edits/editreason[@index='6276'] -opus/edits/editreason[@index='6277'] -opus/edits/editreason[@index='6278'] -opus/edits/editreason[@index='6279'] -opus/edits/editreason[@index='628'] -opus/edits/editreason[@index='6280'] -opus/edits/editreason[@index='6281'] -opus/edits/editreason[@index='6282'] -opus/edits/editreason[@index='6283'] -opus/edits/editreason[@index='6284'] -opus/edits/editreason[@index='6285'] -opus/edits/editreason[@index='6286'] -opus/edits/editreason[@index='6287'] -opus/edits/editreason[@index='6288'] -opus/edits/editreason[@index='6289'] -opus/edits/editreason[@index='629'] -opus/edits/editreason[@index='6290'] -opus/edits/editreason[@index='6291'] -opus/edits/editreason[@index='6292'] -opus/edits/editreason[@index='6293'] -opus/edits/editreason[@index='6294'] -opus/edits/editreason[@index='6295'] -opus/edits/editreason[@index='6296'] -opus/edits/editreason[@index='6297'] -opus/edits/editreason[@index='6298'] -opus/edits/editreason[@index='6299'] -opus/edits/editreason[@index='63'] -opus/edits/editreason[@index='630'] -opus/edits/editreason[@index='6300'] -opus/edits/editreason[@index='6301'] -opus/edits/editreason[@index='6302'] -opus/edits/editreason[@index='6303'] -opus/edits/editreason[@index='6304'] -opus/edits/editreason[@index='6305'] -opus/edits/editreason[@index='6306'] -opus/edits/editreason[@index='6307'] -opus/edits/editreason[@index='6308'] -opus/edits/editreason[@index='6309'] -opus/edits/editreason[@index='631'] -opus/edits/editreason[@index='6310'] -opus/edits/editreason[@index='6311'] -opus/edits/editreason[@index='6312'] -opus/edits/editreason[@index='6313'] -opus/edits/editreason[@index='6314'] -opus/edits/editreason[@index='6315'] -opus/edits/editreason[@index='6316'] -opus/edits/editreason[@index='6317'] -opus/edits/editreason[@index='6318'] -opus/edits/editreason[@index='6319'] -opus/edits/editreason[@index='632'] -opus/edits/editreason[@index='6320'] -opus/edits/editreason[@index='6321'] -opus/edits/editreason[@index='6322'] -opus/edits/editreason[@index='6323'] -opus/edits/editreason[@index='6324'] -opus/edits/editreason[@index='6325'] -opus/edits/editreason[@index='6326'] -opus/edits/editreason[@index='6327'] -opus/edits/editreason[@index='6328'] -opus/edits/editreason[@index='6329'] -opus/edits/editreason[@index='633'] -opus/edits/editreason[@index='6330'] -opus/edits/editreason[@index='6331'] -opus/edits/editreason[@index='6332'] -opus/edits/editreason[@index='6333'] -opus/edits/editreason[@index='6334'] -opus/edits/editreason[@index='6335'] -opus/edits/editreason[@index='6336'] -opus/edits/editreason[@index='6337'] -opus/edits/editreason[@index='6338'] -opus/edits/editreason[@index='6339'] -opus/edits/editreason[@index='634'] -opus/edits/editreason[@index='6340'] -opus/edits/editreason[@index='6341'] -opus/edits/editreason[@index='6342'] -opus/edits/editreason[@index='6343'] -opus/edits/editreason[@index='6344'] -opus/edits/editreason[@index='6345'] -opus/edits/editreason[@index='6346'] -opus/edits/editreason[@index='6347'] -opus/edits/editreason[@index='6348'] -opus/edits/editreason[@index='6349'] -opus/edits/editreason[@index='635'] -opus/edits/editreason[@index='6350'] -opus/edits/editreason[@index='6351'] -opus/edits/editreason[@index='6352'] -opus/edits/editreason[@index='6353'] -opus/edits/editreason[@index='6354'] -opus/edits/editreason[@index='6355'] -opus/edits/editreason[@index='6356'] -opus/edits/editreason[@index='6357'] -opus/edits/editreason[@index='6358'] -opus/edits/editreason[@index='6359'] -opus/edits/editreason[@index='636'] -opus/edits/editreason[@index='6360'] -opus/edits/editreason[@index='6361'] -opus/edits/editreason[@index='6362'] -opus/edits/editreason[@index='6363'] -opus/edits/editreason[@index='6364'] -opus/edits/editreason[@index='6365'] -opus/edits/editreason[@index='6366'] -opus/edits/editreason[@index='6367'] -opus/edits/editreason[@index='6368'] -opus/edits/editreason[@index='6369'] -opus/edits/editreason[@index='637'] -opus/edits/editreason[@index='6370'] -opus/edits/editreason[@index='6371'] -opus/edits/editreason[@index='6372'] -opus/edits/editreason[@index='6373'] -opus/edits/editreason[@index='6374'] -opus/edits/editreason[@index='6375'] -opus/edits/editreason[@index='6376'] -opus/edits/editreason[@index='6377'] -opus/edits/editreason[@index='6378'] -opus/edits/editreason[@index='6379'] -opus/edits/editreason[@index='638'] -opus/edits/editreason[@index='6380'] -opus/edits/editreason[@index='6381'] -opus/edits/editreason[@index='6382'] -opus/edits/editreason[@index='6383'] -opus/edits/editreason[@index='6384'] -opus/edits/editreason[@index='6385'] -opus/edits/editreason[@index='6386'] -opus/edits/editreason[@index='6387'] -opus/edits/editreason[@index='6388'] -opus/edits/editreason[@index='6389'] -opus/edits/editreason[@index='639'] -opus/edits/editreason[@index='6390'] -opus/edits/editreason[@index='6391'] -opus/edits/editreason[@index='6392'] -opus/edits/editreason[@index='6393'] -opus/edits/editreason[@index='6394'] -opus/edits/editreason[@index='6395'] -opus/edits/editreason[@index='6396'] -opus/edits/editreason[@index='6397'] -opus/edits/editreason[@index='6398'] -opus/edits/editreason[@index='6399'] -opus/edits/editreason[@index='64'] -opus/edits/editreason[@index='640'] -opus/edits/editreason[@index='6400'] -opus/edits/editreason[@index='6401'] -opus/edits/editreason[@index='6402'] -opus/edits/editreason[@index='6403'] -opus/edits/editreason[@index='6404'] -opus/edits/editreason[@index='6405'] -opus/edits/editreason[@index='6406'] -opus/edits/editreason[@index='6407'] -opus/edits/editreason[@index='6408'] -opus/edits/editreason[@index='6409'] -opus/edits/editreason[@index='641'] -opus/edits/editreason[@index='6410'] -opus/edits/editreason[@index='6411'] -opus/edits/editreason[@index='6412'] -opus/edits/editreason[@index='6413'] -opus/edits/editreason[@index='6414'] -opus/edits/editreason[@index='6415'] -opus/edits/editreason[@index='6416'] -opus/edits/editreason[@index='6417'] -opus/edits/editreason[@index='6418'] -opus/edits/editreason[@index='6419'] -opus/edits/editreason[@index='642'] -opus/edits/editreason[@index='6420'] -opus/edits/editreason[@index='6421'] -opus/edits/editreason[@index='6422'] -opus/edits/editreason[@index='6423'] -opus/edits/editreason[@index='6424'] -opus/edits/editreason[@index='6425'] -opus/edits/editreason[@index='6426'] -opus/edits/editreason[@index='6427'] -opus/edits/editreason[@index='6428'] -opus/edits/editreason[@index='6429'] -opus/edits/editreason[@index='643'] -opus/edits/editreason[@index='6430'] -opus/edits/editreason[@index='6431'] -opus/edits/editreason[@index='6432'] -opus/edits/editreason[@index='6433'] -opus/edits/editreason[@index='6434'] -opus/edits/editreason[@index='6435'] -opus/edits/editreason[@index='6436'] -opus/edits/editreason[@index='6437'] -opus/edits/editreason[@index='6438'] -opus/edits/editreason[@index='6439'] -opus/edits/editreason[@index='644'] -opus/edits/editreason[@index='6440'] -opus/edits/editreason[@index='6441'] -opus/edits/editreason[@index='6442'] -opus/edits/editreason[@index='6443'] -opus/edits/editreason[@index='6444'] -opus/edits/editreason[@index='6445'] -opus/edits/editreason[@index='6446'] -opus/edits/editreason[@index='6447'] -opus/edits/editreason[@index='6448'] -opus/edits/editreason[@index='6449'] -opus/edits/editreason[@index='645'] -opus/edits/editreason[@index='6450'] -opus/edits/editreason[@index='6451'] -opus/edits/editreason[@index='6452'] -opus/edits/editreason[@index='6453'] -opus/edits/editreason[@index='6454'] -opus/edits/editreason[@index='6455'] -opus/edits/editreason[@index='6456'] -opus/edits/editreason[@index='6457'] -opus/edits/editreason[@index='6458'] -opus/edits/editreason[@index='6459'] -opus/edits/editreason[@index='646'] -opus/edits/editreason[@index='6460'] -opus/edits/editreason[@index='6461'] -opus/edits/editreason[@index='6462'] -opus/edits/editreason[@index='6463'] -opus/edits/editreason[@index='6464'] -opus/edits/editreason[@index='6465'] -opus/edits/editreason[@index='6466'] -opus/edits/editreason[@index='6467'] -opus/edits/editreason[@index='6468'] -opus/edits/editreason[@index='6469'] -opus/edits/editreason[@index='647'] -opus/edits/editreason[@index='6470'] -opus/edits/editreason[@index='6471'] -opus/edits/editreason[@index='6472'] -opus/edits/editreason[@index='6473'] -opus/edits/editreason[@index='6474'] -opus/edits/editreason[@index='6475'] -opus/edits/editreason[@index='6476'] -opus/edits/editreason[@index='6477'] -opus/edits/editreason[@index='6478'] -opus/edits/editreason[@index='6479'] -opus/edits/editreason[@index='648'] -opus/edits/editreason[@index='6480'] -opus/edits/editreason[@index='6481'] -opus/edits/editreason[@index='6482'] -opus/edits/editreason[@index='6483'] -opus/edits/editreason[@index='6484'] -opus/edits/editreason[@index='6485'] -opus/edits/editreason[@index='6486'] -opus/edits/editreason[@index='6487'] -opus/edits/editreason[@index='6488'] -opus/edits/editreason[@index='6489'] -opus/edits/editreason[@index='649'] -opus/edits/editreason[@index='6490'] -opus/edits/editreason[@index='6491'] -opus/edits/editreason[@index='6492'] -opus/edits/editreason[@index='6493'] -opus/edits/editreason[@index='6494'] -opus/edits/editreason[@index='6495'] -opus/edits/editreason[@index='6496'] -opus/edits/editreason[@index='6497'] -opus/edits/editreason[@index='6498'] -opus/edits/editreason[@index='6499'] -opus/edits/editreason[@index='65'] -opus/edits/editreason[@index='650'] -opus/edits/editreason[@index='6500'] -opus/edits/editreason[@index='6501'] -opus/edits/editreason[@index='6502'] -opus/edits/editreason[@index='6503'] -opus/edits/editreason[@index='6504'] -opus/edits/editreason[@index='6505'] -opus/edits/editreason[@index='6506'] -opus/edits/editreason[@index='6507'] -opus/edits/editreason[@index='6508'] -opus/edits/editreason[@index='6509'] -opus/edits/editreason[@index='651'] -opus/edits/editreason[@index='6510'] -opus/edits/editreason[@index='6511'] -opus/edits/editreason[@index='6512'] -opus/edits/editreason[@index='6513'] -opus/edits/editreason[@index='6514'] -opus/edits/editreason[@index='6515'] -opus/edits/editreason[@index='6516'] -opus/edits/editreason[@index='6517'] -opus/edits/editreason[@index='6518'] -opus/edits/editreason[@index='6519'] -opus/edits/editreason[@index='652'] -opus/edits/editreason[@index='6520'] -opus/edits/editreason[@index='6521'] -opus/edits/editreason[@index='6522'] -opus/edits/editreason[@index='6523'] -opus/edits/editreason[@index='6524'] -opus/edits/editreason[@index='6525'] -opus/edits/editreason[@index='6526'] -opus/edits/editreason[@index='6527'] -opus/edits/editreason[@index='6528'] -opus/edits/editreason[@index='6529'] -opus/edits/editreason[@index='653'] -opus/edits/editreason[@index='6530'] -opus/edits/editreason[@index='6531'] -opus/edits/editreason[@index='6532'] -opus/edits/editreason[@index='6533'] -opus/edits/editreason[@index='6534'] -opus/edits/editreason[@index='6535'] -opus/edits/editreason[@index='6536'] -opus/edits/editreason[@index='6537'] -opus/edits/editreason[@index='6538'] -opus/edits/editreason[@index='6539'] -opus/edits/editreason[@index='654'] -opus/edits/editreason[@index='6540'] -opus/edits/editreason[@index='6541'] -opus/edits/editreason[@index='6542'] -opus/edits/editreason[@index='6543'] -opus/edits/editreason[@index='6544'] -opus/edits/editreason[@index='6545'] -opus/edits/editreason[@index='6546'] -opus/edits/editreason[@index='6547'] -opus/edits/editreason[@index='6548'] -opus/edits/editreason[@index='6549'] -opus/edits/editreason[@index='655'] -opus/edits/editreason[@index='6550'] -opus/edits/editreason[@index='6551'] -opus/edits/editreason[@index='6552'] -opus/edits/editreason[@index='6553'] -opus/edits/editreason[@index='6554'] -opus/edits/editreason[@index='6555'] -opus/edits/editreason[@index='6556'] -opus/edits/editreason[@index='6557'] -opus/edits/editreason[@index='6558'] -opus/edits/editreason[@index='6559'] -opus/edits/editreason[@index='656'] -opus/edits/editreason[@index='6560'] -opus/edits/editreason[@index='6561'] -opus/edits/editreason[@index='6562'] -opus/edits/editreason[@index='6563'] -opus/edits/editreason[@index='6564'] -opus/edits/editreason[@index='6565'] -opus/edits/editreason[@index='6566'] -opus/edits/editreason[@index='6567'] -opus/edits/editreason[@index='6568'] -opus/edits/editreason[@index='6569'] -opus/edits/editreason[@index='657'] -opus/edits/editreason[@index='6570'] -opus/edits/editreason[@index='6571'] -opus/edits/editreason[@index='6572'] -opus/edits/editreason[@index='6573'] -opus/edits/editreason[@index='6574'] -opus/edits/editreason[@index='6575'] -opus/edits/editreason[@index='6576'] -opus/edits/editreason[@index='6577'] -opus/edits/editreason[@index='6578'] -opus/edits/editreason[@index='6579'] -opus/edits/editreason[@index='658'] -opus/edits/editreason[@index='6580'] -opus/edits/editreason[@index='6581'] -opus/edits/editreason[@index='6582'] -opus/edits/editreason[@index='6583'] -opus/edits/editreason[@index='6584'] -opus/edits/editreason[@index='6585'] -opus/edits/editreason[@index='6586'] -opus/edits/editreason[@index='6587'] -opus/edits/editreason[@index='6588'] -opus/edits/editreason[@index='6589'] -opus/edits/editreason[@index='659'] -opus/edits/editreason[@index='6590'] -opus/edits/editreason[@index='6591'] -opus/edits/editreason[@index='6592'] -opus/edits/editreason[@index='6593'] -opus/edits/editreason[@index='6594'] -opus/edits/editreason[@index='6595'] -opus/edits/editreason[@index='6596'] -opus/edits/editreason[@index='6597'] -opus/edits/editreason[@index='6598'] -opus/edits/editreason[@index='6599'] -opus/edits/editreason[@index='66'] -opus/edits/editreason[@index='660'] -opus/edits/editreason[@index='6600'] -opus/edits/editreason[@index='6601'] -opus/edits/editreason[@index='6602'] -opus/edits/editreason[@index='6603'] -opus/edits/editreason[@index='6604'] -opus/edits/editreason[@index='6605'] -opus/edits/editreason[@index='6606'] -opus/edits/editreason[@index='6607'] -opus/edits/editreason[@index='6608'] -opus/edits/editreason[@index='6609'] -opus/edits/editreason[@index='661'] -opus/edits/editreason[@index='6610'] -opus/edits/editreason[@index='6611'] -opus/edits/editreason[@index='6612'] -opus/edits/editreason[@index='6613'] -opus/edits/editreason[@index='6614'] -opus/edits/editreason[@index='6615'] -opus/edits/editreason[@index='6616'] -opus/edits/editreason[@index='6617'] -opus/edits/editreason[@index='6618'] -opus/edits/editreason[@index='6619'] -opus/edits/editreason[@index='662'] -opus/edits/editreason[@index='6620'] -opus/edits/editreason[@index='6621'] -opus/edits/editreason[@index='6622'] -opus/edits/editreason[@index='6623'] -opus/edits/editreason[@index='6624'] -opus/edits/editreason[@index='6625'] -opus/edits/editreason[@index='6626'] -opus/edits/editreason[@index='6627'] -opus/edits/editreason[@index='6628'] -opus/edits/editreason[@index='6629'] -opus/edits/editreason[@index='663'] -opus/edits/editreason[@index='6630'] -opus/edits/editreason[@index='6631'] -opus/edits/editreason[@index='6632'] -opus/edits/editreason[@index='6633'] -opus/edits/editreason[@index='6634'] -opus/edits/editreason[@index='6635'] -opus/edits/editreason[@index='6636'] -opus/edits/editreason[@index='6637'] -opus/edits/editreason[@index='6638'] -opus/edits/editreason[@index='6639'] -opus/edits/editreason[@index='664'] -opus/edits/editreason[@index='6640'] -opus/edits/editreason[@index='6641'] -opus/edits/editreason[@index='6642'] -opus/edits/editreason[@index='6643'] -opus/edits/editreason[@index='6644'] -opus/edits/editreason[@index='6645'] -opus/edits/editreason[@index='6646'] -opus/edits/editreason[@index='6647'] -opus/edits/editreason[@index='6648'] -opus/edits/editreason[@index='6649'] -opus/edits/editreason[@index='665'] -opus/edits/editreason[@index='6650'] -opus/edits/editreason[@index='6651'] -opus/edits/editreason[@index='6652'] -opus/edits/editreason[@index='6653'] -opus/edits/editreason[@index='6654'] -opus/edits/editreason[@index='6655'] -opus/edits/editreason[@index='6656'] -opus/edits/editreason[@index='6657'] -opus/edits/editreason[@index='6658'] -opus/edits/editreason[@index='6659'] -opus/edits/editreason[@index='666'] -opus/edits/editreason[@index='6660'] -opus/edits/editreason[@index='6661'] -opus/edits/editreason[@index='6662'] -opus/edits/editreason[@index='6663'] -opus/edits/editreason[@index='6664'] -opus/edits/editreason[@index='6665'] -opus/edits/editreason[@index='6666'] -opus/edits/editreason[@index='6667'] -opus/edits/editreason[@index='6668'] -opus/edits/editreason[@index='6669'] -opus/edits/editreason[@index='6670'] -opus/edits/editreason[@index='6671'] -opus/edits/editreason[@index='6672'] -opus/edits/editreason[@index='6673'] -opus/edits/editreason[@index='6674'] -opus/edits/editreason[@index='6675'] -opus/edits/editreason[@index='6676'] -opus/edits/editreason[@index='6677'] -opus/edits/editreason[@index='6678'] -opus/edits/editreason[@index='6679'] -opus/edits/editreason[@index='6680'] -opus/edits/editreason[@index='6681'] -opus/edits/editreason[@index='6682'] -opus/edits/editreason[@index='6683'] -opus/edits/editreason[@index='6684'] -opus/edits/editreason[@index='6685'] -opus/edits/editreason[@index='6686'] -opus/edits/editreason[@index='6687'] -opus/edits/editreason[@index='6688'] -opus/edits/editreason[@index='6689'] -opus/edits/editreason[@index='669'] -opus/edits/editreason[@index='6690'] -opus/edits/editreason[@index='6691'] -opus/edits/editreason[@index='6692'] -opus/edits/editreason[@index='6693'] -opus/edits/editreason[@index='6694'] -opus/edits/editreason[@index='6695'] -opus/edits/editreason[@index='6696'] -opus/edits/editreason[@index='6697'] -opus/edits/editreason[@index='6698'] -opus/edits/editreason[@index='6699'] -opus/edits/editreason[@index='67'] -opus/edits/editreason[@index='670'] -opus/edits/editreason[@index='6700'] -opus/edits/editreason[@index='6701'] -opus/edits/editreason[@index='6702'] -opus/edits/editreason[@index='6703'] -opus/edits/editreason[@index='6704'] -opus/edits/editreason[@index='6705'] -opus/edits/editreason[@index='6706'] -opus/edits/editreason[@index='6707'] -opus/edits/editreason[@index='6708'] -opus/edits/editreason[@index='6709'] -opus/edits/editreason[@index='671'] -opus/edits/editreason[@index='6710'] -opus/edits/editreason[@index='6711'] -opus/edits/editreason[@index='6712'] -opus/edits/editreason[@index='6713'] -opus/edits/editreason[@index='6714'] -opus/edits/editreason[@index='6715'] -opus/edits/editreason[@index='6716'] -opus/edits/editreason[@index='6717'] -opus/edits/editreason[@index='6718'] -opus/edits/editreason[@index='6719'] -opus/edits/editreason[@index='672'] -opus/edits/editreason[@index='6720'] -opus/edits/editreason[@index='6721'] -opus/edits/editreason[@index='6722'] -opus/edits/editreason[@index='6723'] -opus/edits/editreason[@index='6724'] -opus/edits/editreason[@index='6725'] -opus/edits/editreason[@index='6726'] -opus/edits/editreason[@index='6727'] -opus/edits/editreason[@index='6728'] -opus/edits/editreason[@index='6729'] -opus/edits/editreason[@index='673'] -opus/edits/editreason[@index='6730'] -opus/edits/editreason[@index='6731'] -opus/edits/editreason[@index='6732'] -opus/edits/editreason[@index='6733'] -opus/edits/editreason[@index='6734'] -opus/edits/editreason[@index='6735'] -opus/edits/editreason[@index='6736'] -opus/edits/editreason[@index='6737'] -opus/edits/editreason[@index='6738'] -opus/edits/editreason[@index='6739'] -opus/edits/editreason[@index='674'] -opus/edits/editreason[@index='6740'] -opus/edits/editreason[@index='6741'] -opus/edits/editreason[@index='6742'] -opus/edits/editreason[@index='6743'] -opus/edits/editreason[@index='6744'] -opus/edits/editreason[@index='6745'] -opus/edits/editreason[@index='6746'] -opus/edits/editreason[@index='6747'] -opus/edits/editreason[@index='6748'] -opus/edits/editreason[@index='6749'] -opus/edits/editreason[@index='675'] -opus/edits/editreason[@index='6750'] -opus/edits/editreason[@index='6751'] -opus/edits/editreason[@index='6752'] -opus/edits/editreason[@index='6753'] -opus/edits/editreason[@index='6754'] -opus/edits/editreason[@index='6755'] -opus/edits/editreason[@index='6756'] -opus/edits/editreason[@index='6757'] -opus/edits/editreason[@index='6758'] -opus/edits/editreason[@index='6759'] -opus/edits/editreason[@index='676'] -opus/edits/editreason[@index='6760'] -opus/edits/editreason[@index='6761'] -opus/edits/editreason[@index='6762'] -opus/edits/editreason[@index='6763'] -opus/edits/editreason[@index='6764'] -opus/edits/editreason[@index='6765'] -opus/edits/editreason[@index='6766'] -opus/edits/editreason[@index='6767'] -opus/edits/editreason[@index='6768'] -opus/edits/editreason[@index='6769'] -opus/edits/editreason[@index='677'] -opus/edits/editreason[@index='6770'] -opus/edits/editreason[@index='6771'] -opus/edits/editreason[@index='6772'] -opus/edits/editreason[@index='6773'] -opus/edits/editreason[@index='6774'] -opus/edits/editreason[@index='6775'] -opus/edits/editreason[@index='6776'] -opus/edits/editreason[@index='6777'] -opus/edits/editreason[@index='6778'] -opus/edits/editreason[@index='6779'] -opus/edits/editreason[@index='678'] -opus/edits/editreason[@index='6780'] -opus/edits/editreason[@index='6781'] -opus/edits/editreason[@index='6782'] -opus/edits/editreason[@index='6783'] -opus/edits/editreason[@index='6784'] -opus/edits/editreason[@index='6785'] -opus/edits/editreason[@index='6786'] -opus/edits/editreason[@index='6787'] -opus/edits/editreason[@index='6788'] -opus/edits/editreason[@index='6789'] -opus/edits/editreason[@index='679'] -opus/edits/editreason[@index='6790'] -opus/edits/editreason[@index='6791'] -opus/edits/editreason[@index='6792'] -opus/edits/editreason[@index='6793'] -opus/edits/editreason[@index='6794'] -opus/edits/editreason[@index='6795'] -opus/edits/editreason[@index='6796'] -opus/edits/editreason[@index='6797'] -opus/edits/editreason[@index='6798'] -opus/edits/editreason[@index='6799'] -opus/edits/editreason[@index='68'] -opus/edits/editreason[@index='680'] -opus/edits/editreason[@index='6800'] -opus/edits/editreason[@index='6801'] -opus/edits/editreason[@index='6802'] -opus/edits/editreason[@index='6803'] -opus/edits/editreason[@index='6804'] -opus/edits/editreason[@index='6805'] -opus/edits/editreason[@index='6806'] -opus/edits/editreason[@index='6807'] -opus/edits/editreason[@index='6808'] -opus/edits/editreason[@index='6809'] -opus/edits/editreason[@index='6810'] -opus/edits/editreason[@index='6811'] -opus/edits/editreason[@index='6812'] -opus/edits/editreason[@index='6813'] -opus/edits/editreason[@index='6814'] -opus/edits/editreason[@index='6815'] -opus/edits/editreason[@index='6816'] -opus/edits/editreason[@index='6817'] -opus/edits/editreason[@index='6818'] -opus/edits/editreason[@index='6819'] -opus/edits/editreason[@index='682'] -opus/edits/editreason[@index='6820'] -opus/edits/editreason[@index='6821'] -opus/edits/editreason[@index='6822'] -opus/edits/editreason[@index='6823'] -opus/edits/editreason[@index='6824'] -opus/edits/editreason[@index='6825'] -opus/edits/editreason[@index='6826'] -opus/edits/editreason[@index='6827'] -opus/edits/editreason[@index='6828'] -opus/edits/editreason[@index='6829'] -opus/edits/editreason[@index='683'] -opus/edits/editreason[@index='6830'] -opus/edits/editreason[@index='6831'] -opus/edits/editreason[@index='6832'] -opus/edits/editreason[@index='6833'] -opus/edits/editreason[@index='6834'] -opus/edits/editreason[@index='6835'] -opus/edits/editreason[@index='6836'] -opus/edits/editreason[@index='6837'] -opus/edits/editreason[@index='6838'] -opus/edits/editreason[@index='6839'] -opus/edits/editreason[@index='684'] -opus/edits/editreason[@index='6840'] -opus/edits/editreason[@index='6841'] -opus/edits/editreason[@index='6842'] -opus/edits/editreason[@index='6843'] -opus/edits/editreason[@index='6844'] -opus/edits/editreason[@index='6845'] -opus/edits/editreason[@index='6846'] -opus/edits/editreason[@index='6847'] -opus/edits/editreason[@index='6848'] -opus/edits/editreason[@index='6849'] -opus/edits/editreason[@index='685'] -opus/edits/editreason[@index='6850'] -opus/edits/editreason[@index='6851'] -opus/edits/editreason[@index='6852'] -opus/edits/editreason[@index='6853'] -opus/edits/editreason[@index='6854'] -opus/edits/editreason[@index='6855'] -opus/edits/editreason[@index='6856'] -opus/edits/editreason[@index='6857'] -opus/edits/editreason[@index='6858'] -opus/edits/editreason[@index='6859'] -opus/edits/editreason[@index='686'] -opus/edits/editreason[@index='6860'] -opus/edits/editreason[@index='6861'] -opus/edits/editreason[@index='6862'] -opus/edits/editreason[@index='6863'] -opus/edits/editreason[@index='6864'] -opus/edits/editreason[@index='6865'] -opus/edits/editreason[@index='6866'] -opus/edits/editreason[@index='6867'] -opus/edits/editreason[@index='6868'] -opus/edits/editreason[@index='6869'] -opus/edits/editreason[@index='687'] -opus/edits/editreason[@index='6870'] -opus/edits/editreason[@index='6871'] -opus/edits/editreason[@index='6872'] -opus/edits/editreason[@index='6873'] -opus/edits/editreason[@index='6874'] -opus/edits/editreason[@index='6875'] -opus/edits/editreason[@index='6876'] -opus/edits/editreason[@index='6877'] -opus/edits/editreason[@index='6878'] -opus/edits/editreason[@index='6879'] -opus/edits/editreason[@index='688'] -opus/edits/editreason[@index='6880'] -opus/edits/editreason[@index='6881'] -opus/edits/editreason[@index='6882'] -opus/edits/editreason[@index='6883'] -opus/edits/editreason[@index='6884'] -opus/edits/editreason[@index='6885'] -opus/edits/editreason[@index='6886'] -opus/edits/editreason[@index='6888'] -opus/edits/editreason[@index='6889'] -opus/edits/editreason[@index='689'] -opus/edits/editreason[@index='6890'] -opus/edits/editreason[@index='6891'] -opus/edits/editreason[@index='6892'] -opus/edits/editreason[@index='6893'] -opus/edits/editreason[@index='6894'] -opus/edits/editreason[@index='6895'] -opus/edits/editreason[@index='6896'] -opus/edits/editreason[@index='6897'] -opus/edits/editreason[@index='6898'] -opus/edits/editreason[@index='6899'] -opus/edits/editreason[@index='69'] -opus/edits/editreason[@index='690'] -opus/edits/editreason[@index='6900'] -opus/edits/editreason[@index='691'] -opus/edits/editreason[@index='692'] -opus/edits/editreason[@index='693'] -opus/edits/editreason[@index='694'] -opus/edits/editreason[@index='695'] -opus/edits/editreason[@index='696'] -opus/edits/editreason[@index='697'] -opus/edits/editreason[@index='698'] -opus/edits/editreason[@index='699'] -opus/edits/editreason[@index='70'] -opus/edits/editreason[@index='700'] -opus/edits/editreason[@index='701'] -opus/edits/editreason[@index='702'] -opus/edits/editreason[@index='703'] -opus/edits/editreason[@index='704'] -opus/edits/editreason[@index='705'] -opus/edits/editreason[@index='706'] -opus/edits/editreason[@index='707'] -opus/edits/editreason[@index='708'] -opus/edits/editreason[@index='709'] -opus/edits/editreason[@index='71'] -opus/edits/editreason[@index='710'] -opus/edits/editreason[@index='711'] -opus/edits/editreason[@index='712'] -opus/edits/editreason[@index='713'] -opus/edits/editreason[@index='714'] -opus/edits/editreason[@index='715'] -opus/edits/editreason[@index='716'] -opus/edits/editreason[@index='717'] -opus/edits/editreason[@index='718'] -opus/edits/editreason[@index='719'] -opus/edits/editreason[@index='72'] -opus/edits/editreason[@index='720'] -opus/edits/editreason[@index='721'] -opus/edits/editreason[@index='722'] -opus/edits/editreason[@index='723'] -opus/edits/editreason[@index='724'] -opus/edits/editreason[@index='725'] -opus/edits/editreason[@index='726'] -opus/edits/editreason[@index='727'] -opus/edits/editreason[@index='728'] -opus/edits/editreason[@index='729'] -opus/edits/editreason[@index='73'] -opus/edits/editreason[@index='730'] -opus/edits/editreason[@index='731'] -opus/edits/editreason[@index='732'] -opus/edits/editreason[@index='733'] -opus/edits/editreason[@index='734'] -opus/edits/editreason[@index='735'] -opus/edits/editreason[@index='736'] -opus/edits/editreason[@index='737'] -opus/edits/editreason[@index='738'] -opus/edits/editreason[@index='739'] -opus/edits/editreason[@index='74'] -opus/edits/editreason[@index='740'] -opus/edits/editreason[@index='741'] -opus/edits/editreason[@index='742'] -opus/edits/editreason[@index='743'] -opus/edits/editreason[@index='744'] -opus/edits/editreason[@index='745'] -opus/edits/editreason[@index='746'] -opus/edits/editreason[@index='747'] -opus/edits/editreason[@index='748'] -opus/edits/editreason[@index='749'] -opus/edits/editreason[@index='75'] -opus/edits/editreason[@index='750'] -opus/edits/editreason[@index='751'] -opus/edits/editreason[@index='752'] -opus/edits/editreason[@index='753'] -opus/edits/editreason[@index='754'] -opus/edits/editreason[@index='755'] -opus/edits/editreason[@index='757'] -opus/edits/editreason[@index='758'] -opus/edits/editreason[@index='759'] -opus/edits/editreason[@index='76'] -opus/edits/editreason[@index='760'] -opus/edits/editreason[@index='761'] -opus/edits/editreason[@index='762'] -opus/edits/editreason[@index='763'] -opus/edits/editreason[@index='764'] -opus/edits/editreason[@index='765'] -opus/edits/editreason[@index='766'] -opus/edits/editreason[@index='767'] -opus/edits/editreason[@index='768'] -opus/edits/editreason[@index='769'] -opus/edits/editreason[@index='77'] -opus/edits/editreason[@index='770'] -opus/edits/editreason[@index='771'] -opus/edits/editreason[@index='772'] -opus/edits/editreason[@index='773'] -opus/edits/editreason[@index='774'] -opus/edits/editreason[@index='775'] -opus/edits/editreason[@index='776'] -opus/edits/editreason[@index='777'] -opus/edits/editreason[@index='778'] -opus/edits/editreason[@index='779'] -opus/edits/editreason[@index='78'] -opus/edits/editreason[@index='780'] -opus/edits/editreason[@index='781'] -opus/edits/editreason[@index='782'] -opus/edits/editreason[@index='783'] -opus/edits/editreason[@index='784'] -opus/edits/editreason[@index='785'] -opus/edits/editreason[@index='786'] -opus/edits/editreason[@index='787'] -opus/edits/editreason[@index='788'] -opus/edits/editreason[@index='789'] -opus/edits/editreason[@index='79'] -opus/edits/editreason[@index='790'] -opus/edits/editreason[@index='791'] -opus/edits/editreason[@index='792'] -opus/edits/editreason[@index='793'] -opus/edits/editreason[@index='794'] -opus/edits/editreason[@index='795'] -opus/edits/editreason[@index='796'] -opus/edits/editreason[@index='797'] -opus/edits/editreason[@index='798'] -opus/edits/editreason[@index='799'] -opus/edits/editreason[@index='8'] -opus/edits/editreason[@index='80'] -opus/edits/editreason[@index='800'] -opus/edits/editreason[@index='801'] -opus/edits/editreason[@index='802'] -opus/edits/editreason[@index='803'] -opus/edits/editreason[@index='804'] -opus/edits/editreason[@index='805'] -opus/edits/editreason[@index='806'] -opus/edits/editreason[@index='807'] -opus/edits/editreason[@index='808'] -opus/edits/editreason[@index='809'] -opus/edits/editreason[@index='81'] -opus/edits/editreason[@index='810'] -opus/edits/editreason[@index='811'] -opus/edits/editreason[@index='812'] -opus/edits/editreason[@index='813'] -opus/edits/editreason[@index='814'] -opus/edits/editreason[@index='816'] -opus/edits/editreason[@index='817'] -opus/edits/editreason[@index='818'] -opus/edits/editreason[@index='819'] -opus/edits/editreason[@index='82'] -opus/edits/editreason[@index='820'] -opus/edits/editreason[@index='821'] -opus/edits/editreason[@index='823'] -opus/edits/editreason[@index='824'] -opus/edits/editreason[@index='825'] -opus/edits/editreason[@index='826'] -opus/edits/editreason[@index='827'] -opus/edits/editreason[@index='828'] -opus/edits/editreason[@index='829'] -opus/edits/editreason[@index='83'] -opus/edits/editreason[@index='830'] -opus/edits/editreason[@index='831'] -opus/edits/editreason[@index='832'] -opus/edits/editreason[@index='833'] -opus/edits/editreason[@index='834'] -opus/edits/editreason[@index='835'] -opus/edits/editreason[@index='836'] -opus/edits/editreason[@index='837'] -opus/edits/editreason[@index='838'] -opus/edits/editreason[@index='839'] -opus/edits/editreason[@index='84'] -opus/edits/editreason[@index='840'] -opus/edits/editreason[@index='841'] -opus/edits/editreason[@index='842'] -opus/edits/editreason[@index='843'] -opus/edits/editreason[@index='844'] -opus/edits/editreason[@index='845'] -opus/edits/editreason[@index='846'] -opus/edits/editreason[@index='847'] -opus/edits/editreason[@index='848'] -opus/edits/editreason[@index='849'] -opus/edits/editreason[@index='85'] -opus/edits/editreason[@index='850'] -opus/edits/editreason[@index='851'] -opus/edits/editreason[@index='852'] -opus/edits/editreason[@index='853'] -opus/edits/editreason[@index='854'] -opus/edits/editreason[@index='856'] -opus/edits/editreason[@index='857'] -opus/edits/editreason[@index='858'] -opus/edits/editreason[@index='859'] -opus/edits/editreason[@index='86'] -opus/edits/editreason[@index='860'] -opus/edits/editreason[@index='861'] -opus/edits/editreason[@index='862'] -opus/edits/editreason[@index='863'] -opus/edits/editreason[@index='864'] -opus/edits/editreason[@index='865'] -opus/edits/editreason[@index='866'] -opus/edits/editreason[@index='867'] -opus/edits/editreason[@index='868'] -opus/edits/editreason[@index='869'] -opus/edits/editreason[@index='87'] -opus/edits/editreason[@index='870'] -opus/edits/editreason[@index='871'] -opus/edits/editreason[@index='872'] -opus/edits/editreason[@index='873'] -opus/edits/editreason[@index='874'] -opus/edits/editreason[@index='875'] -opus/edits/editreason[@index='876'] -opus/edits/editreason[@index='877'] -opus/edits/editreason[@index='878'] -opus/edits/editreason[@index='879'] -opus/edits/editreason[@index='88'] -opus/edits/editreason[@index='880'] -opus/edits/editreason[@index='881'] -opus/edits/editreason[@index='882'] -opus/edits/editreason[@index='883'] -opus/edits/editreason[@index='884'] -opus/edits/editreason[@index='885'] -opus/edits/editreason[@index='886'] -opus/edits/editreason[@index='887'] -opus/edits/editreason[@index='888'] -opus/edits/editreason[@index='889'] -opus/edits/editreason[@index='89'] -opus/edits/editreason[@index='890'] -opus/edits/editreason[@index='891'] -opus/edits/editreason[@index='892'] -opus/edits/editreason[@index='893'] -opus/edits/editreason[@index='894'] -opus/edits/editreason[@index='895'] -opus/edits/editreason[@index='896'] -opus/edits/editreason[@index='897'] -opus/edits/editreason[@index='898'] -opus/edits/editreason[@index='899'] -opus/edits/editreason[@index='90'] -opus/edits/editreason[@index='900'] -opus/edits/editreason[@index='901'] -opus/edits/editreason[@index='902'] -opus/edits/editreason[@index='903'] -opus/edits/editreason[@index='904'] -opus/edits/editreason[@index='905'] -opus/edits/editreason[@index='906'] -opus/edits/editreason[@index='907'] -opus/edits/editreason[@index='908'] -opus/edits/editreason[@index='909'] -opus/edits/editreason[@index='91'] -opus/edits/editreason[@index='910'] -opus/edits/editreason[@index='911'] -opus/edits/editreason[@index='912'] -opus/edits/editreason[@index='913'] -opus/edits/editreason[@index='914'] -opus/edits/editreason[@index='915'] -opus/edits/editreason[@index='916'] -opus/edits/editreason[@index='917'] -opus/edits/editreason[@index='918'] -opus/edits/editreason[@index='919'] -opus/edits/editreason[@index='92'] -opus/edits/editreason[@index='920'] -opus/edits/editreason[@index='921'] -opus/edits/editreason[@index='924'] -opus/edits/editreason[@index='926'] -opus/edits/editreason[@index='927'] -opus/edits/editreason[@index='929'] -opus/edits/editreason[@index='93'] -opus/edits/editreason[@index='930'] -opus/edits/editreason[@index='931'] -opus/edits/editreason[@index='932'] -opus/edits/editreason[@index='933'] -opus/edits/editreason[@index='934'] -opus/edits/editreason[@index='935'] -opus/edits/editreason[@index='936'] -opus/edits/editreason[@index='937'] -opus/edits/editreason[@index='938'] -opus/edits/editreason[@index='939'] -opus/edits/editreason[@index='94'] -opus/edits/editreason[@index='940'] -opus/edits/editreason[@index='941'] -opus/edits/editreason[@index='942'] -opus/edits/editreason[@index='943'] -opus/edits/editreason[@index='944'] -opus/edits/editreason[@index='945'] -opus/edits/editreason[@index='946'] -opus/edits/editreason[@index='947'] -opus/edits/editreason[@index='948'] -opus/edits/editreason[@index='949'] -opus/edits/editreason[@index='95'] -opus/edits/editreason[@index='950'] -opus/edits/editreason[@index='951'] -opus/edits/editreason[@index='952'] -opus/edits/editreason[@index='953'] -opus/edits/editreason[@index='955'] -opus/edits/editreason[@index='956'] -opus/edits/editreason[@index='957'] -opus/edits/editreason[@index='96'] -opus/edits/editreason[@index='960'] -opus/edits/editreason[@index='961'] -opus/edits/editreason[@index='962'] -opus/edits/editreason[@index='963'] -opus/edits/editreason[@index='964'] -opus/edits/editreason[@index='965'] -opus/edits/editreason[@index='966'] -opus/edits/editreason[@index='967'] -opus/edits/editreason[@index='968'] -opus/edits/editreason[@index='969'] -opus/edits/editreason[@index='97'] -opus/edits/editreason[@index='970'] -opus/edits/editreason[@index='971'] -opus/edits/editreason[@index='972'] -opus/edits/editreason[@index='973'] -opus/edits/editreason[@index='974'] -opus/edits/editreason[@index='977'] -opus/edits/editreason[@index='978'] -opus/edits/editreason[@index='979'] -opus/edits/editreason[@index='98'] -opus/edits/editreason[@index='980'] -opus/edits/editreason[@index='981'] -opus/edits/editreason[@index='982'] -opus/edits/editreason[@index='983'] -opus/edits/editreason[@index='984'] -opus/edits/editreason[@index='985'] -opus/edits/editreason[@index='986'] -opus/edits/editreason[@index='987'] -opus/edits/editreason[@index='988'] -opus/edits/editreason[@index='989'] -opus/edits/editreason[@index='99'] -opus/edits/editreason[@index='990'] -opus/edits/editreason[@index='991'] -opus/edits/editreason[@index='992'] -opus/edits/editreason[@index='993'] -opus/edits/editreason[@index='994'] -opus/edits/editreason[@index='995'] -opus/edits/editreason[@index='996'] -opus/edits/editreason[@index='997'] -opus/edits/editreason[@index='998'] -opus/edits/editreason[@index='999'] -opus/edits/editreason/nr -opus/edits/editreason/zh/added/aq -opus/edits/editreason/zh/address/hand[@ref='23'] -opus/edits/editreason/zh/address/ul -opus/edits/editreason/zh/aq/del -opus/edits/editreason/zh/aq/dul -opus/edits/editreason/zh/aq/nr -opus/edits/editreason/zh/del/note -opus/edits/editreason/zh/dul/aq -opus/edits/editreason/zh/note -opus/edits/editreason/zh/sig/ul -opus/edits/editreason/zh/ul/added -opus/edits/editreason/zh/ul/del -opus/kommentare -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='addison' and @subref='addison-spectator' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='alembert' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='archimedes' and @subref='archimedes-circuli' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='arnaud' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='bar' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='batteux' and @subref='batteux-grundsatz' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='bengel' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='berens-a' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='berlinische' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='bibl-wiss-kuenste' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='biron' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='bock-jg' and @subref='bockjg-idioticon' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='bodmer' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='bodmer' and @subref='bodmer-helena' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='bohme' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='bolinbroke' and @subref='bolinbroke-history' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='budberg-of' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='budberg-wd' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='bue-e-1988' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='buffon' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='busching' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='buttlar-ej' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='buttlar-ej' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='campenhausen-jc' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='crebillon' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='diderot' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='dujardin' and @subref='dujardin-rienzy' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='eckart-cg' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='erasmus' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='ern-p-1935' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='feh-j-2005' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='fiortifiocca' and @subref='vitadirenzo' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='flottwell' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='fontaine' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='friedrich-II' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='gellert-cf' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='gericke-jcs' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='gerstenberg' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='gra-h-2011' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='gra-h-2012' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='gresset' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='hagedorn' and @subref='freundschaft' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='hamann' and @subref='hamann-descartes' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='hamann' and @subref='hamann-kreuzzuege' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='hamann-vjc' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='hamann-vjc' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='herder' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='herder' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='hesiod' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='hessen-ludwig-landgraf' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='hume' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='jaucourt' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='jor-s-1988a' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='journal-etranger' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='juvenal' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='klopstock' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='klueter' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='koh-j-1997' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='konigsberger-f-a' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='korff-fa' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='korff-fa' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='lauson' and @subref='ewigkeit' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='lauson' and @subref='lauson-erster' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='lauson' and @subref='laute' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='lavini' and @subref='lavini-neueste' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='lilienthal-m' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='lilienthal-m' and @subref='erl-preussen' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='lindner-gi' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='lindner-jef' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='lindner-jg' and @subref='reizungen' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='lindner-jg' and @subref='schreibart' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='luther' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='melanges' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='mendelssohn' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='mengden-ce' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='munnich' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='munnich' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='newton' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='nuppenau-hl' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='persius' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='psellos' and @subref='psellos-arithmetik' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='rousseau' and @subref='rousseau-julie' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='ruprecht-jc' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='ruprecht-sa' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='schlegel-ja' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='schlegel-je' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='schrotter-ja' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='schultz-fa' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='schultz-jnw' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='spener-ph' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='sussmilch' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='voltaire' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='wachtler' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='werner-jg' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='witten-cw' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='young' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='zeise' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/link[@ref='zimmermann-d' and @linktext='true'] -opus/kommentare/kommcat/kommentar/eintrag/subsection[@id='berger-universalhistorie' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/eintrag/subsection[@id='hommel-einfalle' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/eintrag/titel/link[@ref='konigliche-d-g' and @linktext='false'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='http://dbe.rah.es/biografias/15331/bernardo-de-ulloa-y-sosa'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='http://dictionnaire-journalistes.gazettes18e.fr/journaliste/025-francois-de-baculard-darnaud'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='http://digital.slub-dresden.de/id362549893-17550000/1'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='http://ds.ub.uni-bielefeld.de/viewer/!metadata/1921384/5/LOG_0000/'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='http://ds.ub.uni-bielefeld.de/viewer/toc/1921386/0/LOG_0000/'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='http://ds.ub.uni-bielefeld.de/viewer/toc/2102882/1/'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='http://enccre.academie-sciences.fr/encyclopedie/'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10325935-4'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-481637'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-503870'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-765785'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB0001E22400000000'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN65608524X_0001'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://bbld.de/0000000022597638'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://bbld.de/0000000055572525'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://bbld.de/0000000055733579'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://bbld.de/0000000057277394'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://bbld.de/0000000375802940'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://bbld.de/GND1183497512'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://bbld.de/GND1183724462'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://bbld.de/GND1193548837'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://bbld.de/GND1194610919'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address=' https://digi.ub.uni-heidelberg.de/diglit/sammler_zeitvertreibe1764/0005'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://doi.org/10.1093/ref:odnb/10924'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://doi.org/10.1093/ref:odnb/16885'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://doi.org/10.1093/ref:odnb/22069'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://doi.org/10.1093/ref:odnb/26026'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://doi.org/10.1093/ref:odnb/26111'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://doi.org/10.1093/ref:odnb/7755'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://en.wikisource.org/wiki/Addison,_Joseph_(DNB00)'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k9814116g?rk=150215;2'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://gdz.sub.uni-goettingen.de/id/PPN672256886'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://gdz.sub.uni-goettingen.de/id/PPN731784995'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://hls-dhs-dss.ch/de/articles/010691'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://hls-dhs-dss.ch/de/articles/011334'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://hls-dhs-dss.ch/de/articles/024752'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb11045929-5'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://plato.stanford.edu/archives/fall2018/entries/bodin/'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://plato.stanford.edu/archives/fall2018/entries/rousseau/'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://plato.stanford.edu/archives/spr2019/entries/montaigne/'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://plato.stanford.edu/archives/spr2019/entries/spinoza/'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://plato.stanford.edu/archives/sum2019/entries/descartes/'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://plato.stanford.edu/archives/sum2019/entries/hume/'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://plato.stanford.edu/archives/win2016/entries/francis-bacon/'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://plato.stanford.edu/archives/win2017/entries/bayle/'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://plato.stanford.edu/archives/win2018/entries/montesquieu/'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd100099459.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd100116523.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd100208746.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd100212778.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd100216536.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd100331181.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd10039499X.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd100587992.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd100804500.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd100849008.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd1011208946.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd10125623X.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd101292562.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd101878141.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd1024881237.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd10313929X.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd103143629.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd103250790X.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd104088281.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd104105895.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd104113707.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd104197390.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd104197730.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd104204923.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd104318511.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd1055125337.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd1055292683.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd1082228885.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd108972755.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd115362185.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd115377328.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd115498036.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd115661069.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd115741208.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd116020148.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd11616607X.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd116229411.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd116255013.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd116326719.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd116458704.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd116509910.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd116538937.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd116545542.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd116725966.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd116958561.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd11696474X.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd117083607.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd117119628.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd117141054.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd117261637.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd117414271.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd117504122.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd117700282.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd117732230.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118501224.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118507605.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118512315.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118514881.html#ndbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd11852285X.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118523228.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118530666.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118533908.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118538322.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118538659.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118538969.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118540300.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118541013.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118545140.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118559796.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118563386.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118572121.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118580051.html#ndbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118580744.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd11858605X.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118587668.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118590111.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118607995.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118608002.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118616099.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118625756.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118631586.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118632477.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118634771.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118636979.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118639595.html#ndbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118643657.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118653938.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118655477.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118656325.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118666940.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118677438.html#ndbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118677446.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118685325.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118694413.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118697765.html#ndbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd11870009X.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118700421.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118701568.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118704958.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118714570.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118717758.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118723499.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd11872522X.html#ndbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd11872889X.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118731998.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118737147.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118740709.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118752561.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118760343.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118774832.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118783726.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address=' https://www.deutsche-biographie.de/pnd118788272.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118791273.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd11879941X.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118808230.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118812858.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118814834.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118826565.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118834134.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118834371.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118921088.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd118973258.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd119010437.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd119028123.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd119059614.html#ndbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd119086395.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd119353210.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd119396181.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd119439034.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd120535084.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd121046168.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd1213927773.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd121644111.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd121744868.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd122057597.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd122084349.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd122236335.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd122243552.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd122596366.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd124362672.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd124394302.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd12444282X.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd124747663.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd124899617.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd12496849X.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd127561919.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd128754524.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd129694142.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd129733547.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd129735183.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd129884367.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd130449903.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd130544310.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd131511580.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd132263297.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd132900122.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd133055027.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd136251862.html#ndbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd137726775.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd138707812.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd139457135.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd141221119.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd142064874.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/pnd143951866.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz004_00470_1.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz044_00331_1.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz049_00226_1.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz077_00130_1.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz077_00627_1.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz110509.html#ndbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz112650.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz11647.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz116629.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz12140.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz13296.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz13707.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz13711.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz140864.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz16501.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz18907.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz2034.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz20524.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz20743.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz21131.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz21551.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz22.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz23113.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz23484.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz24609.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz25689.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz25936.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz26177.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz26780.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz27948.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz28245.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz28563.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz31100.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz31807.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz31978.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz32441.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz32479.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz32614.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz33668.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz35443.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz36621.html#adbcontent '] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz36642.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz37220.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz37331.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz38138.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz38784.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz39753.html#ndbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz40039.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz428.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz43407.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz44600.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz45054.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz46316.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz47529.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz47546.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz48507.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz4863.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz4877.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz49272.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz5003.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz50655.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz51091.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz51425.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz51428.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz53415.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz53768.html#ndbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz5465.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz55337.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz56308.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz5740.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz59349.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz59998.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz61677.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz6261.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz62899.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz64155.html#ndbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz65675.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz68112.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz68160.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz69149.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz69527.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz69979.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz71784.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz75338.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz75447.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz7553.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz7576.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz75992.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz76044.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz7688.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz78275.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz79101.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz79124.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz79164.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz79505.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz79588.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz79822.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz8029.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz80334.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz81184.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz82289.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz83064.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz83404.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz84114.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz8491.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz8555.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz85662.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz85727.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz86137.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz86637.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz87010.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz96055.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz97005.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz98404.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfz98665.html#adbcontent'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfzo0818.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfzP4754.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfzP5861.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfzS01511.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfzS09318.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfzS11254.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfzW0460-5.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.deutsche-biographie.de/sfzW1864.html'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-1008945'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-10298'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-10487'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-12048'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-12230'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-12531'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-12658'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-13113'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-13400'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-13464'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-14249'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-14273'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-14918'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-15605'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-16454'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-16648'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-17104'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-17306'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-17728'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-17926'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-18152'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-18800'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-2033'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-2140'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-2211'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-22526'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-22784'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-23582'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-24529'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-25200'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-25480'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-25664'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-26132'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-26281'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-26833'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-27306'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-27497'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-27790'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-28680'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-29587'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-30260'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-3129'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-5635'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-5913'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-6209'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-6221'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-68321'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-6864'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-7692'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-8140'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-8350'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='https://www.oxforddnb.com/view/10.1093/ref:odnb/9780198614128.001.0001/odnb-9780198614128-e-9400'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='http://www.jewishencyclopedia.com//articles/13330-schultens-albert'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address=' http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10325901-6'] -opus/kommentare/kommcat/kommentar/eintrag/wwwlink[@address='URL: https://www.deutsche-biographie.de/pnd11867594X.html#ndbcontent'] -opus/kommentare/kommcat/kommentar[@id='1821' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='1857' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='1949' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='1955' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='1956a' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='1956b' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='1959' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='1962' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='1963' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='1967' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='1975' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='1983' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='1987' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='1988' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='1991' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='1993a' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='1993b' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='1994' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='1998' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='2002' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='2018' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='2021' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='abaelardus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='abbt' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='acc-g-1957' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ach-e-1997' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ach-e-2003' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ach-e-2004' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ach-e-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ach-e-2016a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ach-e-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ach-e-2020a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ach-e-2020b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='achenwall' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='addison' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='aderkas' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='aepinus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ageluth' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='aichinger' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='aischylos' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='alembert' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ale-w-1965' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ale-w-1966' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ale-w-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ale-w-1981' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='algarotti' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ali-g-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='alk-b-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='alt-i-1997' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='alting' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='amfrye' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ami-l-2014' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ami-l-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='anakreon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='anc-l-1942' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='and-a-1964' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='and-a-1969' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='andre' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ant-j-1997' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ape-f-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='apelles' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='apo-jud' and @type='bibel' and @sort='270'] -opus/kommentare/kommcat/kommentar[@id='apo-makk2' and @type='bibel' and @sort='292'] -opus/kommentare/kommcat/kommentar[@id='apo-sir' and @type='bibel' and @sort='290'] -opus/kommentare/kommcat/kommentar[@id='apo-std' and @type='bibel' and @sort='300'] -opus/kommentare/kommcat/kommentar[@id='apotheker' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='apo-tob' and @type='bibel' and @sort='280'] -opus/kommentare/kommcat/kommentar[@id='apuleius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='archimedes' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='arcq' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='argis' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='aristainetos' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='aristobulus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='aristophanes' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='aristoteles' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='arnaud' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='arndt-cg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='arn-g-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='arn-g-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='arn-g-2006' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='arnoldt' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='arvieux' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='asop' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ass-r-1910' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='at-chr2' and @type='bibel' and @sort='120'] -opus/kommentare/kommcat/kommentar[@id='at-es' and @type='bibel' and @sort='145'] -opus/kommentare/kommcat/kommentar[@id='at-hab' and @type='bibel' and @sort='240'] -opus/kommentare/kommcat/kommentar[@id='athenagoras' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='athenaios' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='at-hes' and @type='bibel' and @sort='210'] -opus/kommentare/kommcat/kommentar[@id='at-hi' and @type='bibel' and @sort='150'] -opus/kommentare/kommcat/kommentar[@id='at-hld' and @type='bibel' and @sort='170'] -opus/kommentare/kommcat/kommentar[@id='at-hos' and @type='bibel' and @sort='220'] -opus/kommentare/kommcat/kommentar[@id='at-jer' and @type='bibel' and @sort='190'] -opus/kommentare/kommcat/kommentar[@id='at-jes' and @type='bibel' and @sort='180'] -opus/kommentare/kommcat/kommentar[@id='at-jos' and @type='bibel' and @sort='60'] -opus/kommentare/kommcat/kommentar[@id='at-klg' and @type='bibel' and @sort='200'] -opus/kommentare/kommcat/kommentar[@id='at-koe1' and @type='bibel' and @sort='100'] -opus/kommentare/kommcat/kommentar[@id='at-koe2' and @type='bibel' and @sort='110'] -opus/kommentare/kommcat/kommentar[@id='at-mal' and @type='bibel' and @sort='260'] -opus/kommentare/kommcat/kommentar[@id='at-mi' and @type='bibel' and @sort='230'] -opus/kommentare/kommcat/kommentar[@id='at-mo1' and @type='bibel' and @sort='10'] -opus/kommentare/kommcat/kommentar[@id='at-mo2' and @type='bibel' and @sort='20'] -opus/kommentare/kommcat/kommentar[@id='at-mo3' and @type='bibel' and @sort='30'] -opus/kommentare/kommcat/kommentar[@id='at-mo4' and @type='bibel' and @sort='40'] -opus/kommentare/kommcat/kommentar[@id='at-mo5' and @type='bibel' and @sort='50'] -opus/kommentare/kommcat/kommentar[@id='at-neh' and @type='bibel' and @sort='125'] -opus/kommentare/kommcat/kommentar[@id='at-pr' and @type='bibel' and @sort='160'] -opus/kommentare/kommcat/kommentar[@id='at-ps' and @type='bibel' and @sort='130'] -opus/kommentare/kommcat/kommentar[@id='at-ri' and @type='bibel' and @sort='70'] -opus/kommentare/kommcat/kommentar[@id='at-sa' and @type='bibel' and @sort='250'] -opus/kommentare/kommcat/kommentar[@id='at-sam1' and @type='bibel' and @sort='80'] -opus/kommentare/kommcat/kommentar[@id='at-sam2' and @type='bibel' and @sort='90'] -opus/kommentare/kommcat/kommentar[@id='at-spr' and @type='bibel' and @sort='140'] -opus/kommentare/kommcat/kommentar[@id='attelmeyer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='atticus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='augustinus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ausfuehrliche-kritische-nachrichten' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='auvigny' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='axe-i-1904' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bacon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bae-m-1975' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bae-m-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bae-m-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='baglivi' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bal-h-1960' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ballstadt' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='balzac' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bar' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='basedow' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bassa' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='batteux' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bau-g-1970' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bau-m-1877' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='baumann' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='baumgarten-ag' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='baumgarten-n' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='baumgarten-sj' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bau-w-1986' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bau-w-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bau-w-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bau-w-1991' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bau-w-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bau-w-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bayle' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1980' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1981' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1981b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1983a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1983b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1983c' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1984' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1986' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1986b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1987a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1987b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1987c' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1988b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1988c' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1988d' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1988e' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1988f' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1988g' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1990b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1990c' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1991a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1991b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1992' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1992b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1992c' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1993' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1995' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-1998b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-2000' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-2002' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-2002b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-2006' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-2006b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-2012b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bay-o-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='beaumelle' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='beaumont' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='beaumont-jm' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='beausobre' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bee-i-2010' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bee-m-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bee-m-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bee-m-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='beh-m-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='behm' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='behnke' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bei-a-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bei-f-1993' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='belger' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bell' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bellarmin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bellegarde' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bengel' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='benoit' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ben-r-1926' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='benson' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='berens-a' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='berens-ah' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='berens-ca' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='berens-c' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='berens-g' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='berens-jc' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='berens-js' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='berger' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bergmann' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ber-i-1993' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ber-i-1995' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ber-i-2013' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='berkeley' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='berlinische' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bernard' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bernd' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bernis' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bertram' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bet-d-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bet-h-1952' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bet-j-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bet-j-2009' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bet-j-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bia-l-1930' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bibl-wiss-kuenste' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bic-r-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bic-r-2017' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bielfeld' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bierling' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='biron' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bis-b-1975' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bischoff' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bitaube' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='blacklock' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bla-e-1955' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bla-e-1957' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bla-f-1928' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bla-f-1929' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bla-f-1931' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bla-f-1932' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bla-f-1952' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bla-f-1954' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bla-f-1956a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bla-f-1956b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bla-f-1956c' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bla-f-1959' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bla-f-1962' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bla-f-1963' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bla-j-1931' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='blank' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='blervache' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bleterie' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='blindau' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='blu-j-1912' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bock-jg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bode' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bodin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bodmer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='boerhaave' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='boe-w-1956' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bogatzky' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='boh-h-1986' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bohlius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='boh-m-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bohme' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bohmer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='boh-r-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='boh-r-2003' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='boh-r-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='boh-r-2008' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='boileau' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bolinbroke' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='boltz' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bon-w-1985' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='borde' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='borowski' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='borremansius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bos' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='botticher' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='boulainvilliers' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='boulanger' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bourdeaux' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bow-d-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='boyer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='boysen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bra-a-1950' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bra-b-1975' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='breitenbauch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='breitinger' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bremse' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='briefe-literatur' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='briqueville' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bro-a-1870' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='broe' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bro-t-2012a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bro-t-2012b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bro-t-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='brown' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bro-x-2016a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bro-x-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='brucker' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='brumoy' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bruyere' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bry-v-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bucer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bucholtz-k-er' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bucholtz-k-ja' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bucholtz-k-jc' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bucholtz-k-mc' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bucholtz-k-re' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='buck' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='budberg-bh' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='budberg-de' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='budberg-of' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='budberg-wd' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bue-e-1958' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bue-e-1962' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bue-e-1964' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bue-e-1966' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bue-e-1966b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bue-e-1973' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bue-e-1986' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bue-e-1988a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bue-e-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bue-e-1988b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bue-e-1988c' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bue-e-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bue-e-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bue-e-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bue-e-1997' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bue-e-2000' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='buffon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='buh-w-1955' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='bunellus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='burckardt' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bur-e-1929' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='burk' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='burklin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='burnet' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='burscher' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bury' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='busching' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='bus-h-1943' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='but-p-2015' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='but-r-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='buttlar-ej' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='buttlar-hs' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='buxtorf' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cajetan' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cam-g-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='campanella' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='campenhausen-jc' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='campenhausen-lpb' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='campigneulles' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='can-m-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='canstein' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='car-c-1855' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='cardanus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='car-h-1985' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='carius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='carpzov' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='casaubonus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cassel' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cataneo' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cato' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='catull' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='chapat' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='charmois' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='charpentier' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cha-t-1992' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='chatelet' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cha-u-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='chetardie' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='chladenius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='choffin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='chr-c-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='chr-h-1963' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='christiani' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='christlieb' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='chrysostomos-d' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='chrysostomus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cicero' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cla-c-1946' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='clairaut' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cla-j-1878' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='clara' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='clausnitzer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cless' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cleveland' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='clodius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='clo-h-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='cohausen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='coh-m-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='col-c-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='colli' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='collier' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='collins' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='colluthus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='comenius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='commerell' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='con-j-1889' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='cooper' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cor-e-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='cornaro' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='courcelles' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='courtan-pj' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='courtan-sm' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='coyer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cramer-ja' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='crebillon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cretlau-dw' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='creutz' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cro-b-1912' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='cro-b-1912b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='cromwell' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cronegk' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='crusius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='crusius-ca' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cudworth' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cupner' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='cys-h-1921' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='dach' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dacier' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dah-d-2000' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='dale' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dal-o-1986' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='damm' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dangeuil' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dante' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='danziger' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dap-i-2007' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='daubler' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='debbert' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='decore' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='deg-a-2014' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='deg-a-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='degner' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='deh-p-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='delaborde' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='del-s-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='demetrios' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='demokrit' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='demosthenes' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='denham' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='descartes' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='desessartz' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='desfontaines' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='desforges' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='deslandes' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='destouches' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='deu-c-1995' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='deu-c-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='deu-c-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='deu-c-2011' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='devillers' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dic-d-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='dickinson' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='diderot' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dieu' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dil-e-1969' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='dil-w-1936' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='diogenes' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dis-j-1871' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ditton' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dodsley' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='domhardt' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dommerich' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='donat' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='don-f-2017' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='dre-b-1945' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='driest' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dro-d-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='dro-h-1956' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='dryden' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dubos' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dudgeon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dufour' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dujardin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dumont' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dun-s-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='dun-s-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='dupuy' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='durosoy' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dur-w-1997' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='duryer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dusch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dyer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='dyr-c-1925' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ebert-ja' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ebs-w-1912' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='eckart-cg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='eck-g-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='effen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='eic-s-2015' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='eliberitanus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='elmanicus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='elsner' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='enc-r-1964' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='encyclopedie' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='engelbrecht' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ennius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='epikur' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='epitre-cygnes' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='erasmus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ernesti' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ern-p-1935' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='erotianus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='erpen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='eschenbach' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='eschenbach-jch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='eskuche' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='espiard' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='essen-ij' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='essich' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='estève' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='estocq' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='euripides' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='eusebios' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='faber' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='fabricius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='fagnan' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='faulques' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='fec-j-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fec-j-1983' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fec-j-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fec-j-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fec-j-1990b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fec-j-2001' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fec-j-2002' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fec-j-2003' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fec-j-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='feh-j-2002' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='feh-j-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fehre' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='fei-k-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fet-w-1904' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ficino' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='fielding' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='fig-g-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fin-a-1997' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='finckenstein-k' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='fin-l-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fin-l-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fiortifiocca' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='fischer-jf' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='fischer-kk' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='fis-r-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fis-r-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fis-r-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fis-r-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fis-r-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fleming-p' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='flottwell' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='fol-l-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fol-l-2011' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fon-m-1991' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fontaine' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='fontenelle' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='for-m-2010' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='formey' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='forstmann' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='foussardier' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='fra-l-1982' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fre-c-2003' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='freron' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='fresnoy' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='freytag-tm' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='fri-b-1949' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fri-b-1952' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='friedrich-II' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='fri-f-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fri-f-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='fritz' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='fuchs' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='funck' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='funck-jo' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gagnier' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gai-u-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gai-u-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gai-u-2006' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gai-u-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gai-u-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gai-u-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-1960' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-1967' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-1968' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-1976' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-1977' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-1983' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-1986' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-1987b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-1987c' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-1990b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-1992' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-1996b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-1999b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-2000' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gaj-b-2003' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gale' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='garnier' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gaudio' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='geddes' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gelehrte-abhandlungen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gellert-cf' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gellius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gellius-jg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gem-m-1918' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gemmingen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='georg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gerdes' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gerhard' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gerhardt' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gericke-jcs' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gerstenberg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ger-t-1969' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ger-t-1981' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gesner-jm' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gesner-k' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gesner-s' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='giannoni' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gia-s-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gichtel' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gie-b-1862' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gie-b-1862b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gie-h-1964' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gie-h-1967' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='giese' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gil-k-1857' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gil-w-2000' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gil-w-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gil-w-2006' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gil-w-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gil-w-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gio-p-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='girard' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='giseke' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='glass' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gleim' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gne-k-2008' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='goclenius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='goe-j-2011' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='goguet' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='goldsmith' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='golius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gol-j-2010' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gor-r-2010' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gothan' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gottsched' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gotz-jn' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='goudar' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='goze' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gra-e-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-1989b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-1996a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-1996b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-2002' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-2002b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-2003a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-2003b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-2005b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-2008' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-2009a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-2009b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-2011' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-2014' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-2016a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-2018' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-h-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gra-j-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='graville' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gregorovius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='greis' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gresset' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gri-g-1995' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gri-g-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gri-g-1999a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gri-g-1999b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gri-g-2002' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gri-g-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gri-g-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='grimm-fm' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='griselini' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='groeben-je' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='groeben-wl' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gronert' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gru-k-1956' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gru-k-1958' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gru-k-1961' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gru-k-1961b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gru-k-1966' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gru-k-1980' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gru-k-1982' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gru-k-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='grundler' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='grundt' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='grynäus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='guadagnoli' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='guichard' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gun-c-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gundling' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='gun-t-2010' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='gut-w-1964' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='guyon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hackspan' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hagedorn' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hagedorn-ch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hag-t-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hahn' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hahn-echb' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hahn-jb' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='haller' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hallervord' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hamann' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hamann-jc' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hamann-mm' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hamann-vjc' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hama-w-2018' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hamb-beytraege' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hamb-correspondenten' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hamberger' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hamilton' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ham-j-2000' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ham-j-2014' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ham-k-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ham-k-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ham-k-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hanow' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='han-t-1946' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='han-t-1947' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='han-v-2001a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='han-v-2001b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hanway' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='happel' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='haq-k-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hardt' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hartknoch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hartung-h' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hartung-hj' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hartung-mc' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hartung-re' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='harvey' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hase' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hau-b-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='haug' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hau-j-1907' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hawkesworth' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hay-d-2008' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hay-k-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hederich' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='heg-g-1956' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hei-c-1983' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hei-h-1936' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hei-x-1963' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='helck' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='helvetius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hem-h-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hem-h-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hem-h-2000' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hen-a-1955' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='hen-a-1962' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hen-a-1983a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hen-a-1983b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hen-a-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hen-a-1993' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hen-a-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hen-a-1997' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hen-a-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='henault' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hen-b-1910' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hennings' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hen-u-2013' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='herauld' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='herder' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='her-h-1971' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='her-j-1940' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='herodot' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hervey' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hesiod' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hessen-ludwig-erbprinz' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hessen-ludwig-landgraf' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hesshus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='heumann' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='heumann-j' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hey-r-1975' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hil-g-1924' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hil-g-1925' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hill' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hiller' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hillmer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hil-w-1933' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hil-w-1938' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hil-w-1955' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hindersin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hinkelmann' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hin-w-1997' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hinz' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hippel' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hipperich' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hippokrates' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hirzel' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hobbes' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hof-a-1995' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hof-a-199' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hof-v-1972' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hof-v-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hof-v-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hof-v-1997' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hof-v-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hogarth' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='holberg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hollmann' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hol-r-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='homer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hommel' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='horaz' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hor-i-1961' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hoyer-r' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='huber' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hubner' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='huet' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='huhn' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hui-k-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hui-k-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hulshoff' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hume' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hurd' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hur-k-2001' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='hus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hutcheson' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='hypochondrist' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='igelstrom' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ild-p-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ime-n-1938' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='irm-h-1960' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='irm-h-1960b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='irm-h-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='irm-h-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='irm-h-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='iselin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='isokrates' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='jac-b-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jac-c-2006' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jacobi-cf' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='jacobi-jc' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='jacobi-jf' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='jacquet' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='jaucourt' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='jephson' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='jerusalem-jfw' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='jester' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='joachim' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='joa-j-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='joa-j-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='joecher' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='johnson' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='jol-k-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='joncourt' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='jor-s-1961' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-1962' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-1966' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-1968' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-1976' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-1980' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-1981' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-1981b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-1984' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-1984b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-1988a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-1988b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-1997' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-1997b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-2000' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-2003' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-2013' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jor-s-2014' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='jortin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='josephus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='journal-etranger' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='juengling' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='justi' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='juvenal' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kade' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kae-a-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kal-a-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kal-a-2016b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kal-a-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kalle' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kalmar' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kames' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kan-r-2001' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kant' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kantemir' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kanter-jj' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='karl' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='karoline' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='karsch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='karstens-jn' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kar-u-2000' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kastner' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='katharina' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kaw-y-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kaw-y-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kaw-y-1990b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kaw-y-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kaw-y-1994b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kaw-y-1995' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kaw-y-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kaw-y-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kaw-y-1999b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kaw-y-1999c' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kaw-y-2008' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kay-m-1859' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='keber' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kei-l-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kei-l-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kem-d-1993' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kem-h-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kem-h-2002' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='keralio' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='keyser' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='keyssler' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='king-w' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kin-j-1963' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kin-o-2004' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kin-t-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kirchweger' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kis-e-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='klein-ce' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kleinow' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kleist' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kleist-gch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kle-t-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kle-t-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kle-t-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kli-h-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='klingstaedt' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kli-p-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='klo-l-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='klo-p-1948' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='klo-p-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='klopstock' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='klueter' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='knittel' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1959' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1963' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1980a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1984' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1989b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1989c' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1990b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1990c' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1991a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1991' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1992' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1993' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1993b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1995' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-1999b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-2001' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-2002' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-2006' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-2010' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-2012a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kno-r-2012b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='knu-c-1982' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='knu-c-1983' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='knutzen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='koch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='koch-fr' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='koch-g-2001' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kocz-e-2001' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kocz-e-2003' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kocz-e-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kocz-e-2006' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kocz-e-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kocz-e-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koe-w-1954' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koe-w-1955' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koe-w-1956' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koe-w-1957' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koe-w-1959' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koe-w-1965' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-1988b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-1988c' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-1991' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-1993a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-1993b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-1993c' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-1994a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-1994b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-1994c' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-1997' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-1998a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-2000' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-2000b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-2012b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='koh-j-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kolbe' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kongehl' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='konigliche-d-g' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='konigsberger-f-a' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='konigsberger-f-g' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='konigsberger-gp-z' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kon-p-1914' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kon-p-1915' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='korff' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='korff-fa' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kornmann' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kortholt' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kow-a-1927' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kowalewski' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kra-h-19881' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kra-p-1961' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kra-p-1963' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kra-p-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kra-x-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kra-x-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kra-y-2017' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='krebs' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kre-j-2004' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kre-j-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kri-a-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='krickende' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kru-a-1930' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kruger-jg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='krunitz' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='krz-k-1970' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kuc-c-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kuh-e-1905' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kuh-e-1907' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kuh-e-1908' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kuhlmann' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kuh-m-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kuh-m-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kurella' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='kur-g-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kus-m-1936' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='kypke' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lacombe' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lactanz' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lacy-fm' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lacy-pe' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lado' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lambert' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lambert-jh' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lamettrie' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lamotte' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='langermann' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lardner' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lau-m-2003' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lauson' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lavalette' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lavini' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lav-p-2011' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='law-j' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lea-s-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lebret' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lefort' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='leh-r-1890' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lei-b-1953' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lei-b-1958' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lei-b-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='leibniz' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lei-e-1991' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lenclos' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lennox' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lessing' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='let-j-1893' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='leusden' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lev-z-1984' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lev-z-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lev-z-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lev-z-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lichtwer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lieberkuehn' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lie-f-1926' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lightfoot' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lilienthal-m' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lilienthal-th' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='limbourg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lin-a-2006' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lindhammer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lindner-aa' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lindner-gi' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lindner-jef' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lindner-jg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lindner-m' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lin-h-1975' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lin-h-1982' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lin-h-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lin-h-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lin-h-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lin-h-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='link-i' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='livius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='loc-a-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='locatelli' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='locke' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='loc-m-2003' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='loc-m-2003b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='loen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='logau' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='löh-k-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lossius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='loubere' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lov-k-2017' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lowth' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='low-w-1950' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lucanus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lucas' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ludke' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lukian' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lukrez' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lum-h-1970' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lup-j-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lup-j-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lup-j-1988b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lup-j-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lup-j-1993' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lup-j-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lup-j-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lup-j-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lup-j-2004' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lup-j-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lup-j-2010' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lup-j-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='lup-j-2012b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='luther' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='luzac' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lycophron' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lynar' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='lyttelton' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='machiavelli' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mackenzie' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='macpherson' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mae-w-1997' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mailly-l' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mainvilliers' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='maj-s-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='maj-s-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='maj-s-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='maj-s-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='maj-s-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mak-r-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mallet' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mal-w-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mandeville' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mandrin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='man-i-1963' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='manilius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='manteuffel-cl' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='man-x-1953' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='manzini' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mar-b-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mar-b-2006' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mar-b-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='marcaurel' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='marchand' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='marck' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='marin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='marivaux' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='marmontel' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='marnesia' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mar-p-1976' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='marpurg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='marshall' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='marsy' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='masch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mas-p-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='massillon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='massuet' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='maubert' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='maupertuis' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mauvillon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='maximos' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='may' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mazzoni' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mcc-j-1997' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='meck' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='meh-j-1983' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mei-a-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mei-c-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mei-e-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mei-e-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='meier-gf' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='meinhard' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='melanchthon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='melanges' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mendelssohn' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mengden-ce' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mengden-eb' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mengden-ga' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mengden-jh' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mengs' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='men-k-1993' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='menschenfreund' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='merian' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mer-p-1948' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mer-p-1949' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mer-p-1950' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mer-p-1951' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mer-p-1955' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mer-p-1967' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='merveilleux' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='met-b-1944' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='met-e-1934' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='met-e-1952' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='met-e-1961' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='meurer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mey-h-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mey-i-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='meynieres' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mic-a-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='michaelis-jd' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mik-a-2009' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mil-j-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mil-j-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='milton' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='min-j-1881' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mir-j-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mir-j-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mir-j-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='miy-n-2004' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='miy-n-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='miy-n-2014' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='miy-n-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='moeris' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='moldenhawer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='moliere' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='montaigne' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='montesquieu' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='montfaucon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='montfaucon-nph' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='montpensier' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='moreri' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='morinus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mornay' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='moschus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mosellanus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='moser' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='moserj' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mosheim' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mourges' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mou-u-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mou-u-2002' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='moyne' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mueller-ge' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mul-e-20003' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mul-e-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mul-w-1959' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mun-j-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mun-j-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='mun-j-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='munnich' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='muralt' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='musschenbroek' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='mylius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='nad-j-1913' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='nad-j-1930' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='nad-j-1948' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='nad-j-1949a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='nad-j-1949b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='nad-j-1949c' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='nad-k-1931' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='nad-k-1937' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='nag-d-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='naj-k-2007' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='naj-k-2013' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='nam-t-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='nam-t-1999a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='nam-t-1999b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='naumann' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='neb-g-1973' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='neb-g-1973b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='neb-s-1970' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='neues-gem-mag' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='neumann' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='newton' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='niceron' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='nic-f-1800' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='nicolai-f' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='nicolai-g' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='nicolay' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='nis-h-1985' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='nonnos' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='nordencrantz' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='noverre' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='nt-2jo' and @type='bibel' and @sort='530'] -opus/kommentare/kommcat/kommentar[@id='nt-apg' and @type='bibel' and @sort='350'] -opus/kommentare/kommcat/kommentar[@id='nt-eph' and @type='bibel' and @sort='400'] -opus/kommentare/kommcat/kommentar[@id='nt-gal' and @type='bibel' and @sort='390'] -opus/kommentare/kommcat/kommentar[@id='nt-heb' and @type='bibel' and @sort='480'] -opus/kommentare/kommcat/kommentar[@id='nt-jak' and @type='bibel' and @sort='490'] -opus/kommentare/kommcat/kommentar[@id='nt-jo' and @type='bibel' and @sort='340'] -opus/kommentare/kommcat/kommentar[@id='nt-joh1' and @type='bibel' and @sort='520'] -opus/kommentare/kommcat/kommentar[@id='nt-jud' and @type='bibel' and @sort='540'] -opus/kommentare/kommcat/kommentar[@id='nt-kol' and @type='bibel' and @sort='420'] -opus/kommentare/kommcat/kommentar[@id='nt-kor1' and @type='bibel' and @sort='370'] -opus/kommentare/kommcat/kommentar[@id='nt-kor2' and @type='bibel' and @sort='380'] -opus/kommentare/kommcat/kommentar[@id='nt-lk' and @type='bibel' and @sort='330'] -opus/kommentare/kommcat/kommentar[@id='nt-mk' and @type='bibel' and @sort='320'] -opus/kommentare/kommcat/kommentar[@id='nt-mt' and @type='bibel' and @sort='310'] -opus/kommentare/kommcat/kommentar[@id='nt-off' and @type='bibel' and @sort='550'] -opus/kommentare/kommcat/kommentar[@id='nt-pet1' and @type='bibel' and @sort='500'] -opus/kommentare/kommcat/kommentar[@id='nt-pet2' and @type='bibel' and @sort='510'] -opus/kommentare/kommcat/kommentar[@id='nt-phil' and @type='bibel' and @sort='410'] -opus/kommentare/kommcat/kommentar[@id='nt-roe' and @type='bibel' and @sort='360'] -opus/kommentare/kommcat/kommentar[@id='nt-th1' and @type='bibel' and @sort='430'] -opus/kommentare/kommcat/kommentar[@id='nt-th2' and @type='bibel' and @sort='440'] -opus/kommentare/kommcat/kommentar[@id='nt-tim1' and @type='bibel' and @sort='450'] -opus/kommentare/kommcat/kommentar[@id='nt-tim2' and @type='bibel' and @sort='460'] -opus/kommentare/kommcat/kommentar[@id='nt-tit' and @type='bibel' and @sort='470'] -opus/kommentare/kommcat/kommentar[@id='nuppenau-hl' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='nuppenau-ja' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='nuppenau-jg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='nuppenau-jp' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='oel-w-1978' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='oest' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ofl-j-1952' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ofl-j-1958' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ofl-j-1962' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ofl-j-1963' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ofl-j-1967' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ofl-j-1968' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ofl-j-1971' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ofl-j-1972' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ofl-j-1972b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ofl-j-1979a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ofl-j-1979b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ofl-j-1979c' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ofl-j-1985' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ofl-j-1988a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ofl-j-1988b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ofl-j-1997' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ofn-g-1966' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ohlius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='oli-m-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='olivet' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='opitz-m' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='orrery' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ortmann' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='osten-fw' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='osten-w' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ott-d-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ott-d-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='oven' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ovid' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='palissot' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='palmstrauch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='panciroli' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='pan-d-2014' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='par-e-1949' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='parisius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='pascal' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='passionei' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='pat-i-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pat-i-2005b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pat-i-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pat-i-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pat-i-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pat-i-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pat-k-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pat-k-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pat-k-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pau-b-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pausanias' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='pax-g-1947' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pen-p-1978' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='perrin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='persius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='petersen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='petrarca' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='petron' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='petty' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='peu-w-1958' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pfalz-zweibruecken-karoline' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='pfeffel' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='pflug' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='philidor' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='philippi' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='philon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='piccolomini' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='pie-r-1978' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pie-r-1982' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pie-r-1986' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pindar' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='pin-j-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pisanski' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='pis-i-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pis-i-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pitaval' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='pittius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='platon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='plinius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='plinius-c' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='plotin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='pluche' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='plutarch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='poehling' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='poiret' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='poisson' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='polignac' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='pompeius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='pon-f-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pon-f-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pontoppidan' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='pope' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='popowitsch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='porphyrios' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='porsch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='posselius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='pot-m-1939' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='poullain' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='prades' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='praxiteles' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='premontval' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='prevost' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='prideaux' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='priscianus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='procope' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='profe' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='proklos' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='propertius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='pro-r-1966' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pro-r-1971' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='psellos' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='pup-a-1977' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pup-a-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pup-a-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pup-a-1999a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pup-a-1999b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='pur-e-1957' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='putter' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='putz' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='pythagoras' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='querlon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='quesnel' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='quintilian' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='rabener' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='rac-g-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='racine' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='rackmann' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='radicke-gc' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='rambach-jj' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ramler' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='rapin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='rappolt-ch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='rat-j-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rat-j-1993' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rat-j-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='raw-s-1937' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='raynal' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='red-m-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='reg-a-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='reichardt-j' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='reichel' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='rei-j-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rei-j-2014a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rei-j-2014b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rei-j-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rei-j-2017' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rei-j-2018' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rei-j-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rei-j-2021a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rei-j-2021b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='reimann-jf' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='reime' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='rein-e-1954' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='reinesius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='reinhard' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='reinking' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='rei-o-1812' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rei-s-1983' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rentzen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='restaut' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='reu-c-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='reu-c-2007' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='reu-c-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='reuchlin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='reusch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ric-b-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='riccoboni' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ric-h-1931' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='richardson' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='rieger' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='rienzo' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ringeltaube' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='rin-j-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rin-j-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rin-j-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rin-j-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rin-j-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rittersdorf' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='rob-c-1942' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rob-f-2006' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rob-f-2011' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='robinet' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='roc-h-1969' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='roc-h-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rochon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='roc-r-1869' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rod-w-1922' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rod-w-1929' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rogall' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='roh-r-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='roh-x-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rollin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ronsard' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ros-k-1875' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ros-m-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rost-jc' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='rot-f-1821' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rousseau' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='rud-a-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rud-a-2006a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rud-a-2006b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rud-a-2007' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rud-a-2008' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rud-a-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rui-h-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rui-h-2013' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='runtze' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='rup-e-1958' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rup-e-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ruprecht-am' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ruprecht-jc' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ruprecht-sa' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='rup-w--1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='rup-w-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sachsen-weimar-ka' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sae-e-1931' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sahme-gj' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sahme-rf' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='saint-evremont' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='saint-fargeau' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='saint-mard' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='saint-pierre' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='saint-real' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sale' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sal-h-1958' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sal-j-1993' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sallust' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='salthenius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sammler' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sanctius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='santorio' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sarpi' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='saurin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='savary' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sca-a-1981' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='scapula' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schaarschmidt' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schabaelje' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schade' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sch-d-1948' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='scheffer-jg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='scheffner-jg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='scheller' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sch-f-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-f-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-g-1977' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-h-1926' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='schieferdecker' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schiffert' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schimmelpfennig' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sch-j-1813' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-l-1968' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='schlegel-g' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schlegel-ja' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schlegel-je' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sch-n-1991' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-n-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-n-2014' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-n-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-n-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='schoettgen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='scholz' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schonaich' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schoneich' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schoppach' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sch-p-1944' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-r-1986' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-r-1992' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-r-1995' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-r-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='schrader' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schreiber' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schrevel' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schroder-fjw' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schroder-he' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schroders' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schrotter-ajh' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schrotter-ja' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sch-s-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-s-1997' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-s-2007' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-s-2011' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-t-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-t-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-u-1982' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='schubert' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schuetze-g' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schultens' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schultz-fa' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schultz-jc' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schultz-jf' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schultz-jnw' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schultz-sj' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schumacher-ar' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schumacher-jh' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schurmann' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schuster' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schutz' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sch-v-1960' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-w-1945' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-w-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='schwabe' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schwartz-jc' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schwarz-chg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='schwarzer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sch-x-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-y-1939' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-y-1946' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-z-1947' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sch-z-1963' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sci-a-2014' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sci-b-1937' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sci-c-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sci-c-200' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sci-c-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sci-d-1961' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='scultetus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='seckendorff' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sei-m-1955' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sei-m-1955b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sei-m-1955c' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sei-m-1955d' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sei-m-1956' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sei-m-1957' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sei-m-1961' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sei-m-1983' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sei-m-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sei-m-1993' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sei-m-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sei-m-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sei-m-1999b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sei-m-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sei-m-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='seligmann' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='selis' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='semler' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sen-c-2004' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sen-c-2011' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sen-c-2011b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sen-c-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='seneca' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sevigne' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sextus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='shaftesbury' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='shakespeare' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='she-a-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='shuckford' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='siebert-mf' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sie-h-1969' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sigismund' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sike' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sil-m-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sim-f-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sim-f-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sim-f-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sim-f-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sim-j-1967' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sim-j-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sim-j-1983' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sim-j-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sim-j-1987b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sim-j-1987c' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sim-j-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sim-j-1995' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sim-j-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sim-j-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sim-l-2002' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sim-l-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sim-l-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sim-l-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='simonis' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sin-c-2004' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sin-c-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sin-c-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sin-c-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ska-o-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ska-o-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ska-o-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ska-o-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ska-o-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='skelton' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sme-j-1916' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='smi-r-1960' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='smi-r-1960b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='smi-r-1964' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='smi-r-1971' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='smollet' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sne-l-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sokrates' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='somervile' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sophokles' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sos-l-2002' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='spanheim' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='spa-r-2006' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='spa-r-2011' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='spe-m-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='spence' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='spencer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='spener-ph' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='spinoza' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='stahl' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='stanislaw' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='stanley' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='staupitz' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ste-c-1954' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ste-h-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ste-h-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ste-h-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='steinbruchel' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='steinkopf-g' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ste-s-1967' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ste-x-1902' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ste-y-1983' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ste-z-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ste-z-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sticotti' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='stockhausen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='stoffel-c' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='strabon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='str-t-2004' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='str-u-1970' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='stu-c-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='stu-c-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='stu-k-2004' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='stu-k-2004b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='stu-k-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='stu-k-2007' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='stu-k-2011' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='stu-k-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='stu-k-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='stu-k-2016b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='stu-k-2018' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='stu-k-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='suchland' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='suc-v-1967' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='suc-v-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sud-f-1973' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='sueton' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sulzer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='sussmilch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='swa-c-1967' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='swedenborg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='swift' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='tacitus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='tai-a-2017' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='tak-t-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='tak-t-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='tak-t-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='taylor' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='tel-f-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='teller' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='teller-wa' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='terenz' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ter-k-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ter-k-2017' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ter-k-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='terrasson' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='teske' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='tetsch-cl' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='themistokles' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='theodoret' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='theognis' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='theokrit' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='theophrast' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='thespis' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='tho-f-1929' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='tho-f-1933' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='thomas' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='thomaskempen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='thompson' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='thorwald' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='thourneyser' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='tho-x-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='thukydides' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='thu-n-1957' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='til-d-2021' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='til-x-1960' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='til-x-1979' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='tiphaigne' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='tok-k-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='tok-k-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='toland' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='tor-c-2013' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='tottien-ca' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='touron' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='tra-j-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='tra-j-1992' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='tre-r-2000' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='trescho-se' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='trescho-sf' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='triller' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='trublet' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='tru-c-1969' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='tscherning' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='tsc-p-1891' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='tucker' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='twe-m-2007' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='twe-m-2010' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='tyrtaios' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ulloa' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='und-j-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='und-j-1995' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='und-j-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ung-r-1905' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ung-r-1911' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ung-r-1925a' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ung-r-1925b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ung-r-1929' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ung-r-1935' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='unzer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='urn-h-1951' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ussher' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='uz-jp' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='valentin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='valerius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='van-p-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='van-t-1958' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='vau-l-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='vau-l-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='vau-l-1999' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='vechner' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='vegesack' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='vei-b-2016' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='vel-h-1988' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='vel-h-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='vel-h-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='verbrugge' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='vergil' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ver-m-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='vernet' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='vernezobre' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ver-v-1959' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='ver-v-iii' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='vietinghoff-oh' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='vigerius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='vil-j-2002' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='villaret' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='villiers' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='vivonne' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='voisenon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='voisin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='volckersahm-gg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='volckersahm-se' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='vol-l-1961' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='vol-p-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='vol-s-2018' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='vol-s-2020' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='voltaire' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='von-f-2000' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='vossius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wachtler' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='waga' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wagner-fd' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wagner-je' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wal-g-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='war-a-1908' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='war-a-1908b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='warburton' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='waser' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='watelet' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='watson' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='weber-ca' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='weber-fc' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='web-h-1904' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='web-h-1905' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='web-h-1917' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wegelin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wegner' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wei-a-1895' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wei-h-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wei-h-1992' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wei-h-1993' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wei-h-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wei-h-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wei-h-1996b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wei-n-1991' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wei-n-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='weise' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='weisse' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wei-x-1998' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wei-x-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='well' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='werner-jg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='werner-sh' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wernicke' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wet-m-1981' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wet-m-1983' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wet-m-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wet-m-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wet-m-2005' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wev-u-1957' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='weymann-d' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wie-g-1842' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wieland-cm' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wilde' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='willamovius' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='willis' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wil-r-1975' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wil-r-1977' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wil-r-1978' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wil-r-1978b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wil-r-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wil-r-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wil-r-1989b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wil-r-1990' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wil-r-1994' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wil-r-1996' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wil-t-1989' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='winckelmann' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='windheim' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wippel' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wir-j-1942' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='witten-a' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='witten' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='witten-cw' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='witten-fgw' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='witten-jj' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='witten-pc' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='witten-pe' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='witting' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wolf' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wolff-c' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wolf-jch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wol-g-1984' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wol-g-1984b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wol-g-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wol-g-1987b' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wol-j-2008' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wol-j-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='wolle' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wolson' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='woltersdorf' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='wuh-p-1995' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='xenophon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='yam-l-2012' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='yam-l-2013' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='young' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='yvetaux' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='yvon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='zachariae' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='zah-p-1856' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='zak-a-1987' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='zee-e-1950' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='zeise' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='ziegra' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='zies-w-1942' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='zies-w-1955' and @type='editionen'] -opus/kommentare/kommcat/kommentar[@id='zimmermann-cj' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='zimmermann-d' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='zimmermann-ja' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='zimmermann-jg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='zink' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='zoepfel' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar[@id='zsc-l-1952' and @type='forschung'] -opus/kommentare/kommcat/kommentar[@id='zwingli' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/lemma/titel -opus/kommentare/kommcat/kommentar/lemma/wwwlink[@address='http://rave.ohiolink.edu/etdc/view?acc_num=osu1487083152952348'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/intlink[@letter='168' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/intlink[@letter='169' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/intlink[@letter='74' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='argis' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='auvigny' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='batteux' and @subref='batteux-grundsatz' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='beausobre' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='bergmann' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='boulanger' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='boyer' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='briefe-literatur' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='bruyere' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='cassel' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='charpentier' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='chatelet' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='cooper' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='dangeuil' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='desfontaines' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='diderot' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='diderot' and @subref='diderot-theater' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='feh-j-2002' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='ficino' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='fin-l-1987' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='formey' and @subref='formey-lettres' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='fresnoy' and @subref='fresnoy-arte' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='gellert-cf' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='gottsched' and @subref='gottsched-schaubuehne' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='gra-h-2002b' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='gra-h-2016' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='haller' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='hamann' and @subref='berliner-notizb' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='hamann' and @subref='hamann-rapin' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='hamann' and @subref='hamann-shaftesbury' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='hamann' and @subref='kgsb-notizb' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='hamann' and @subref='kgsb-notizb' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='hamb-correspondenten' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='hartung-mc' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='hume' and @subref='hume-essays' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='kant' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='kastner' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='klopstock' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='knutzen' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='koh-j-1989' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='koh-j-1991' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='koh-j-2000b' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='konigsberger-gp-z' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='lauson' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='lebret' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='lessing' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='lessing' and @subref='lessing-pope' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='lieberkuehn' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='lindner-jg' and @subref='reizungen' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='lindner-m' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='marchand' and @subref='marchand-cotton' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='marsy' and @subref='marsy-pictura' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='maubert' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='maubert' and @subref='maubert-ecole' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='maupertuis' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='mauvillon' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='mei-c-2012' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='mendelssohn' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='mey-h-1999' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='michaelis-jd' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='montesquieu' and @subref='espritloix' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='neues-gem-mag' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='oest' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='olivet' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='quesnel' and @subref='quesnel-histoire' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='rapin' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='rapin' and @subref='rapin-eloquence' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='ros-m-1996' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='rost-jc' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='sahme-gj' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='schlegel-ja' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='shaftesbury' and @subref='shaftesbury-man' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='sulzer' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='trescho-sf' and @subref='trescho-religion' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='tucker' and @subref='tucker-essay' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='voltaire' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='voltaire' and @subref='voltaire-lettreacad' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='voltaire' and @subref='voltaire-lisbonne' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='voltaire' and @subref='voltaire-naturelle' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='watson' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='wieland-cm' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='windheim' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='young' and @subref='young-brueder' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/link[@ref='ziegra-hamburgische' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='beaumelle' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='beausobre' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='cassel' and @subref='cassel-lardner' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='chrysostomus' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='crusius-ca' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='dach' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='dangeuil' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='dryden' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='ernesti' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='erotianus' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='euripides' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='gellert-cf' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='gottsched' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='grynäus' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='haller' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='hippokrates' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='johnson' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='konigliche-d-g'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='konigsberger-f-g' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='luther' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='meurer' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='mylius' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='mylius' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='rabener' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='saurin' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='schlegel-ja' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='sophokles' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='theophrast' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='thourneyser' and @linktext='true'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/titel/link[@ref='ulloa' and @subref='ulloa-manufactures' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://catalogue.bnf.fr/ark:/12148/cb316038501'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://catalogue.bnf.fr/ark:/12148/cb31603858s'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://catalogue.bnf.fr/ark:/12148/cb316049914'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://catalogue.bnf.fr/ark:/12148/cb31978181j'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://catalogue.bnf.fr/ark:/12148/cb321939377'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://commons.ptsem.edu/id/dictionaryofengl01john'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://commons.ptsem.edu/id/inquiryintoorigi1726hutc'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://data.onb.ac.at/rec/AC09726028'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://data.onb.ac.at/rec/AC09731595'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://data.onb.ac.at/rec/AC09776465'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://data.onb.ac.at/rec/AC09808864'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://data.onb.ac.at/rec/AC10491844'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://data.onb.ac.at/rep/10425617'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://data.onb.ac.at/rep/1042638E'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://data.onb.ac.at/rep/10739A5E'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://data.onb.ac.at/rep/1083E553'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://data.onb.ac.at/rep/10B25358'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digital.bibliothek.uni-halle.de/hd/content/titleinfo/1610161'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digitale.bibliothek.uni-halle.de/vd18/content/pageview/3859341'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digitale.bibliothek.uni-halle.de/vd18/content/titleinfo/10428601'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digitale.bibliothek.uni-halle.de/vd18/content/titleinfo/12057568'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digitale.bibliothek.uni-halle.de/vd18/content/titleinfo/15214726'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digitale.bibliothek.uni-halle.de/vd18/content/titleinfo/5643375'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digitale.bibliothek.uni-halle.de/vd18/content/titleinfo/8435402'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digitale.bibliothek.uni-halle.de/vd18/content/titleinfo/9743485'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digitalisate.bsb-muenchen.de/bsb10116390'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digital.slub-dresden.de/id335051413'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digital.slub-dresden.de/id335572642'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digital.slub-dresden.de/id336814445'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digital.slub-dresden.de/id337430209'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digital.slub-dresden.de/id337914885'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digital.slub-dresden.de/id344487830'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digital.slub-dresden.de/id346248051'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digital.slub-dresden.de/id36302462X'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digital.slub-dresden.de/id36395077X'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digital.slub-dresden.de/id366450379'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digital.slub-dresden.de/id416814344/1'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digital.slub-dresden.de/id423910493'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digital.slub-dresden.de/id434773980'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digital.slub-dresden.de/id470244593'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digital.slub-dresden.de/ppn325853401'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digi.ub.uni-heidelberg.de/diglit/buffon1771bd1'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://digi.ub.uni-heidelberg.de/diglit/pluche1742bd3'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://diglib.hab.de/drucke/ac-6/start.htm'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://diglib.hab.de/drucke/m-237-8f-helmst/start.htm'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://diglib.hab.de/drucke/ob-394/start.htm'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://diglib.hab.de/drucke/oc-26-1b/start.html'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address=' http://diglib.hab.de/drucke/sf-387-1s/start.htm'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://diglib.hab.de/drucke/td-375-1s/start.htm'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://diglib.hab.de/drucke/wa-1280/start.htm'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://doi.org/10.3931/e-rara-15774'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://doi.org/10.3931/e-rara-55800'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://doi.org/10.3931/e-rara-71936'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://doi.org/10.3931/e-rara-7944'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://dspace.ut.ee/handle/10062/27545'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://ds.ub.uni-bielefeld.de/viewer/image/1921386_009/71/'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://hdl.handle.net/10062/69613'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://kk.haum-bs.de/?id=j-m-schuster-ab3-0001'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10015078-9'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10032888-9'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address=' http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10042065-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10042974-0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10043129-2'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10056892-8'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10065960-8'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10065991-4'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10091627-6'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10092118-5'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10092687-3'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10096082-5'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10097265-6'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10099599-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10108851-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10113734-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10113767-9'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10114277-3'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10116396-0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address=' http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10123370-1'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10130895-9'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10134108-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10181143-0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10222132-0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address=': http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10222144-6'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10232437-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10236942-8'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10253109-6'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10254558-8'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10258059-2'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10263489-8'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10291130-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10354294-3'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10360581-6'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10399848-6'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10410162-1'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10411468-3'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10411996-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10413395-3'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10417354-1'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10434246-6'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10471344-5'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10495475-1'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10522201-9'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10525879-8'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10572142-4'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10572877-2'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10573733-0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10574308-6'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10575524-0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10575603-9'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10583777-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10583982-3'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10584805-0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10585115-4'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10601362-0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10609496-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10610876-2'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10664321-9'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10744201-8'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10753769-2'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10762770-5'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10765466-1'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10768037-5'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10769333-2'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10770057-1'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10783599-8'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10786602-3'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10838063-0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10840301-8'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10863780-0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address=' http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10903915-2'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10927053-9'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10944758-8'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10956876-8'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10971071-3'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb11011660-6'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb11077120-9'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb11087794-8'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb11100971-4'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb11112245'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb11116194-3'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb11116736-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb11202369-3'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb11212226-1'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb11221054-6'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb11235791-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb11263471-0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb11274514-0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb11287503-9'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb11296921-5'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://menadoc.bibliothek.uni-halle.de/ssg/content/titleinfo/526049'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:0111-bbf-spo-18691164'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id3338859103'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id33494788X1'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id33506163X6'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id3350712870'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id33582756X5'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id3365405230'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id3374804357'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id3399020432'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id3506039018'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id3537111019'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id3579968361'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id3628452040'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id3640053514'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id3662198397'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id3776212349'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id4162218151'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id4163140158'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id4169131649'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id4260977857'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id4272955721'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-ppn3137895339'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:14-ppn3226686890'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:16-diglit-133148'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:16-diglit-325568'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:16-diglit-420606'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:16-diglit-54366'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:180-digad-4803'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:24-digibib-bsz3222706267'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bsz:25-digilib-125764'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bvb:12-bsb00078288-4'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bvb:12-bsb10012800-5'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bvb:12-bsb10017600-0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bvb:12-bsb10026399-0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bvb:12-bsb10031530-0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bvb:12-bsb10031780-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bvb:12-bsb10036302-0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bvb:12-bsb10043692-8'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bvb:12-bsb10057372-1'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bvb:12-bsb10087757-3'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bvb:12-bsb10093031-8'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bvb:12-bsb10272122-9'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bvb:12-bsb10354066-2'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bvb:12-bsb10390027-4'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bvb:12-bsb10398518-1'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bvb:12-bsb10412328-2'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bvb:12-bsb10431131-4'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:bvb:12-bsb10434922-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:23-drucke/cc-4f-23-1s0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:23-drucke/wa-1100-1s7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-1192015415-245940944-13'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-178400'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-226687'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-233430'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-251393'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-257438'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-273944'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-305368'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-342239'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-435038'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-436496'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-45662'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-494694'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-495352'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-509312'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-627240'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-672488'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-701039'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-719607'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-768549'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:3:1-805579'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:32-1-10002864863'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:gbv:8:2-1145311'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:hbz:061:1-514492'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:hbz:6:1-227938'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:hbz:6:1-235814'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:hbz:6:1-235846'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:hbz:6:1-235892'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:hbz:6:1-236013'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:hbz:6:1-240615'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:hbz:6:1-240652'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:hbz:6:1-240666'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:hebis:30:1-113420'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn:nbn:de:hebis:30-180170577006'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address=' http://nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:gbv:9-g-3337304'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address=' http://nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:gbv:9-g-4949225'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:gbv:9-ppn0061803661X-5'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:urmel-7e27daa2-56a5-4256-9a4b-f3875829a0e80'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://nbn-resolving.org/urn:nbn:de:gbv:3:1-312631'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://opacplus.bsb-muenchen.de/title/BV001766837'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://opacplus.bsb-muenchen.de/title/BV002838289'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://opacplus.bsb-muenchen.de/title/BV004793278'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://opacplus.bsb-muenchen.de/title/BV011539230'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://opacplus.bsb-muenchen.de/title/BV013624374'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB00000DF900000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB000038BF00000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address=' http://resolver.staatsbibliothek-berlin.de/SBB000051A300000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB000069BB00000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB00006CA300010000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB00008EBA00000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address=' http://resolver.staatsbibliothek-berlin.de/SBB0000956E00000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB0000957600000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address=' http://resolver.staatsbibliothek-berlin.de/SBB00009C9200000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB0000A71E00000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB0000A91300000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB0000AB4900000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB0000ADE100000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB0000AEC900000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB0000B1F200000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address=' http://resolver.staatsbibliothek-berlin.de/SBB0000B56E00000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB0000B68100000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB0000B76000000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB0000B88600000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB0000DC9D00000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB0000E5C000000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB0000EBBA00020000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address=' http://resolver.staatsbibliothek-berlin.de/SBB0000ED9C00020000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB0000F9D600000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB000105D400000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB000189A900000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB0001D1BE00000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB0001E22400000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address=' http://resolver.staatsbibliothek-berlin.de/SBB000228EC00000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB000237C500000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB000237C500030000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB000237C500040000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.staatsbibliothek-berlin.de/SBB00025EF200000000'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN1011138891'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN318045753'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN547447108'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN591919095'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN620066393'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN632787333'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN660188767'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN669834467'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN670074888'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN687539447'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN720593700'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN721230865'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN72622572X'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN726245852'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN731280946'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN797136738'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN816550018'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN818120509'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN818762918'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN87129723X'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN873741390'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-goettingen.de/purl?PPN882701894'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://resolver.sub.uni-hamburg.de/goobi/PPN892661429'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://rosdok.uni-rostock.de/resolve/id/rosdok_bundle_0000000258'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://api.digitale-sammlungen.de/iiif/presentation/v2/bsb10585398/manifest'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.be/books?id=1YlbAAAAQAAJ'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=1XQTAAAAQAAJ'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=4dZgAAAAcAAJ'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=4HpKAAAAcAAJ'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=4s45AAAAcAAJ'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=6s45AAAAcAAJ'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=7HEB392OvQUC'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=aFEAAAAAcAAJ'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=ALMFAAAAQAAJ'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=boBYAAAAcAAJ'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=CNMTtlUjB0YC'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=CRs6AAAAcAAJ'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=ff45AAAAcAAJ'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=fmsd81Dct_YC'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=GSVdwNs-mbcC'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=GycTIrhGzRoC'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=HTEIAAAAQAAJ'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=LGpnAAAAcAAJ'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=MedAAAAAcAAJ'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=MFoG8rJ1cUgC'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=qetLAAAAcAAJ'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=sIZkJWzYR3MC'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=UKs9AAAAcAAJ'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=UP05AAAAcAAJ'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=XZcwkQEw7zwC'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books?id=Y3NXjBcI6TMC'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://books.google.de/books/ucm?id=AVWQTEoqyA8C'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://collections.thulb.uni-jena.de/receive/HisBest_cbu_00034441?derivate=HisBest_derivate_00020065'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://collections.thulb.uni-jena.de/receive/HisBest_cbu_00037866'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://digipress.digitale-sammlungen.de/calendar/1750/newspaper/bsbmult00000719'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://digitale.bibliothek.uni-halle.de/vd17/content/titleinfo/8906540'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://digitale.bibliothek.uni-halle.de/vd18/content/titleinfo/6835573'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://digitale.bibliothek.uni-halle.de/vd18/content/titleinfo/9709070'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://digital.lb-oldenburg.de/urn/urn:nbn:de:gbv:45:1-18634'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://digital.slub-dresden.de/id32424844X'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://digital.slub-dresden.de/werkansicht/dlf/23267/1/'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://digital.slub-dresden.de/werkansicht/dlf/57417/1/'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://digital.staatsbibliothek-berlin.de/werkansicht/?PPN=PPN689803893'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://digi.ub.uni-heidelberg.de/diglit/alting1730/0007/image'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://digi.ub.uni-heidelberg.de/diglit/hamburgische_nachrichten'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://digi.ub.uni-heidelberg.de/diglit/hamburgische_nachrichten1761'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://digi.ub.uni-heidelberg.de/diglit/kames1763bd1'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://digi.ub.uni-heidelberg.de/diglit/watelet1760'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://digi.ub.uni-heidelberg.de/diglit/winckelmann1756'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://digi.ub.uni-heidelberg.de/diglit/winckelmann1764'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://digi.ub.uni-heidelberg.de/diglit/wolle1733'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://dlibra.bibliotekaelblaska.pl/dlibra/publication/32830/edition/31408/content'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://doi.org/10.3931/e-rara-5114'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://doi.org/10.3931/e-rara-51336'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://doi.org/10.3931/e-rara-56880 '] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://doi.org/10.3931/e-rara-76093'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k101786n.image'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k1040130r'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k1057560q.texteImage'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k111079h'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k15100650'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k1512542b'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k1521151w'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k3144086.image'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k315145s.texteImage'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k54747847'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k5495503z.texteImage'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k63538927'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k64947417.texteImage'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k6495924q.texteImage'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k64960757.texteImage'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k6514363g.texteImage'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k731937'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k942517'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/bpt6k9737845v'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/btv1b84156941#'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gallica.bnf.fr/ark:/12148/btv1b8622062t'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gdz.sub.uni-goettingen.de/id/PPN556514408'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://gdz.sub.uni-goettingen.de/id/PPN597517436'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://kpbc.umk.pl/dlibra/publication/3549/edition/5066'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://kxp.k10plus.de/DB=2.1/DB=2.1/PPN?PPN=1028178549'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://mdz-nbn-resolving.de/details:bsb10041385'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10090309-0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10094284-6'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10103463-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10116146-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10191606-5'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10351141-5'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb10913738-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb11117010-4'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://mdz-nbn-resolving.de/urn:nbn:de:bvb:12-bsb11225100-4'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://nbn-resolving.de/urn:nbn:de:bvb:12-bsb10039720-3'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://nbn-resolving.de/urn:nbn:de:gbv:3:1-151589'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://nbn-resolving.de/urn:nbn:de:gbv:3:1-159672'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://nbn-resolving.de/urn:nbn:de:gbv:3:1-233902'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://nbn-resolving.de/urn:nbn:de:gbv:3:1-341819'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://nbn-resolving.de/urn:nbn:de:gbv:3:1-635949'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://nbn-resolving.de/urn:nbn:de:gbv:3:1-646944'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://nbn-resolving.de/urn:nbn:de:gbv:3:1-666979'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://nbn-resolving.de/urn:nbn:de:gbv:3:1-805584'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://nbn-resolving.de/urn:nbn:de:gbv:3:1-805591'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://nbn-resolving.de/urn:nbn:de:gbv:3:1-805606'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://nbn-resolving.de/urn:nbn:de:hbz:6:1-235837'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://nbn-resolving.de/urn:nbn:de:hbz:6:1-240279'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://nbn-resolving.org/resolver?verb=full&identifier=urn%3Anbn%3Ade%3Absz%3A21-dt-109711'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://nbn-resolving.org/urn:nbn:de:bvb:29-bv011695716-8'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://opacplus.bsb-muenchen.de/title/BV001649337'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://opacplus.bsb-muenchen.de/title/BV002534704'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://sammlungen.ulb.uni-muenster.de/urn/urn:nbn:de:hbz:6:1-240679'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://tolosana.univ-toulouse.fr/fr/notice/142521701'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.digitale-sammlungen.de/de/view/bsb10044365'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.digitale-sammlungen.de/de/view/bsb10058651'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.digitale-sammlungen.de/de/view/bsb10064552'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.digitale-sammlungen.de/de/view/bsb10094287'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.digitale-sammlungen.de/de/view/bsb10099709'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.digitale-sammlungen.de/de/view/bsb10122913'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.digitale-sammlungen.de/de/view/bsb10224119'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.digitale-sammlungen.de/de/view/bsb10241115'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.digitale-sammlungen.de/de/view/bsb10583072'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.digitale-sammlungen.de/de/view/bsb10741890'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.digitale-sammlungen.de/de/view/bsb10922756'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.digitale-sammlungen.de/de/view/bsb11199075'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.digitale-sammlungen.de/de/view/bsb11211786'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.digitale-sammlungen.de/de/view/bsb11214675'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.digitale-sammlungen.de/de/view/bsb11245990'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.digitale-sammlungen.de/de/view/bsb11264443'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.digitale-sammlungen.de/de/view/bsb11409388'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.digitale-sammlungen.de/en/view/bsb10750228'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.e-rara.ch/zut/content/titleinfo/8500233'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.e-rara.ch/zuz/content/structure/5754564'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='https://www.e-rara.ch/zuz/content/titleinfo/5682523'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://tinyurl-1galegroup-1com-1yy1kecy4014d.zugang.nationallizenzen.de/tinyurl/7J3eY3'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.deutschestextarchiv.de/achenwall_staatswissenschaft_1749'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.deutschestextarchiv.de/book/show/kant_naturgeschichte_1755'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.deutschestextarchiv.de/book/show/lessing_fabeln_1759'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.deutschestextarchiv.de/book/view/karsch_gedichte_1764?p=5'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.deutschestextarchiv.de/friedrich_publicum01_1753'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.deutschestextarchiv.de/gottsched_versuch_1730'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.gbv.de/dms/belser/fllm/S64619-1.pdf'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10005436-3'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10033294-4'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10045039-2'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10057514-1'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10057528-8'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10066248-3'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10097200-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10099562-4'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10110137-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10116982-5'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10123027-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10123911-2'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10353585-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10397435-5'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10447390-1'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10456733-0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10598984-4'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10601687-3'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10603401-9'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10603402-4'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10691836-5'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10750442-9'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10750789-8'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10751083-0'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10753458-2'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10769193-9'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10772271-9'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb10786971-7'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.mdz-nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:de:bvb:12-bsb11092562-5'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.textkritik.de/young/index.htm'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='http://www.ub.uni-koeln.de/cdm/ref/collection/westerholt/id/103972'] -opus/kommentare/kommcat/kommentar/subsection/eintrag/wwwlink[@address='URN: http://nbn-resolving.de/urn:nbn:de:bsz:14-db-id3382992701'] -opus/kommentare/kommcat/kommentar/subsection[@id='abbt-einfluss' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='abbt-vaterland' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='abschilderungen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='achenwall-abriss' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='achenwall-staatsklugheit' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='addison-medals' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='addison-spectator' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='aepinus-briefe' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='aichinger-sprach' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='aischylos-tragoediae' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='alcoran' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='alembert-melanges' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='algarotti-russia' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='alting-compendium' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='alting-fundamentum' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='andre-versuch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='apo-jud14'] -opus/kommentare/kommcat/kommentar/subsection[@id='apo-makk2-1'] -opus/kommentare/kommcat/kommentar/subsection[@id='apo-sir11'] -opus/kommentare/kommcat/kommentar/subsection[@id='apo-sir18'] -opus/kommentare/kommcat/kommentar/subsection[@id='apo-sir22'] -opus/kommentare/kommcat/kommentar/subsection[@id='apo-sir31'] -opus/kommentare/kommcat/kommentar/subsection[@id='apo-sir33'] -opus/kommentare/kommcat/kommentar/subsection[@id='apo-sir35'] -opus/kommentare/kommcat/kommentar/subsection[@id='apo-sir50'] -opus/kommentare/kommcat/kommentar/subsection[@id='apo-std1'] -opus/kommentare/kommcat/kommentar/subsection[@id='apo-std2'] -opus/kommentare/kommcat/kommentar/subsection[@id='apo-tob5'] -opus/kommentare/kommcat/kommentar/subsection[@id='apo-tob6'] -opus/kommentare/kommcat/kommentar/subsection[@id='archimedes-circuli' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='arcq-militaire' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='arcq-osman' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='aristophanes-wolken' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='aristoteles-analytik' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='aristoteles-athener' and @type='neuzeit' and @sort='80'] -opus/kommentare/kommcat/kommentar/subsection[@id='aristoteles-caelo' and @type='neuzeit' and @sort='70'] -opus/kommentare/kommcat/kommentar/subsection[@id='aristoteles-metaphysik' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='aristoteles-opera' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='aristoteles-physik' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='aristoteles-poetik' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='aristoteles-rhetorik' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='arnaud-lettre' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='arnaud-oeuvres' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='arnaud-voltaire' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='arnoldt-gedanken' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='arvieux-memoires' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='asop-fabeln' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-chr2-18'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-chr2-9'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-es2'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-es3'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-es4'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-es5'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-es7'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-es8'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-es9'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hab3'] -opus/kommentare/kommcat/kommentar/subsection[@id='athenagoras-apologia' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='athenaios-casaubonus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hes1'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hes10'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hes13'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hes14'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hes3'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hes33'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hes4'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi1'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi13'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi17'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi19'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi2'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi21'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi22'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi27'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi28'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi3'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi31'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi32'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi34'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi36'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi37'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi38'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi40'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi41'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi42'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi6'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hi8'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hld1'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hld2'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hld3'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hld4'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hld7'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hld8'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-hos5'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jer12'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jer13'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jer18'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jer2'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jer20'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jer29'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jer38'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jer45'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jer48'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jer5'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jer7'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jer8'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes1'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes11'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes19'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes2'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes22'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes25'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes28'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes29'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes30'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes31'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes33'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes37'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes40'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes41'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes44'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes48'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes5'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes53'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes54'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes57'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes58'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes6'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes60'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes63'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes7'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jes8'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-jos9'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-klg3'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-koe1-17'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-koe1-18'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-koe1-20'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-koe1-22'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-koe1-3'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-koe1-6'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-koe1-7'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-koe2-10'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-koe2-19'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-koe2-2'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-koe2-20'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-koe2-4'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-koe2-5'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-koe2-9'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mal3'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mi6'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-1'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-10'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-11'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-13'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-16'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-17'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-18'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-19'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-2'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-21'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-22'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-25'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-26'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-27'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-28'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-29'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-3'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-30'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-31'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-33'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-35'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-37'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-38'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-39'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-4'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-41'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-45'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-50'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-6'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo1-7'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo2-1'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo2-10'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo2-14'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo2-15'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo2-2'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo2-20'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo2-23'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo2-27'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo2-3'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo2-32'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo2-33'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo2-34'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo2-4'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo2-7'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo2-8'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo2-9'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo3-12'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo3-19'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo3-9'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo4-12'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo4-16'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo4-21'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo4-22'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo4-23'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo5-1'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo5-10'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo5-11'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo5-12'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo5-18'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo5-21'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo5-22'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo5-28'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo5-31'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo5-33'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo5-8'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-mo5-9'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-neh4'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-pr1'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-pr10'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-pr12'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-pr2'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-pr3'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-pr7'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-pr8'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-pr9'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps1'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps102'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps103'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps104'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps106'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps110'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps111'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps115'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps116'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps118'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps119'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps12'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps120'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps121'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps124'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps126'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps127'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps129'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps13'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps139'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps140'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps141'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps143'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps144'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps147'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps148'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps17'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps18'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps19'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps2'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps22'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps23'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps24'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps25'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps28'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps30'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps33'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps34'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps36'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps37'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps39'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps4'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps42'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps44'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps45'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps5'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps50'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps51'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps55'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps56'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps65'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps68'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps69'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps7'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps71'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps72'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps73'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps77'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps78'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps8'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps80'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps82'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps84'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps86'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps88'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps89'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps90'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps91'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps92'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps94'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ps99'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ri12'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ri13'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ri14'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ri16'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ri5'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-ri9'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sa13'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sa2'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam1-1'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam1-10'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam1-17'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam1-18'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam1-19'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam1-20'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam1-22'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam1-25'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam1-26'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam1-3'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam1-30'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam1-7'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam2-1'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam2-11'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam2-12'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam2-14'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam2-16'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam2-19'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam2-21'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam2-23'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-sam2-6'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-spr10'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-spr11'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-spr12'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-spr13'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-spr15'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-spr16'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-spr17'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-spr20'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-spr21'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-spr23'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-spr24'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-spr25'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-spr27'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-spr3'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-spr30'] -opus/kommentare/kommcat/kommentar/subsection[@id='at-spr6'] -opus/kommentare/kommcat/kommentar/subsection[@id='august-civit' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='august-conf' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='august-opera' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='auslegung' and @type='neuzeit' and @sort='130'] -opus/kommentare/kommcat/kommentar/subsection[@id='auvigny-nero' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='bacon-fidelibus' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='bacon-sapientia' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='ballstadt-anecdota' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='balzac-socrate' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='bar-antihegesias' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='bar-babioles' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='bar-epiptres' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='basedow-methoden' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='batteux-grundsatz' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='baumgarten-aesthetica' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='baumgarten-joel' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='baumgarten-pauli' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='baumgarten-pflicht' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='baumgarten-welthistorie' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='bayle-tolerance' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='beaumelle-maintenon' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='beaumelle-pensees' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='beaumelle-voltaire' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='beaumont-commerce' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='beaumont-finances' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='beaumont-jm-enfants' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='beausobre-epicure' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='behm-gesangbuch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='bellegarde-erziehung' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='bell-preisschrift' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='benda' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='bengel-gnomon' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='bengel-graecum' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='bengel-johannis' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='bengel-nt' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='bengel-ordo' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='benoit-journal' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='benoit-principes' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='benson-abhandlungen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='berkeley-dialogues' and @type='neuzeit' and @sort='5'] -opus/kommentare/kommcat/kommentar/subsection[@id='berkeley-miscellany' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='berliner-notizb' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='bernard-aimer' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='bernd-leben' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='bernd-stand' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='bernis-lettre' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='bernis-oeuvres' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='bernis-poes' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='bibl-betrachtungen' and @type='neuzeit' and @sort='140'] -opus/kommentare/kommcat/kommentar/subsection[@id='bibliothecae' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='biblische-policey' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='bierling-pyrrhon' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='bischoff-cadmus' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='bitaube-examen' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='blervache-commerce' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='blervache-reformateur' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='bleterie-julien' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='bockjg-gedichte' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='bockjg-idioticon' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='bode-sacerdotalis' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='bodin-republica' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='bodin-theatrum' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='bodmer-brueder' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='bodmer-caesar' and @type='neuzeit' and @sort='80'] -opus/kommentare/kommcat/kommentar/subsection[@id='bodmer-europa' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='bodmer-fragmente' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='bodmer-helena' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='bodmer-minne' and @type='neuzeit' and @sort='70'] -opus/kommentare/kommcat/kommentar/subsection[@id='bodmer-noah' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='bodmer-pygmalion' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='bodmer-ulysses' and @type='neuzeit' and @sort='90'] -opus/kommentare/kommcat/kommentar/subsection[@id='bogatzky-schatz' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='bohmer-zeitrechnung' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='bolinbroke-history' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='bolingbroke-england' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='bolingbroke-nation' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='bolingbroke-parties' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='bolingbroke-patriotism' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='bolingbroke-society' and @type='neuzeit' and @sort='80'] -opus/kommentare/kommcat/kommentar/subsection[@id='Bolingbroke-tracts' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='bolingbroke-works' and @type='neuzeit' and @sort='70'] -opus/kommentare/kommcat/kommentar/subsection[@id='borde-prediction' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='bos-graec' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='boulanger-antiquite' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='Boulanger-corvee' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='boulanger-corvee' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='boulanger-devoile' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='boulanger-oriental' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='boyer-beiträge' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='boyer-ocellus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='boysen-beytrage' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='breitenbauch-schilderungen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='briqueville-reflexions' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='broe-histiore' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='browne-epidemica' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='brown-morals' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='brucker-historia' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='brumoy-theatre' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='bunellus-galli' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='burckardt-poesien' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='burk-gnomon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='burklin-ursache' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='burscher-hosea' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='burscher-jeremia' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='bury-histoire' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='buxtorf-lexicon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='cardanus-utilitate' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='carpzov-critica' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='casaubonus-athenai' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='cassel-jortins' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='cassel-lardner' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='cataneo-espritloix' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='cato-ed' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='catull-carmina' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='celebres' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='chapat-rapsodies' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='charpentier-sokrates' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='chatelet-physique' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='chetardie-instruction' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='chladenius-auslegung' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='chladenius-betrachtungen' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='chladenius-geschichte' and @type='neuzeit' and @sort='70'] -opus/kommentare/kommcat/kommentar/subsection[@id='chladenius-logica' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='chladenius-opuscula' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='chladenius-philosophia' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='chladenius-untersuchungen' and @type='neuzeit' and @sort='80'] -opus/kommentare/kommcat/kommentar/subsection[@id='chladenius-wahrscheinlich' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='choffin-grammaire' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='christlieb-beurtheilung' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='chrysostomos-ilio' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='chrysostomus-predigten' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='cic-ac' and @type='neuzeit' and @sort='130'] -opus/kommentare/kommcat/kommentar/subsection[@id='cic-att' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='cic-bonorum' and @type='neuzeit' and @sort='80'] -opus/kommentare/kommcat/kommentar/subsection[@id='cic-brut' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='cic-div' and @type='neuzeit' and @sort='70'] -opus/kommentare/kommcat/kommentar/subsection[@id='cicero-opera' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='cic-nat' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='cic-off' and @type='neuzeit' and @sort='90'] -opus/kommentare/kommcat/kommentar/subsection[@id='cic-ora' and @type='neuzeit' and @sort='100'] -opus/kommentare/kommcat/kommentar/subsection[@id='cic-pis' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='cic-rep' and @type='neuzeit' and @sort='120'] -opus/kommentare/kommcat/kommentar/subsection[@id='cic-top' and @type='neuzeit' and @sort='110'] -opus/kommentare/kommcat/kommentar/subsection[@id='cic-tusc' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='clairaut-geo' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='clausnitzer-predigten' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='cless-observationes' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='cleveland-anglois' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='clodius-grammatica' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='cohausen-clericus' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='cohausen-helmont' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='cohausen-hermippus' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='cohausen-nasi' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='cohausen-neothea' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='colli-causis' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='collier-clavis' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='commerell-wochenpredigten' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='cooper-aristippus' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='cooper-sokrates' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='cooper-taste' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='coyer-annee' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='coyer-defense' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='coyer-dissertations' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='coyer-frivole' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='coyer-morale' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='coyer-noblesse' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='cramer-bered' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='cramer-chrys' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='cramer-nord' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='cramer-predigten' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='crebillon-nuit' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='crebillon-sopha' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='creutz-seneca' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='cronegk-einsamkeiten' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='crusius-ca-weg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='crusius-frischlin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='dacier-commentaires' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='dacier-vie' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='damm-damon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='damm-rachis' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='dangeuil-discours' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='dangeuil-remarques' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='daphne' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='decore-elemens' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='delaborde-clavessin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='denham-abhandlung' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='denkmal' and @type='neuzeit' and @sort='110'] -opus/kommentare/kommcat/kommentar/subsection[@id='desessartz-traite' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='desfontaines-nero' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='desfontaines-parnasse' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='desforges-vers' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='deslandes-histoire' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='deslandes-marine' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='devillers-physiques' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='dialogues-socra' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='dickinson-delphi' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='diderot-art' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='diderot-pensees' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='diderot-pere' and @type='neuzeit' and @sort='25'] -opus/kommentare/kommcat/kommentar/subsection[@id='diderot-theater' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='diegutesache' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='dieu-grammatica' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='diogenes-opera' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='diplomatik' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='dodsley-collection' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='dodsley-preceptor' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='dommerich-fragmentum' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='dommerich-versibvs' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='dryden-juvenal' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='dryden-oedipus' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='dubos-reflexions' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='dubuisson' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='dudgeon-reflexions' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='dufour-lettre' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='dujardin-rienzy' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='dumont-histoire' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='dumont-marine' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='dupuy-sophocle' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='durosoy-dix' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='dusch-moralische' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='dusch-schosshund' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='dusch-wissenschaften' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='dyer-fleece' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='echecs' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='elmanicus-historia' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='elsner-gedanken' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='elsner-nt' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='engelbrecht-protestant' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='ennius-sat' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='epicure-beausobre' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='erasmus-adagia' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='erasmus-colloquia' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='erasmus-copia' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='erl-preussen' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='ernesti-rhetorica' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='erotianus-hippokratis' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='erpen-grammatik' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='eschenbach-epigenes' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='eschenbach-jch-sammlung' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='eskuche-versuch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='espritloix' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='espritnation' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='essich-historie' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='euripides-steinbruchel' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='evremond-ouevres' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='ewigkeit' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='faber-thesaurus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='fabricius-codex' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='fagnan-miroir' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='fargeau-plaidoyer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='fastenpredigten' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='faulques-abassai' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='faulques-amitie' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='faulques-contes' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='faulques-guerre' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='faulques-prejuges' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='fehre-anleitung' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='fielding-andrews' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='fielding-plutus' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='fielding-robbers' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='fischer-platonis' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='fontaine-fables' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='fontenelle-lettres' and @type='neuzeit' and @sort='15'] -opus/kommentare/kommcat/kommentar/subsection[@id='fontenelle-mondes' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='fontenelle-morts' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='fontenelle-oracles' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='fontenelle-ouvres' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='formey-anti' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='formey-journal' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='formey-lettres' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='forstmann-predigten' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='forstmann-reden' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='forstmann-sammlung' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='fr-antimachiavell' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='fresnoy-arte' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='fresnoy-ecole' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='freundschaft' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='freundschaftlicher-gesang' and @type='neuzeit' and @sort='90'] -opus/kommentare/kommcat/kommentar/subsection[@id='fritz-tragodiae' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='fr-kriegskunst' and @type='neuzeit' and @sort='70'] -opus/kommentare/kommcat/kommentar/subsection[@id='fr-lettres' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='fr-memoires' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='fr-mort' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='fr-oeuvres' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='froschkrieg' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='fr-poesies' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='fuchs-gedichte' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='funck-rechtsgelahrsamkeit' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='gale-rhetores' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='garcons' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='garnier-lettres' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='gaudio-scelta' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='gedanken-lebenslauf' and @type='neuzeit' and @sort='120'] -opus/kommentare/kommcat/kommentar/subsection[@id='gedanken-lieder' and @type='neuzeit' and @sort='150'] -opus/kommentare/kommcat/kommentar/subsection[@id='geddes-essay' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='gellert-comoedia' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='gellert-fabeln' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='gellert-graefin' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='gellert-rabener' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='gellius-jg-anmerkungen' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='gellius-jg-geschichte' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='gemmingen-briefe' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='gemmingen-lieder' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='georg-hexameron' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='gerdes-introductio' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='gerhardt-ruhen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='gesner-jm-eclogae' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='gesner-s-schriften' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='giannoni-geschichte' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='giese-predigten' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='girard-synonimes' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='giseke-predigten' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='glass-philologiae' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='gleim-fabeln' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='gleim-romanzen' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='gleim-sieges' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='gleim-versuch' and @type='neuzeit' and @sort='5'] -opus/kommentare/kommcat/kommentar/subsection[@id='goclenius-gramm' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='goettlicheordnung' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='goguet-origine' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='goldsmith-letters' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='golius-lexicon' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='goth-spanien' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='gottsched-dichtkunst' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='gottsched-schaubuehne' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='gottsched-sprachkunst' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='gotz-anakreon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='goudar-france' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='goudar-lisbonne' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='goze-betrachtung' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='graville-ami' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='graville-homme' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='Gresset-Oeuvres' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='grimm-fm-petit' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='griselini-memorie' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='grundler-predigten' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='guadagnoli-breves' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='guichard-memoires' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='guyon-histoire' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='haged-oden' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='hagedorn-ch-betrachtungen' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='hagedorn-moralische' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='hahn-echb-lettres' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='hahn-gehorsam' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='hahn-soliditas' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-aesthaetica' and @type='neuzeit' and @sort='290'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-anmerkungen' and @type='neuzeit' and @sort='200'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-brocken' and @type='neuzeit' and @sort='160'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-descartes' and @type='neuzeit' and @sort='70'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-einfalle' and @type='neuzeit' and @sort='230'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-essais' and @type='neuzeit' and @sort='320'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-exercitium' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-gedichte' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-glose' and @type='neuzeit' and @sort='310'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-hamburgische' and @type='neuzeit' and @sort='350'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-hirten' and @type='neuzeit' and @sort='350'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-klaggedicht' and @type='neuzeit' and @sort='220'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-kleeblatt' and @type='neuzeit' and @sort='270'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-kreuzzuege' and @type='neuzeit' and @sort='300'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-kunstrichter' and @type='neuzeit' and @sort='330'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-leser' and @type='neuzeit' and @sort='340'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-lettres' and @type='neuzeit' and @sort='250'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-magi' and @type='neuzeit' and @sort='210'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-naschereyen' and @type='neuzeit' and @sort='280'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-project' and @type='neuzeit' and @sort='260'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-rapin' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-shaftesbury' and @type='neuzeit' and @sort='80'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-versuch' and @type='neuzeit' and @sort='190'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamann-wolken' and @type='neuzeit' and @sort='240'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamberger-nachrichten' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamilton-grammont' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='hamlet' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='hanway-reisen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='happel-welt' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='hardt-reformationis' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='haug-stunden' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='hawkesworth-adventurer' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='hawkesworth-almoran' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='h-dangeuil' and @type='neuzeit' and @sort='100'] -opus/kommentare/kommcat/kommentar/subsection[@id='hederich-g' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='hederich-gd' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='helck-fabeln' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='helvetius-esprit' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='henault-abrege' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='herauld-examen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='herder-cyrus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='hervey-erbaulich' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='hervey-letters' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='hervey-mitissa' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='hervey-remarks' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='hervey-sermons' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='hesiod-opera' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='hesshus-explicatio' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='heumann-acta' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='heumann-j-geist' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='heumann-testament' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='hiller-levitische' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='hiller-system' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='hiller-verantwortung' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='hill-lucina' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='hinkelmann-koran' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='hinz-galimafreen' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='hinz-makulatur' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='hippel-galimafreen' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='hippel-gruft' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='hippel-makulatur' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='hippel-rhapsodie' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='hippokrates-epistel' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='hippokrates-opera' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='hirzel-bauer' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='histoirenaturelle' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='hobbes-opera' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='hobbes-vita' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='Hogarth-Hudibras' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='hogarth-zergliederung' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='holberg-epistel' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='holberg-historiae' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='holberg-Romains' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='homer-blackwell' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='homer-hym' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='homer-ilias' and @type='neuzeit' and @sort='15'] -opus/kommentare/kommcat/kommentar/subsection[@id='homer-odyss' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='horatz' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='horaz-epistel' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='horaz-oden' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='horaz-oden-solms' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='horaz-opera' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='horaz-poetica' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='horaz-saturae' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='hulshoff-widerlegung' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='hume-essays' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='hume-geschichte' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='hurd-letters' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='hutcheson-beauty' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='Hutcheson-moralis' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='iselin-traeume' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='isokrates-panegyrik' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='jacobi-cf-offenbarung' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='jacobi-reden' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='jacquet-parallele' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='jaucourt-leibnitz' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='jephson-abhandlung' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='jerusalem-jfw-briefe' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='joachim-unterricht' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='joecher-lexicon' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='johnson-dictionary' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='joncourt-nouvelle' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='joncourt-sciences' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='jortin-history' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='josephus-bell' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='justi-schauplatz' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='juvenal-satiren' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='kalle-fundamenta' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='kalmar-bate' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='kalmar-dissertatio' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='kalmar-genuina' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='kalmar-reply' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='kames-critik' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='kant-beobachtungen' and @type='neuzeit' and @sort='70'] -opus/kommentare/kommcat/kommentar/subsection[@id='kant-beweisgrund' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='kant-deutlichkeit' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='kant-dilucidatio' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='kantemir-geschichte' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='kantemir-satyren' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='kant-geisterseher' and @type='neuzeit' and @sort='80'] -opus/kommentare/kommcat/kommentar/subsection[@id='kant-kopfes' and @type='neuzeit' and @sort='75'] -opus/kommentare/kommcat/kommentar/subsection[@id='kant-metaphysicae' and @type='neuzeit' and @sort='25'] -opus/kommentare/kommcat/kommentar/subsection[@id='kant-naturgeschichte' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='kant-optimismus' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='kant-spitzfindigkeit' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='karl-lutherus' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='karsch-gedichte' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='karsch-sammlung' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='kastner-anfangsgrunde' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='keralio-fables' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='keyssler-reisen' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='kgsb-notizb' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='king-mali' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='kirchweger-aurea' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='kleinigkeiten' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='klein-stockholm' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='kleist-paches' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='klingstaedt-samojedes' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='klopstock-allgegen' and @type='neuzeit' and @sort='90'] -opus/kommentare/kommcat/kommentar/subsection[@id='klopstock-art' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='klopstock-bescheiden' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='klopstock-fehler' and @type='neuzeit' and @sort='70'] -opus/kommentare/kommcat/kommentar/subsection[@id='klopstock-julian' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='klopstock-lieder' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='klopstock-margareta' and @type='neuzeit' and @sort='110'] -opus/kommentare/kommcat/kommentar/subsection[@id='klopstock-messias' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='klopstock-publico' and @type='neuzeit' and @sort='100'] -opus/kommentare/kommcat/kommentar/subsection[@id='klopstock-range' and @type='neuzeit' and @sort='80'] -opus/kommentare/kommcat/kommentar/subsection[@id='klopstock-sprache' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='knittel-neue' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='knutzen-beweis' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='knutzen-brenn' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='knutzen-cometen' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='koch-daniel' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='koch-fr-starke' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='koch-glaube' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='koch-pharos' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='kortholt-leibnitii' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='krebs-observationes' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='kruger-traeume' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='kypke-ebrgrammatic' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='kypke-graecum' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='kypke-locke' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='kypke-observationes' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='lachartreuse' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='lacombe-histoire' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='lactanz-div' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='lactanz-mort' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='lactanz-opera' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='lambert-histoire' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='lambert-jh-cosmologische' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='lamettrie-machine' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='lamettrie-ouvrage' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='lardner-demoniacs' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='lauson-dach' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='lauson-erster' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='lauson-gafforio' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='lauson-paan' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='laute' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='lavini-neueste' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='law-council' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='law-money' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='leibniz-theodizee' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='lennox-henriette' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='lennox-reifrock' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='lessing-fabeln' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='lessing-philotas' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='lessing-pope' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='lessing_schriften_i' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='lessing-theatral' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='leusden-nt' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='lexicon-graeco-latinum' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='lichtwer-fabeln' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='lieberkuehn-arzeneyen' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='lieberkuehn-lissabonner' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='lightfoot-horae' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='lightfoot-opera' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='Lilienthal-beichte' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='lilienthal-gesang' and @type='neuzeit' and @sort='70'] -opus/kommentare/kommcat/kommentar/subsection[@id='Lilienthal-geschichte' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='Lilienthal-sterb' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='Lilienthal-thum' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='Lilienthal-zeit' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='limbourg-caracteres' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='lindhammer-apostelgeschichte' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='lindner-albert' and @type='neuzeit' and @sort='80'] -opus/kommentare/kommcat/kommentar/subsection[@id='lindner-beytrag' and @type='neuzeit' and @sort='90'] -opus/kommentare/kommcat/kommentar/subsection[@id='lindner-briefwechsel' and @type='neuzeit' and @sort='130'] -opus/kommentare/kommcat/kommentar/subsection[@id='lindner-freundschaft' and @type='neuzeit' and @sort='70'] -opus/kommentare/kommcat/kommentar/subsection[@id='lindner-gedaechtnisfeier' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='lindner-katechismus' and @type='neuzeit' and @sort='73'] -opus/kommentare/kommcat/kommentar/subsection[@id='lindner-peter' and @type='neuzeit' and @sort='120'] -opus/kommentare/kommcat/kommentar/subsection[@id='lindner-schulhandlungen' and @type='neuzeit' and @sort='75'] -opus/kommentare/kommcat/kommentar/subsection[@id='lindner-schulweisheit' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='lindner-schulz' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='lindner-sohn' and @type='neuzeit' and @sort='110'] -opus/kommentare/kommcat/kommentar/subsection[@id='lindner-sprache' and @type='neuzeit' and @sort='100'] -opus/kommentare/kommcat/kommentar/subsection[@id='lineamenta' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='livius-opera' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='livius-urbe' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='loen-sammlung' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='logau-cynegetia' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='logau-sinngedichte' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='lossius-midian' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='lowth-poesi' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='lucanus-bello' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='lucas-weg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='ludke-briefe' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='lukian-mortuorum' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='lukian-opera' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='lukrez-natur' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='luther-auszug' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='luther-dolmetsch' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='luther-grcate' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='luther-kleine' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='luther-schriften' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='luzac-essai' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='lycophron-poema' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='lynar-sonderling' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='lyttelton-dialogues' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='machiavelli-principe' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='mackenzie-geschichte' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='macpherson-fingal' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='mahomeds' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='mailly-rome' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='mainvilliers-petreade' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='mallet-art' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='mallet-orateurs' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='mandeville-fabel' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='mandeville-virgin' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='mandrin-testament' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='manilius-astro' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='manzini-weisen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='marcaurel-ipso' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='marchand-cotton' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='marchand-peruquen' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='marchand-ubiquiste' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='marck-sibyllinis' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='marin-saladin' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='marivaux-bauer' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='marivaux-marianne' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='marmontel-dichtkunst' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='marmontel-moralische' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='marnesia-lettres' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='marpurg-musik' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='marshall-gospel' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='marsy-pictura' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='masch-betrachtungen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='masch-grundsprache' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='massuet-science' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='maubert-ecole' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='maubert-politique' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='mauvillon-langue' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='maximos-dissertationes' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='may-weisheit' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='mazzoni-hominum' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='meier-anfangsgruende' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='meinhard-versuche' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='Melanchthon-ethik' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='Melanchthon-moralis' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='mendelssohn-empfindungen' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='mendelssohn-fulberti' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='mendelssohn-philogespr' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='mendelssohn-pope' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='mengs-gedanken' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='merope' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='merveilleux-reisenden' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='meynieres-melanges' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='meynieres-observations' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='meynieres-reflexions' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='michaelis-commentationes' and @type='neuzeit' and @sort='4'] -opus/kommentare/kommcat/kommentar/subsection[@id='michaelis-einleitung' and @type='neuzeit' and @sort='5'] -opus/kommentare/kommcat/kommentar/subsection[@id='michaelis-jd-fragen' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='michaelis-jd-hebraer' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='michaelis-jd-meinungen' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='michaelis-jd-mittel' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='michaelis-salomon' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='milton-education' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='milton-lost' and @type='neuzeit' and @sort='5'] -opus/kommentare/kommcat/kommentar/subsection[@id='milton-regained' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='moeris-lexikon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='moldenhawer-alterthuemer' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='moldenhawer-erklarung' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='montaigne-essays' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='montesquieu-romains' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='montfaucon-antiquitates' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='montfaucon-nph-suite' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='montpensier-memoires' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='moreri-dictionnaire' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='morinus-dissertationes' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='mornay-mystere' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='moscowitische' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='moser-augen' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='moser-beherzigungen' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='moser-daniel' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='moser-gesammelte' and @type='neuzeit' and @sort='70'] -opus/kommentare/kommcat/kommentar/subsection[@id='moser-herr' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='moser-hof' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='moserj-arminius' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='moserj-harlekin' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='moserj-lettre' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='moser-schreiben' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='mosheim-erklärung' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='mosheim-histeccl' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='mosheim-historiae' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='mosheim-pastoral' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='mourges-plan' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='mueller-latein' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='musschenbroek-physic' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='mylius-schriften' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='niceron-memoires' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='nicolay-elegien' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='noverre-lettres' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-2jo-11'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-2jo-9'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-apg1'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-apg13'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-apg15'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-apg17'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-apg2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-apg20'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-apg23'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-apg26'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-apg3'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-apg5'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-apg6'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-apg7'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-apg8'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-apg9'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-eph1'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-eph2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-eph3'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-eph4'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-eph5'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-eph6'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-gal1'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-gal2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-gal3'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-gal4'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-gal5'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-heb1'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-heb10'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-heb11'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-heb12'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-heb13'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-heb3'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-heb4'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-heb9'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jak1'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jak2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jak3'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jak4'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jak5'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo1'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo10'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo11'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo12'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo13'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo14'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo15'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo16'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo17'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo18'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo19'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo20'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo21'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo3'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo4'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo5'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo6'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo7'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo8'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jo9'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-joh1-2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-joh1-3'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-joh1-4'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-joh1-5'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-jud9'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kol2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kol3'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor1-1'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor1-10'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor1-11'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor1-12'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor1-13'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor1-14'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor1-15'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor1-16'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor1-2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor1-3'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor1-4'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor1-5'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor1-6'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor1-7'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor1-8'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor1-9'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor2-1'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor2-11'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor2-12'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor2-13'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor2-2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor2-3'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor2-4'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor2-5'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor2-6'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor2-7'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor2-8'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-kor2-9'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk1'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk10'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk11'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk12'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk13'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk14'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk15'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk16'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk17'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk18'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk19'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk20'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk22'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk23'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk24'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk3'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk4'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk5'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk6'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk7'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk8'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-lk9'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mk1'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mk10'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mk11'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mk12'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mk13'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mk14'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mk2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mk3'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mk4'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mk5'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mk6'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mk7'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mk8'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mk9'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt1'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt10'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt11'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt12'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt13'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt14'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt15'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt16'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt18'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt19'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt21'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt22'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt23'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt24'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt25'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt26'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt27'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt28'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt3'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt4'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt5'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt6'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt7'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt8'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-mt9'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-off1'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-off10'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-off14'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-off2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-off21'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-off22'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-off3'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-off4'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-off7'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-pet1-1'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-pet1-2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-pet1-4'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-pet1-5'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-pet2-1'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-pet2-2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-pet2-3'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-phil1'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-phil2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-phil3'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-phil4'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-roe1'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-roe10'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-roe11'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-roe12'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-roe13'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-roe15'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-roe2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-roe3'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-roe4'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-roe5'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-roe6'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-roe7'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-roe8'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-roe9'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-th1-2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-th1-5'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-th2-2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-th2-3'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-tim1-1'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-tim1-4'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-tim1-5'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-tim1-6'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-tim2-1'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-tim2-2'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-tim2-4'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-tit1'] -opus/kommentare/kommcat/kommentar/subsection[@id='nt-tit3'] -opus/kommentare/kommcat/kommentar/subsection[@id='oest-bremische' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='oest-schlüsse' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='oest-siechbett' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='oest-traum' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='olivet-ciceronis' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='opitz-poeterey' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='orrery-briefe' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='ortmann-briefe' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='ovid-epist' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='ovid-fasti' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='ovid-met' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='ovid-opera' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='ovid-tristia' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='palissot-lettres' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='panciroli-rerum' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='parnasse' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='pausanias-opera' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='perrin-julie' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='persannes' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='persius-satiren' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='petron-satiren' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='petty-essays' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='pfeffel-philemon' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='pfeffel-versuche' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='philippi-briefe' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='philon-opera' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='pindar-opera' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='pisanski-nachricht' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='pitaval-art' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='pius-amantibus' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='plat-alkibiades' and @type='neuzeit' and @sort='100'] -opus/kommentare/kommcat/kommentar/subsection[@id='plat-apg' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='plat-ion' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='plat-krat' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='plat-leg' and @type='neuzeit' and @sort='80'] -opus/kommentare/kommcat/kommentar/subsection[@id='plat-opera' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='plat-phaid' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='plat-phaidr' and @type='neuzeit' and @sort='22'] -opus/kommentare/kommcat/kommentar/subsection[@id='plat-proklos' and @type='neuzeit' and @sort='90'] -opus/kommentare/kommcat/kommentar/subsection[@id='plat-rep' and @type='neuzeit' and @sort='70'] -opus/kommentare/kommcat/kommentar/subsection[@id='plat-symp' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='plinius-c-epist' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='plinius-natur' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='plotin-opera' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='pluche-ciel' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='pluche-langues' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='pluche-nature' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='plut-educ' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='plut-mor' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='plut-opera' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='plut-vit' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='polignac-anti' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='pontoppidan-menoza' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='pope-criticism' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='pope-dunciad' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='pope-homer' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='pope-man' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='pope-works' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='popowitsch-deutsch' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='popowitsch-meer' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='posselius-syntaxis' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='poullain-essais' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='prades-apologie' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='premontval-diogene' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='prideaux-testament' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='profe-erdbeben' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='proklos-platon' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='proklos-sphaera' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='psellos-arithmetik' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='querlon-impostures' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='querlon-psaphion' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='quesnel-histoire' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='rabener-gellert' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='ragout' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='rambach-luther' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='ramler-hymen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='rapin-antiquite' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='rapin-eloquence' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='rapin-hortorum' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='rapin-oeuvre' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='raynal-anecdoten' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='real-entr-histo' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='reichel-jesaias' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='reimann-versuch' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='reime-arabicae' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='reinhard-fatal' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='reinhard-sachen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='reizungen' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='restaut-principes' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='reuchlin-cabalistica' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='riccoboni-catesby' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='riccoboni-histoire' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='riccoboni-lettres' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='richardson-clarissa' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='rieger-passion' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='ringeltaube-briefe' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='robinet-nature' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='rochon-oisive' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='rogall-gesang' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='rollin-histoire' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='rollin-manier' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='ronsard-sonnets' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='rost-merope' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='rost-schaefer' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='rost-vorspiel' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='rousseau-alembert' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='rousseau-contrat' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='rousseau-emile' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='rousseau-julie' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='rousseau-voltaire' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='saint-mard-oeuvres' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='sale-koran' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='sallust-fragment' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='sanctius-minerva' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='saurin-betrachtungen' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='saurin-katechismus' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='savary-dictionnaire' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='savary-oeuvres' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='schaarschmidt-lehre' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schabaelje-seele' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schade-religion' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='scheffer-vehiculari' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='scheffner-campangen' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='scheffner-jugendliche' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schieferdecker-nucleus' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schlegel-canut' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='schlegel-muessig' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schoettgen-horae' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='scholz-triebe' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schonaich-hermann' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schoppach-jure' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schrader-meister' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='schrader-ritter' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schrader-scherze' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='schreibart' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='schreiber-imperio' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schreiber-jesaja' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='schrevel-lexikon' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schroder-meisterstuecke' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schroder-poesien' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schubert-unterricht' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schuetze-teutsch' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schultens-dissertationes' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='schultens-institutiones' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='schultens-liber' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schultens-origines' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='schultz-gesang' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schumacher-jh-alterthuemer' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schumacher-jh-ursprung' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='schurmann-opuscula' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schutz-lob' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schwabe-belustigungen' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schwabe-briefe' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='schwarzer-arithmetica' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='schwarz-miscellanea' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='scultetus-annalium' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='seckendorff-commentarius' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='seckendorff-compendium' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='selis-inoculation' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='seneca-epist' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='seneca-opera' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='sevigne-lettres' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='sextus-opera' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='shaftesbury-man' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='shakespeare-illus' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='shakespeare-plays' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='shakespeare-works' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='shuckford-adam' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='sike-evangelium' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='simonis-arcanum' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='simonis-lexicon' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='skelton-deisterey' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='smollet-pickle' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='sokrates-alkibiades' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='sokrates-charpentier' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='sokrates-cooper' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='sokratischedenk' and @type='neuzeit' and @sort='180'] -opus/kommentare/kommcat/kommentar/subsection[@id='somervile-chase' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='somervile-hobbinol' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='sophokles-aias' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='sophokles-antigone' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='sophokles-electra' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='sophokles-oedipus' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='sophokles-philoctet' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='sophokles-steinbruchel' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='sorbuisa' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='spanheim-callimachi' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='spence-blacklock' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='spence-crito' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='spencer-legibus' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='sprachlehre-dtfranz' and @type='neuzeit' and @sort='170'] -opus/kommentare/kommcat/kommentar/subsection[@id='staatsveraenderung' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='stanislaw-gespraech' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='stanley-history' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='steinbruchel-theater' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='sticotti-alzaide' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='sticotti-chef' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='sticotti-etoit' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='sticotti-musique' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='sticotti-queue' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='stockhausen-bibliothek' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='stockhausen-briefe' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='sueton-kaiserviten' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='sueton-opera' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='sulzer-hume' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='sulzer-theorie' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='swedenborg-opera' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='swift-schriften' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='tacitus-hist' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='teller-bibel' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='terenz-heaut' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='terrasson-philosophie' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='tetsch-kirchen' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='theokrit-idyll' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='theophrast-abschilderungen' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='theophrast-char' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='theophrast-plant' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='thomaskempen-imitando' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='thomas-oeuvres' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='thompson-miscellanies' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='thompson-socrate' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='thourneyser-essai' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='thourneyser-lettre' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='tiphaigne-amilec' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='tiphaigne-amour' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='tiphaigne-bigarrures' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='tiphaigne-giphantie' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='toland-cicero' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='toppe' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='touron-verite' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='trescho-denken' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='trescho-denkmale' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='trescho-erdbeben' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='trescho-genie' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='trescho-keith' and @type='neuzeit' and @sort='90'] -opus/kommentare/kommcat/kommentar/subsection[@id='trescho-naschereyen' and @type='neuzeit' and @sort='80'] -opus/kommentare/kommcat/kommentar/subsection[@id='trescho-predigten' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='trescho-religion' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='trescho-schreiben' and @type='neuzeit' and @sort='100'] -opus/kommentare/kommcat/kommentar/subsection[@id='trescho-sommerstunden' and @type='neuzeit' and @sort='110'] -opus/kommentare/kommcat/kommentar/subsection[@id='trescho-sterbebibel' and @type='neuzeit' and @sort='70'] -opus/kommentare/kommcat/kommentar/subsection[@id='triller-fabeln' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='trublet-fontenelle' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='tscherning-gedichte' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='tucker-essay' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='tyrtaios-klotz' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='ulloa-manufactures' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='unzer-arzt' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='unzer-erzaehl' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='uz-sieg' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='valentin-patriotische' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='valerius-opera' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='vechner-lexia' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='venusmeta' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='venus-physique' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='verbrugge-observationes' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='vergil-aeneis' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='vergil-bucol' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='vergil-georg' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='vergil-opera' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='vernet-histoire' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='vernuenftler' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='viedemahomet' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='vigerius-idiotismis' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='villaret-belle' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='villiers-sentimens' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='vitadirenzo' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='voisenon-tant' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='voisin-liber' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-annales' and @type='neuzeit' and @sort='80'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-beaumelle' and @type='neuzeit' and @sort='90'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-caffe' and @type='neuzeit' and @sort='160'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-candide' and @type='neuzeit' and @sort='55'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-critique' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-epique' and @type='neuzeit' and @sort='6'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-henri' and @type='neuzeit' and @sort='5'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-histoire' and @type='neuzeit' and @sort='170'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-homme' and @type='neuzeit' and @sort='15'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-lettreacad' and @type='neuzeit' and @sort='70'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-lisbonne' and @type='neuzeit' and @sort='120'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-louis' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-memnon' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-naturelle' and @type='neuzeit' and @sort='130'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-neuton' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-oeuvres' and @type='neuzeit' and @sort='4'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-orphelin' and @type='neuzeit' and @sort='110'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-precis' and @type='neuzeit' and @sort='150'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-pucelle' and @type='neuzeit' and @sort='100'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-refutation' and @type='neuzeit' and @sort='140'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-reponse-neuton' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-socrate' and @type='neuzeit' and @sort='155'] -opus/kommentare/kommcat/kommentar/subsection[@id='voltaire-uranie' and @type='neuzeit' and @sort='7'] -opus/kommentare/kommcat/kommentar/subsection[@id='vossius-historicis' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='wagner-griech' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='waser-moralische' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='watelet-art' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='watson-abschied' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='watson-biga' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='watson-freye' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='weber-russland' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='wegelin-gespraeche' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='weise-amazonen' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='weise-bibliothek' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='well-recht' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='wernicke-versuch' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='weymann-bedenklichkeiten' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='weymann-diss' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='wieland-abraham' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='wieland-academie' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='wieland-erzaehlung' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='wieland-freundin' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='wieland-gray' and @type='neuzeit' and @sort='50'] -opus/kommentare/kommcat/kommentar/subsection[@id='wieland-poetische' and @type='neuzeit' and @sort='60'] -opus/kommentare/kommcat/kommentar/subsection[@id='willamovius-dithyramben' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='willamovius-sammlung' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='willamovius-thornische' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='willis-cerebri' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='winckelmann-baukunst' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='winckelmann-empfindung' and @type='neuzeit' and @sort='35'] -opus/kommentare/kommcat/kommentar/subsection[@id='winckelmann-geschichte' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='winckelmann-nachahmung' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='winckelmann-sendschreiben' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='windheim-commentatio' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='wippel-geschichte' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='witting-lehrart' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='wolff-jusnaturae' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='wolf-jch-curae' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='wolle-collectio' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='xanthippe' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='xenophon-opera' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='xenophon-republick' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='xenophon-sokrates' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='young-brueder' and @type='neuzeit' and @sort='40'] -opus/kommentare/kommcat/kommentar/subsection[@id='young-centaur' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='young-fame' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='young-works' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='yvon-art' and @type='neuzeit'] -opus/kommentare/kommcat/kommentar/subsection[@id='zachariae-paradies' and @type='neuzeit' and @sort='25'] -opus/kommentare/kommcat/kommentar/subsection[@id='zachariae-poesien' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='zachariae-poetische' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection[@id='zachariae-tageszeiten' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='ziegra-hamburgische' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='zimmermann-diss' and @type='neuzeit' and @sort='10'] -opus/kommentare/kommcat/kommentar/subsection[@id='zimmermann-haller' and @type='neuzeit' and @sort='20'] -opus/kommentare/kommcat/kommentar/subsection[@id='zimmermann-national' and @type='neuzeit' and @sort='30'] -opus/kommentare/kommcat/kommentar/subsection/lemma/link[@ref='cramer-ja' and @linktext='false'] -opus/kommentare/kommcat/kommentar/subsection/wwwlink[@address='https://haab-digital.klassik-stiftung.de/viewer/resolver?urn=urn:nbn:de:gbv:32-1-10033906561'] -opus/kommentare/kommcat[@value='bibel' and @sorting='2'] -opus/kommentare/kommcat[@value='editionen' and @sorting='4'] -opus/kommentare/kommcat[@value='forschung' and @sorting='3'] -opus/kommentare/kommcat[@value='neuzeit' and @sorting='1'] -opus/marginalien -opus/marginalien/marginal/eintrag -opus/marginalien/marginal[@index='1000' and @letter='60' and @page='148' and @line='26'] -opus/marginalien/marginal[@index='1001' and @letter='60' and @page='148' and @line='31'] -opus/marginalien/marginal[@index='1002' and @letter='60' and @page='149' and @line='1'] -opus/marginalien/marginal[@index='1003' and @letter='60' and @page='149' and @line='17'] -opus/marginalien/marginal[@index='1004' and @letter='60' and @page='149' and @line='19'] -opus/marginalien/marginal[@index='1005' and @letter='60' and @page='149' and @line='20'] -opus/marginalien/marginal[@index='1006' and @letter='60' and @page='149' and @line='21'] -opus/marginalien/marginal[@index='1007' and @letter='60' and @page='149' and @line='23'] -opus/marginalien/marginal[@index='1008' and @letter='60' and @page='149' and @line='24'] -opus/marginalien/marginal[@index='1009' and @letter='60' and @page='149' and @line='27'] -opus/marginalien/marginal[@index='1010' and @letter='60' and @page='149' and @line='30'] -opus/marginalien/marginal[@index='1011' and @letter='60' and @page='149' and @line='30'] -opus/marginalien/marginal[@index='1012' and @letter='60' and @page='149' and @line='31'] -opus/marginalien/marginal[@index='1014' and @letter='60' and @page='150' and @line='21'] -opus/marginalien/marginal[@index='1015' and @letter='60' and @page='150' and @line='32'] -opus/marginalien/marginal[@index='1016' and @letter='60' and @page='150' and @line='32'] -opus/marginalien/marginal[@index='1017' and @letter='60' and @page='150' and @line='34'] -opus/marginalien/marginal[@index='1018' and @letter='60' and @page='151' and @line='1'] -opus/marginalien/marginal[@index='1019' and @letter='60' and @page='151' and @line='17'] -opus/marginalien/marginal[@index='101' and @letter='6' and @page='15' and @line='13'] -opus/marginalien/marginal[@index='1020' and @letter='60' and @page='151' and @line='18'] -opus/marginalien/marginal[@index='1021' and @letter='60' and @page='151' and @line='25'] -opus/marginalien/marginal[@index='1022' and @letter='60' and @page='151' and @line='28'] -opus/marginalien/marginal[@index='1023' and @letter='60' and @page='151' and @line='29'] -opus/marginalien/marginal[@index='1024' and @letter='60' and @page='151' and @line='31'] -opus/marginalien/marginal[@index='1025' and @letter='60' and @page='151' and @line='31'] -opus/marginalien/marginal[@index='1026' and @letter='60' and @page='151' and @line='36'] -opus/marginalien/marginal[@index='1027' and @letter='60' and @page='151' and @line='37'] -opus/marginalien/marginal[@index='1028' and @letter='60' and @page='151' and @line='37'] -opus/marginalien/marginal[@index='1029' and @letter='60' and @page='152' and @line='7'] -opus/marginalien/marginal[@index='102' and @letter='6' and @page='15' and @line='20'] -opus/marginalien/marginal[@index='1030' and @letter='61' and @page='152' and @line='12'] -opus/marginalien/marginal[@index='1031' and @letter='61' and @page='152' and @line='12'] -opus/marginalien/marginal[@index='1032' and @letter='61' and @page='152' and @line='14'] -opus/marginalien/marginal[@index='1033' and @letter='61' and @page='152' and @line='15'] -opus/marginalien/marginal[@index='1034' and @letter='61' and @page='152' and @line='18'] -opus/marginalien/marginal[@index='1035' and @letter='61' and @page='152' and @line='27'] -opus/marginalien/marginal[@index='1036' and @letter='61' and @page='152' and @line='28'] -opus/marginalien/marginal[@index='1037' and @letter='61' and @page='152' and @line='28'] -opus/marginalien/marginal[@index='1038' and @letter='61' and @page='153' and @line='12'] -opus/marginalien/marginal[@index='1039' and @letter='61' and @page='153' and @line='15'] -opus/marginalien/marginal[@index='103' and @letter='6' and @page='15' and @line='25'] -opus/marginalien/marginal[@index='1040' and @letter='61' and @page='153' and @line='16'] -opus/marginalien/marginal[@index='1041' and @letter='61' and @page='153' and @line='17'] -opus/marginalien/marginal[@index='1042' and @letter='61' and @page='153' and @line='37'] -opus/marginalien/marginal[@index='1043' and @letter='61' and @page='154' and @line='2'] -opus/marginalien/marginal[@index='1044' and @letter='62' and @page='154' and @line='28'] -opus/marginalien/marginal[@index='1045' and @letter='62' and @page='154' and @line='30'] -opus/marginalien/marginal[@index='1046' and @letter='62' and @page='154' and @line='34'] -opus/marginalien/marginal[@index='1047' and @letter='62' and @page='155' and @line='2'] -opus/marginalien/marginal[@index='1048' and @letter='62' and @page='155' and @line='4'] -opus/marginalien/marginal[@index='1049' and @letter='62' and @page='155' and @line='4'] -opus/marginalien/marginal[@index='104' and @letter='7' and @page='15' and @line='27'] -opus/marginalien/marginal[@index='1050' and @letter='62' and @page='155' and @line='10'] -opus/marginalien/marginal[@index='1051' and @letter='62' and @page='155' and @line='12'] -opus/marginalien/marginal[@index='1052' and @letter='62' and @page='155' and @line='14'] -opus/marginalien/marginal[@index='1053' and @letter='62' and @page='155' and @line='16'] -opus/marginalien/marginal[@index='1054' and @letter='62' and @page='155' and @line='18'] -opus/marginalien/marginal[@index='1055' and @letter='62' and @page='155' and @line='19'] -opus/marginalien/marginal[@index='1056' and @letter='62' and @page='155' and @line='21'] -opus/marginalien/marginal[@index='1057' and @letter='62' and @page='155' and @line='22'] -opus/marginalien/marginal[@index='1058' and @letter='62' and @page='155' and @line='23'] -opus/marginalien/marginal[@index='1059' and @letter='62' and @page='155' and @line='34'] -opus/marginalien/marginal[@index='105' and @letter='7' and @page='15' and @line='31'] -opus/marginalien/marginal[@index='1060' and @letter='62' and @page='156' and @line='3'] -opus/marginalien/marginal[@index='1061' and @letter='62' and @page='156' and @line='5'] -opus/marginalien/marginal[@index='1062' and @letter='62' and @page='156' and @line='6'] -opus/marginalien/marginal[@index='1063' and @letter='62' and @page='156' and @line='21'] -opus/marginalien/marginal[@index='1064' and @letter='62' and @page='156' and @line='23'] -opus/marginalien/marginal[@index='1065' and @letter='63' and @page='156' and @line='29'] -opus/marginalien/marginal[@index='1066' and @letter='63' and @page='156' and @line='30'] -opus/marginalien/marginal[@index='1067' and @letter='63' and @page='157' and @line='3'] -opus/marginalien/marginal[@index='1068' and @letter='63' and @page='157' and @line='8'] -opus/marginalien/marginal[@index='1069' and @letter='63' and @page='157' and @line='10'] -opus/marginalien/marginal[@index='106' and @letter='7' and @page='15' and @line='33'] -opus/marginalien/marginal[@index='1070' and @letter='63' and @page='157' and @line='11'] -opus/marginalien/marginal[@index='1071' and @letter='63' and @page='157' and @line='13'] -opus/marginalien/marginal[@index='1072' and @letter='63' and @page='157' and @line='18'] -opus/marginalien/marginal[@index='1073' and @letter='63' and @page='157' and @line='21'] -opus/marginalien/marginal[@index='1074' and @letter='63' and @page='157' and @line='22'] -opus/marginalien/marginal[@index='1075' and @letter='63' and @page='157' and @line='29'] -opus/marginalien/marginal[@index='1076' and @letter='63' and @page='157' and @line='29'] -opus/marginalien/marginal[@index='1077' and @letter='63' and @page='158' and @line='4'] -opus/marginalien/marginal[@index='1078' and @letter='63' and @page='158' and @line='8'] -opus/marginalien/marginal[@index='1079' and @letter='63' and @page='158' and @line='31'] -opus/marginalien/marginal[@index='107' and @letter='7' and @page='16' and @line='12'] -opus/marginalien/marginal[@index='1080' and @letter='63' and @page='158' and @line='31'] -opus/marginalien/marginal[@index='1081' and @letter='63' and @page='158' and @line='33'] -opus/marginalien/marginal[@index='1082' and @letter='63' and @page='158' and @line='35'] -opus/marginalien/marginal[@index='1083' and @letter='63' and @page='159' and @line='1'] -opus/marginalien/marginal[@index='1084' and @letter='63' and @page='159' and @line='2'] -opus/marginalien/marginal[@index='1085' and @letter='63' and @page='159' and @line='2'] -opus/marginalien/marginal[@index='1086' and @letter='63' and @page='159' and @line='4'] -opus/marginalien/marginal[@index='1087' and @letter='63' and @page='159' and @line='5'] -opus/marginalien/marginal[@index='1088' and @letter='63' and @page='159' and @line='6'] -opus/marginalien/marginal[@index='1089' and @letter='63' and @page='159' and @line='6'] -opus/marginalien/marginal[@index='108' and @letter='7' and @page='16' and @line='13'] -opus/marginalien/marginal[@index='1090' and @letter='63' and @page='159' and @line='7'] -opus/marginalien/marginal[@index='1091' and @letter='63' and @page='159' and @line='9'] -opus/marginalien/marginal[@index='1092' and @letter='64' and @page='159' and @line='17'] -opus/marginalien/marginal[@index='1093' and @letter='64' and @page='159' and @line='19'] -opus/marginalien/marginal[@index='1094' and @letter='64' and @page='159' and @line='24'] -opus/marginalien/marginal[@index='1095' and @letter='64' and @page='159' and @line='30'] -opus/marginalien/marginal[@index='1096' and @letter='64' and @page='159' and @line='32'] -opus/marginalien/marginal[@index='1097' and @letter='64' and @page='160' and @line='15'] -opus/marginalien/marginal[@index='1098' and @letter='64' and @page='160' and @line='30'] -opus/marginalien/marginal[@index='1099' and @letter='64' and @page='160' and @line='32'] -opus/marginalien/marginal[@index='109' and @letter='7' and @page='16' and @line='14'] -opus/marginalien/marginal[@index='10' and @letter='1' and @page='2' and @line='33'] -opus/marginalien/marginal[@index='1100' and @letter='64' and @page='160' and @line='33'] -opus/marginalien/marginal[@index='1101' and @letter='64' and @page='160' and @line='34'] -opus/marginalien/marginal[@index='1102' and @letter='64' and @page='161' and @line='4'] -opus/marginalien/marginal[@index='1103' and @letter='64' and @page='162' and @line='11'] -opus/marginalien/marginal[@index='1104' and @letter='64' and @page='162' and @line='12'] -opus/marginalien/marginal[@index='1105' and @letter='64' and @page='162' and @line='13'] -opus/marginalien/marginal[@index='1106' and @letter='64' and @page='162' and @line='14'] -opus/marginalien/marginal[@index='1107' and @letter='64' and @page='162' and @line='15'] -opus/marginalien/marginal[@index='1108' and @letter='64' and @page='162' and @line='15'] -opus/marginalien/marginal[@index='1109' and @letter='64' and @page='162' and @line='18'] -opus/marginalien/marginal[@index='110' and @letter='7' and @page='16' and @line='15'] -opus/marginalien/marginal[@index='1110' and @letter='64' and @page='162' and @line='25'] -opus/marginalien/marginal[@index='1111' and @letter='64' and @page='162' and @line='27'] -opus/marginalien/marginal[@index='1112' and @letter='64' and @page='162' and @line='30'] -opus/marginalien/marginal[@index='1113' and @letter='64' and @page='162' and @line='31'] -opus/marginalien/marginal[@index='1114' and @letter='64' and @page='162' and @line='35'] -opus/marginalien/marginal[@index='1115' and @letter='65' and @page='163' and @line='6'] -opus/marginalien/marginal[@index='1116' and @letter='65' and @page='163' and @line='15'] -opus/marginalien/marginal[@index='1117' and @letter='65' and @page='163' and @line='16'] -opus/marginalien/marginal[@index='1118' and @letter='65' and @page='163' and @line='19'] -opus/marginalien/marginal[@index='1119' and @letter='65' and @page='163' and @line='20'] -opus/marginalien/marginal[@index='111' and @letter='7' and @page='16' and @line='17'] -opus/marginalien/marginal[@index='1120' and @letter='65' and @page='163' and @line='21'] -opus/marginalien/marginal[@index='1121' and @letter='65' and @page='163' and @line='27'] -opus/marginalien/marginal[@index='1122' and @letter='66' and @page='164' and @line='8'] -opus/marginalien/marginal[@index='1123' and @letter='66' and @page='164' and @line='9'] -opus/marginalien/marginal[@index='1124' and @letter='66' and @page='164' and @line='10'] -opus/marginalien/marginal[@index='1125' and @letter='66' and @page='164' and @line='26'] -opus/marginalien/marginal[@index='1126' and @letter='66' and @page='164' and @line='27'] -opus/marginalien/marginal[@index='1127' and @letter='67' and @page='165' and @line='3'] -opus/marginalien/marginal[@index='1128' and @letter='67' and @page='165' and @line='15'] -opus/marginalien/marginal[@index='1129' and @letter='67' and @page='165' and @line='18'] -opus/marginalien/marginal[@index='1130' and @letter='67' and @page='166' and @line='24'] -opus/marginalien/marginal[@index='1131' and @letter='67' and @page='167' and @line='15'] -opus/marginalien/marginal[@index='1132' and @letter='67' and @page='167' and @line='24'] -opus/marginalien/marginal[@index='1133' and @letter='67' and @page='167' and @line='28'] -opus/marginalien/marginal[@index='1134' and @letter='68' and @page='168' and @line='6'] -opus/marginalien/marginal[@index='1135' and @letter='68' and @page='168' and @line='35'] -opus/marginalien/marginal[@index='1136' and @letter='68' and @page='169' and @line='2'] -opus/marginalien/marginal[@index='1137' and @letter='69' and @page='169' and @line='12'] -opus/marginalien/marginal[@index='1138' and @letter='69' and @page='169' and @line='20'] -opus/marginalien/marginal[@index='1139' and @letter='69' and @page='169' and @line='26'] -opus/marginalien/marginal[@index='113' and @letter='7' and @page='17' and @line='15'] -opus/marginalien/marginal[@index='1140' and @letter='69' and @page='169' and @line='29'] -opus/marginalien/marginal[@index='1141' and @letter='69' and @page='169' and @line='30'] -opus/marginalien/marginal[@index='1142' and @letter='69' and @page='170' and @line='2'] -opus/marginalien/marginal[@index='1143' and @letter='69' and @page='170' and @line='9'] -opus/marginalien/marginal[@index='1144' and @letter='69' and @page='170' and @line='16'] -opus/marginalien/marginal[@index='1145' and @letter='69' and @page='170' and @line='17'] -opus/marginalien/marginal[@index='1146' and @letter='69' and @page='170' and @line='17'] -opus/marginalien/marginal[@index='1147' and @letter='69' and @page='170' and @line='19'] -opus/marginalien/marginal[@index='1148' and @letter='69' and @page='170' and @line='24'] -opus/marginalien/marginal[@index='1149' and @letter='69' and @page='171' and @line='7'] -opus/marginalien/marginal[@index='114' and @letter='7' and @page='17' and @line='25'] -opus/marginalien/marginal[@index='1150' and @letter='69' and @page='171' and @line='10'] -opus/marginalien/marginal[@index='1151' and @letter='69' and @page='171' and @line='16'] -opus/marginalien/marginal[@index='1152' and @letter='69' and @page='171' and @line='17'] -opus/marginalien/marginal[@index='1153' and @letter='69' and @page='171' and @line='22'] -opus/marginalien/marginal[@index='1154' and @letter='69' and @page='171' and @line='27'] -opus/marginalien/marginal[@index='1155' and @letter='69' and @page='172' and @line='5'] -opus/marginalien/marginal[@index='1156' and @letter='70' and @page='172' and @line='22'] -opus/marginalien/marginal[@index='1157' and @letter='70' and @page='173' and @line='17'] -opus/marginalien/marginal[@index='1158' and @letter='70' and @page='173' and @line='19'] -opus/marginalien/marginal[@index='1159' and @letter='71' and @page='173' and @line='28'] -opus/marginalien/marginal[@index='115' and @letter='7' and @page='17' and @line='25'] -opus/marginalien/marginal[@index='1160' and @letter='71' and @page='173' and @line='33'] -opus/marginalien/marginal[@index='1161' and @letter='71' and @page='174' and @line='5'] -opus/marginalien/marginal[@index='1162' and @letter='71' and @page='174' and @line='10'] -opus/marginalien/marginal[@index='1163' and @letter='71' and @page='174' and @line='15'] -opus/marginalien/marginal[@index='1164' and @letter='71' and @page='174' and @line='19'] -opus/marginalien/marginal[@index='1165' and @letter='71' and @page='174' and @line='22'] -opus/marginalien/marginal[@index='1166' and @letter='71' and @page='174' and @line='24'] -opus/marginalien/marginal[@index='1167' and @letter='71' and @page='175' and @line='2'] -opus/marginalien/marginal[@index='1168' and @letter='71' and @page='175' and @line='15'] -opus/marginalien/marginal[@index='1169' and @letter='71' and @page='175' and @line='25'] -opus/marginalien/marginal[@index='116' and @letter='7' and @page='17' and @line='27'] -opus/marginalien/marginal[@index='1170' and @letter='71' and @page='175' and @line='36'] -opus/marginalien/marginal[@index='1171' and @letter='71' and @page='176' and @line='2'] -opus/marginalien/marginal[@index='1172' and @letter='71' and @page='176' and @line='13'] -opus/marginalien/marginal[@index='1173' and @letter='71' and @page='176' and @line='14'] -opus/marginalien/marginal[@index='1174' and @letter='71' and @page='176' and @line='17'] -opus/marginalien/marginal[@index='1175' and @letter='71' and @page='177' and @line='2'] -opus/marginalien/marginal[@index='1176' and @letter='71' and @page='177' and @line='19'] -opus/marginalien/marginal[@index='1177' and @letter='71' and @page='177' and @line='25'] -opus/marginalien/marginal[@index='1178' and @letter='71' and @page='178' and @line='22'] -opus/marginalien/marginal[@index='1179' and @letter='71' and @page='178' and @line='27'] -opus/marginalien/marginal[@index='117' and @letter='7' and @page='17' and @line='27'] -opus/marginalien/marginal[@index='1180' and @letter='72' and @page='179' and @line='3'] -opus/marginalien/marginal[@index='1181' and @letter='72' and @page='179' and @line='9'] -opus/marginalien/marginal[@index='1182' and @letter='72' and @page='179' and @line='21'] -opus/marginalien/marginal[@index='1183' and @letter='72' and @page='179' and @line='35'] -opus/marginalien/marginal[@index='1184' and @letter='72' and @page='179' and @line='35'] -opus/marginalien/marginal[@index='1185' and @letter='72' and @page='180' and @line='4'] -opus/marginalien/marginal[@index='1186' and @letter='72' and @page='180' and @line='5'] -opus/marginalien/marginal[@index='1187' and @letter='72' and @page='180' and @line='13'] -opus/marginalien/marginal[@index='1188' and @letter='72' and @page='180' and @line='14'] -opus/marginalien/marginal[@index='1189' and @letter='72' and @page='180' and @line='17'] -opus/marginalien/marginal[@index='118' and @letter='7' and @page='17' and @line='30'] -opus/marginalien/marginal[@index='1190' and @letter='72' and @page='180' and @line='20'] -opus/marginalien/marginal[@index='1191' and @letter='72' and @page='180' and @line='21'] -opus/marginalien/marginal[@index='1192' and @letter='72' and @page='180' and @line='23'] -opus/marginalien/marginal[@index='1193' and @letter='72' and @page='180' and @line='24'] -opus/marginalien/marginal[@index='1194' and @letter='72' and @page='180' and @line='26'] -opus/marginalien/marginal[@index='1195' and @letter='72' and @page='180' and @line='27'] -opus/marginalien/marginal[@index='1196' and @letter='72' and @page='180' and @line='27'] -opus/marginalien/marginal[@index='1197' and @letter='72' and @page='180' and @line='31'] -opus/marginalien/marginal[@index='1198' and @letter='72' and @page='180' and @line='32'] -opus/marginalien/marginal[@index='1199' and @letter='72' and @page='180' and @line='33'] -opus/marginalien/marginal[@index='119' and @letter='7' and @page='17' and @line='34'] -opus/marginalien/marginal[@index='11' and @letter='2' and @page='3' and @line='6'] -opus/marginalien/marginal[@index='1200' and @letter='72' and @page='180' and @line='33'] -opus/marginalien/marginal[@index='1201' and @letter='72' and @page='180' and @line='34'] -opus/marginalien/marginal[@index='1202' and @letter='72' and @page='181' and @line='1'] -opus/marginalien/marginal[@index='1203' and @letter='72' and @page='181' and @line='2'] -opus/marginalien/marginal[@index='1204' and @letter='72' and @page='181' and @line='2'] -opus/marginalien/marginal[@index='1205' and @letter='72' and @page='181' and @line='2'] -opus/marginalien/marginal[@index='1206' and @letter='72' and @page='181' and @line='3'] -opus/marginalien/marginal[@index='1207' and @letter='72' and @page='181' and @line='6'] -opus/marginalien/marginal[@index='1208' and @letter='72' and @page='181' and @line='7'] -opus/marginalien/marginal[@index='1209' and @letter='72' and @page='181' and @line='12'] -opus/marginalien/marginal[@index='120' and @letter='7' and @page='17' and @line='35'] -opus/marginalien/marginal[@index='1210' and @letter='72' and @page='181' and @line='13'] -opus/marginalien/marginal[@index='1211' and @letter='72' and @page='182' and @line='23'] -opus/marginalien/marginal[@index='1212' and @letter='72' and @page='182' and @line='25'] -opus/marginalien/marginal[@index='1213' and @letter='72' and @page='183' and @line='17'] -opus/marginalien/marginal[@index='1214' and @letter='72' and @page='183' and @line='23'] -opus/marginalien/marginal[@index='1215' and @letter='72' and @page='183' and @line='37'] -opus/marginalien/marginal[@index='1216' and @letter='72' and @page='184' and @line='2'] -opus/marginalien/marginal[@index='1217' and @letter='72' and @page='184' and @line='4'] -opus/marginalien/marginal[@index='1218' and @letter='73' and @page='184' and @line='12'] -opus/marginalien/marginal[@index='1219' and @letter='73' and @page='184' and @line='12'] -opus/marginalien/marginal[@index='121' and @letter='7' and @page='18' and @line='17'] -opus/marginalien/marginal[@index='1220' and @letter='73' and @page='184' and @line='28'] -opus/marginalien/marginal[@index='1221' and @letter='73' and @page='184' and @line='28'] -opus/marginalien/marginal[@index='1222' and @letter='73' and @page='184' and @line='30'] -opus/marginalien/marginal[@index='1223' and @letter='73' and @page='184' and @line='30'] -opus/marginalien/marginal[@index='1224' and @letter='73' and @page='184' and @line='34'] -opus/marginalien/marginal[@index='1225' and @letter='73' and @page='185' and @line='4'] -opus/marginalien/marginal[@index='1226' and @letter='73' and @page='185' and @line='14'] -opus/marginalien/marginal[@index='1227' and @letter='73' and @page='185' and @line='27'] -opus/marginalien/marginal[@index='1228' and @letter='73' and @page='186' and @line='5'] -opus/marginalien/marginal[@index='1229' and @letter='73' and @page='186' and @line='10'] -opus/marginalien/marginal[@index='122' and @letter='7' and @page='18' and @line='18'] -opus/marginalien/marginal[@index='1230' and @letter='73' and @page='186' and @line='13'] -opus/marginalien/marginal[@index='1231' and @letter='73' and @page='186' and @line='17'] -opus/marginalien/marginal[@index='1232' and @letter='73' and @page='186' and @line='20'] -opus/marginalien/marginal[@index='1233' and @letter='73' and @page='186' and @line='25'] -opus/marginalien/marginal[@index='1234' and @letter='73' and @page='186' and @line='28'] -opus/marginalien/marginal[@index='1235' and @letter='73' and @page='186' and @line='30'] -opus/marginalien/marginal[@index='1236' and @letter='73' and @page='186' and @line='32'] -opus/marginalien/marginal[@index='1237' and @letter='73' and @page='186' and @line='34'] -opus/marginalien/marginal[@index='1238' and @letter='73' and @page='186' and @line='35'] -opus/marginalien/marginal[@index='123' and @letter='7' and @page='18' and @line='20'] -opus/marginalien/marginal[@index='1240' and @letter='74' and @page='187' and @line='31'] -opus/marginalien/marginal[@index='1241' and @letter='74' and @page='188' and @line='1'] -opus/marginalien/marginal[@index='1242' and @letter='74' and @page='188' and @line='5'] -opus/marginalien/marginal[@index='1243' and @letter='74' and @page='188' and @line='7'] -opus/marginalien/marginal[@index='1244' and @letter='74' and @page='188' and @line='8'] -opus/marginalien/marginal[@index='1245' and @letter='74' and @page='188' and @line='13'] -opus/marginalien/marginal[@index='1246' and @letter='74' and @page='188' and @line='21'] -opus/marginalien/marginal[@index='1247' and @letter='74' and @page='188' and @line='21'] -opus/marginalien/marginal[@index='1248' and @letter='74' and @page='188' and @line='23'] -opus/marginalien/marginal[@index='1249' and @letter='74' and @page='188' and @line='25'] -opus/marginalien/marginal[@index='124' and @letter='7' and @page='18' and @line='35'] -opus/marginalien/marginal[@index='1250' and @letter='74' and @page='188' and @line='27'] -opus/marginalien/marginal[@index='1251' and @letter='74' and @page='188' and @line='31'] -opus/marginalien/marginal[@index='1252' and @letter='74' and @page='188' and @line='33'] -opus/marginalien/marginal[@index='1253' and @letter='74' and @page='188' and @line='34'] -opus/marginalien/marginal[@index='1254' and @letter='74' and @page='188' and @line='35'] -opus/marginalien/marginal[@index='1255' and @letter='74' and @page='189' and @line='12'] -opus/marginalien/marginal[@index='1256' and @letter='74' and @page='189' and @line='19'] -opus/marginalien/marginal[@index='1257' and @letter='74' and @page='189' and @line='20'] -opus/marginalien/marginal[@index='1258' and @letter='74' and @page='189' and @line='20'] -opus/marginalien/marginal[@index='1259' and @letter='74' and @page='189' and @line='21'] -opus/marginalien/marginal[@index='125' and @letter='7' and @page='19' and @line='1'] -opus/marginalien/marginal[@index='1260' and @letter='74' and @page='189' and @line='22'] -opus/marginalien/marginal[@index='1261' and @letter='74' and @page='189' and @line='24'] -opus/marginalien/marginal[@index='1262' and @letter='74' and @page='189' and @line='29'] -opus/marginalien/marginal[@index='1263' and @letter='74' and @page='189' and @line='30'] -opus/marginalien/marginal[@index='1264' and @letter='74' and @page='189' and @line='32'] -opus/marginalien/marginal[@index='1265' and @letter='74' and @page='189' and @line='34'] -opus/marginalien/marginal[@index='1266' and @letter='74' and @page='189' and @line='36'] -opus/marginalien/marginal[@index='1267' and @letter='74' and @page='190' and @line='3'] -opus/marginalien/marginal[@index='1268' and @letter='74' and @page='190' and @line='4'] -opus/marginalien/marginal[@index='1269' and @letter='74' and @page='190' and @line='6'] -opus/marginalien/marginal[@index='126' and @letter='7' and @page='19' and @line='2'] -opus/marginalien/marginal[@index='1270' and @letter='74' and @page='190' and @line='11'] -opus/marginalien/marginal[@index='1271' and @letter='74' and @page='190' and @line='16'] -opus/marginalien/marginal[@index='1272' and @letter='74' and @page='190' and @line='16'] -opus/marginalien/marginal[@index='1273' and @letter='74' and @page='190' and @line='17'] -opus/marginalien/marginal[@index='1274' and @letter='75' and @page='190' and @line='20'] -opus/marginalien/marginal[@index='1275' and @letter='75' and @page='190' and @line='22'] -opus/marginalien/marginal[@index='1276' and @letter='75' and @page='190' and @line='27'] -opus/marginalien/marginal[@index='1277' and @letter='75' and @page='190' and @line='28'] -opus/marginalien/marginal[@index='1278' and @letter='75' and @page='190' and @line='29'] -opus/marginalien/marginal[@index='1279' and @letter='75' and @page='190' and @line='31'] -opus/marginalien/marginal[@index='127' and @letter='7' and @page='19' and @line='2'] -opus/marginalien/marginal[@index='1280' and @letter='75' and @page='190' and @line='33'] -opus/marginalien/marginal[@index='1281' and @letter='75' and @page='191' and @line='3'] -opus/marginalien/marginal[@index='1282' and @letter='75' and @page='191' and @line='4'] -opus/marginalien/marginal[@index='1283' and @letter='75' and @page='191' and @line='6'] -opus/marginalien/marginal[@index='1284' and @letter='75' and @page='191' and @line='7'] -opus/marginalien/marginal[@index='1285' and @letter='75' and @page='191' and @line='10'] -opus/marginalien/marginal[@index='1286' and @letter='75' and @page='191' and @line='34'] -opus/marginalien/marginal[@index='1287' and @letter='75' and @page='192' and @line='4'] -opus/marginalien/marginal[@index='1288' and @letter='75' and @page='193' and @line='27'] -opus/marginalien/marginal[@index='1289' and @letter='75' and @page='193' and @line='33'] -opus/marginalien/marginal[@index='128' and @letter='7' and @page='19' and @line='5'] -opus/marginalien/marginal[@index='1290' and @letter='75' and @page='194' and @line='2'] -opus/marginalien/marginal[@index='1291' and @letter='75' and @page='194' and @line='6'] -opus/marginalien/marginal[@index='1292' and @letter='75' and @page='194' and @line='35'] -opus/marginalien/marginal[@index='1293' and @letter='75' and @page='195' and @line='2'] -opus/marginalien/marginal[@index='1294' and @letter='75' and @page='195' and @line='16'] -opus/marginalien/marginal[@index='1295' and @letter='75' and @page='195' and @line='17'] -opus/marginalien/marginal[@index='1296' and @letter='75' and @page='195' and @line='24'] -opus/marginalien/marginal[@index='1297' and @letter='75' and @page='195' and @line='28'] -opus/marginalien/marginal[@index='1298' and @letter='75' and @page='196' and @line='4'] -opus/marginalien/marginal[@index='1299' and @letter='75' and @page='196' and @line='12'] -opus/marginalien/marginal[@index='129' and @letter='7' and @page='19' and @line='13'] -opus/marginalien/marginal[@index='12' and @letter='2' and @page='3' and @line='7'] -opus/marginalien/marginal[@index='1300' and @letter='76' and @page='196' and @line='15'] -opus/marginalien/marginal[@index='1301' and @letter='76' and @page='196' and @line='15'] -opus/marginalien/marginal[@index='1302' and @letter='76' and @page='196' and @line='16'] -opus/marginalien/marginal[@index='1303' and @letter='76' and @page='196' and @line='16'] -opus/marginalien/marginal[@index='1304' and @letter='76' and @page='196' and @line='21'] -opus/marginalien/marginal[@index='1305' and @letter='76' and @page='196' and @line='23'] -opus/marginalien/marginal[@index='1306' and @letter='76' and @page='196' and @line='24'] -opus/marginalien/marginal[@index='1307' and @letter='76' and @page='196' and @line='30'] -opus/marginalien/marginal[@index='1308' and @letter='76' and @page='196' and @line='31'] -opus/marginalien/marginal[@index='1309' and @letter='76' and @page='196' and @line='34'] -opus/marginalien/marginal[@index='130' and @letter='7' and @page='19' and @line='13'] -opus/marginalien/marginal[@index='1310' and @letter='76' and @page='197' and @line='14'] -opus/marginalien/marginal[@index='1311' and @letter='76' and @page='197' and @line='24'] -opus/marginalien/marginal[@index='1312' and @letter='76' and @page='197' and @line='24'] -opus/marginalien/marginal[@index='1313' and @letter='76' and @page='197' and @line='26'] -opus/marginalien/marginal[@index='1314' and @letter='76' and @page='197' and @line='27'] -opus/marginalien/marginal[@index='1315' and @letter='76' and @page='197' and @line='29'] -opus/marginalien/marginal[@index='1316' and @letter='76' and @page='197' and @line='30'] -opus/marginalien/marginal[@index='1317' and @letter='76' and @page='197' and @line='30'] -opus/marginalien/marginal[@index='1318' and @letter='76' and @page='197' and @line='30'] -opus/marginalien/marginal[@index='1319' and @letter='76' and @page='197' and @line='31'] -opus/marginalien/marginal[@index='131' and @letter='7' and @page='19' and @line='14'] -opus/marginalien/marginal[@index='1320' and @letter='76' and @page='197' and @line='34'] -opus/marginalien/marginal[@index='1321' and @letter='76' and @page='197' and @line='36'] -opus/marginalien/marginal[@index='1322' and @letter='76' and @page='198' and @line='9'] -opus/marginalien/marginal[@index='1323' and @letter='76' and @page='198' and @line='16'] -opus/marginalien/marginal[@index='1324' and @letter='76' and @page='198' and @line='17'] -opus/marginalien/marginal[@index='1325' and @letter='76' and @page='198' and @line='25'] -opus/marginalien/marginal[@index='1326' and @letter='76' and @page='198' and @line='26'] -opus/marginalien/marginal[@index='1327' and @letter='76' and @page='199' and @line='4'] -opus/marginalien/marginal[@index='1328' and @letter='76' and @page='199' and @line='5'] -opus/marginalien/marginal[@index='1329' and @letter='76' and @page='199' and @line='6'] -opus/marginalien/marginal[@index='132' and @letter='8' and @page='19' and @line='20'] -opus/marginalien/marginal[@index='1330' and @letter='76' and @page='199' and @line='9'] -opus/marginalien/marginal[@index='1331' and @letter='76' and @page='199' and @line='11'] -opus/marginalien/marginal[@index='1332' and @letter='76' and @page='199' and @line='12'] -opus/marginalien/marginal[@index='1333' and @letter='76' and @page='199' and @line='15'] -opus/marginalien/marginal[@index='1334' and @letter='76' and @page='199' and @line='18'] -opus/marginalien/marginal[@index='1335' and @letter='76' and @page='199' and @line='25'] -opus/marginalien/marginal[@index='1336' and @letter='76' and @page='199' and @line='26'] -opus/marginalien/marginal[@index='1337' and @letter='76' and @page='199' and @line='26'] -opus/marginalien/marginal[@index='1338' and @letter='76' and @page='199' and @line='27'] -opus/marginalien/marginal[@index='1339' and @letter='76' and @page='199' and @line='30'] -opus/marginalien/marginal[@index='133' and @letter='8' and @page='19' and @line='22'] -opus/marginalien/marginal[@index='1340' and @letter='76' and @page='199' and @line='33'] -opus/marginalien/marginal[@index='1341' and @letter='76' and @page='199' and @line='34'] -opus/marginalien/marginal[@index='1342' and @letter='76' and @page='199' and @line='34'] -opus/marginalien/marginal[@index='1343' and @letter='76' and @page='199' and @line='34'] -opus/marginalien/marginal[@index='1344' and @letter='76' and @page='199' and @line='34'] -opus/marginalien/marginal[@index='1345' and @letter='76' and @page='199' and @line='35'] -opus/marginalien/marginal[@index='1346' and @letter='76' and @page='199' and @line='35'] -opus/marginalien/marginal[@index='1347' and @letter='77' and @page='200' and @line='6'] -opus/marginalien/marginal[@index='1348' and @letter='77' and @page='200' and @line='8'] -opus/marginalien/marginal[@index='1349' and @letter='77' and @page='200' and @line='12'] -opus/marginalien/marginal[@index='134' and @letter='8' and @page='19' and @line='23'] -opus/marginalien/marginal[@index='1350' and @letter='77' and @page='200' and @line='34'] -opus/marginalien/marginal[@index='1351' and @letter='77' and @page='200' and @line='36'] -opus/marginalien/marginal[@index='1352' and @letter='77' and @page='201' and @line='7'] -opus/marginalien/marginal[@index='1353' and @letter='77' and @page='201' and @line='8'] -opus/marginalien/marginal[@index='1354' and @letter='77' and @page='201' and @line='34'] -opus/marginalien/marginal[@index='1355' and @letter='77' and @page='202' and @line='8'] -opus/marginalien/marginal[@index='1356' and @letter='77' and @page='202' and @line='12'] -opus/marginalien/marginal[@index='1357' and @letter='77' and @page='202' and @line='13'] -opus/marginalien/marginal[@index='1358' and @letter='77' and @page='202' and @line='15'] -opus/marginalien/marginal[@index='1359' and @letter='77' and @page='202' and @line='22'] -opus/marginalien/marginal[@index='135' and @letter='8' and @page='19' and @line='23'] -opus/marginalien/marginal[@index='1360' and @letter='77' and @page='202' and @line='25'] -opus/marginalien/marginal[@index='1361' and @letter='77' and @page='202' and @line='26'] -opus/marginalien/marginal[@index='1362' and @letter='77' and @page='202' and @line='27'] -opus/marginalien/marginal[@index='1363' and @letter='77' and @page='202' and @line='27'] -opus/marginalien/marginal[@index='1364' and @letter='77' and @page='202' and @line='29'] -opus/marginalien/marginal[@index='1365' and @letter='77' and @page='202' and @line='30'] -opus/marginalien/marginal[@index='1366' and @letter='77' and @page='202' and @line='34'] -opus/marginalien/marginal[@index='1367' and @letter='77' and @page='203' and @line='2'] -opus/marginalien/marginal[@index='1368' and @letter='77' and @page='203' and @line='16'] -opus/marginalien/marginal[@index='1369' and @letter='77' and @page='203' and @line='20'] -opus/marginalien/marginal[@index='136' and @letter='8' and @page='19' and @line='23'] -opus/marginalien/marginal[@index='1370' and @letter='77' and @page='203' and @line='21'] -opus/marginalien/marginal[@index='1371' and @letter='77' and @page='204' and @line='8'] -opus/marginalien/marginal[@index='1372' and @letter='77' and @page='204' and @line='10'] -opus/marginalien/marginal[@index='1373' and @letter='77' and @page='204' and @line='17'] -opus/marginalien/marginal[@index='1374' and @letter='77' and @page='204' and @line='18'] -opus/marginalien/marginal[@index='1375' and @letter='77' and @page='204' and @line='21'] -opus/marginalien/marginal[@index='1376' and @letter='77' and @page='204' and @line='22'] -opus/marginalien/marginal[@index='1377' and @letter='77' and @page='204' and @line='25'] -opus/marginalien/marginal[@index='1378' and @letter='77' and @page='204' and @line='27'] -opus/marginalien/marginal[@index='1379' and @letter='77' and @page='204' and @line='27'] -opus/marginalien/marginal[@index='137' and @letter='8' and @page='19' and @line='26'] -opus/marginalien/marginal[@index='1380' and @letter='77' and @page='204' and @line='29'] -opus/marginalien/marginal[@index='1381' and @letter='77' and @page='204' and @line='32'] -opus/marginalien/marginal[@index='1382' and @letter='77' and @page='204' and @line='34'] -opus/marginalien/marginal[@index='1383' and @letter='77' and @page='205' and @line='5'] -opus/marginalien/marginal[@index='1384' and @letter='78' and @page='205' and @line='14'] -opus/marginalien/marginal[@index='1385' and @letter='78' and @page='205' and @line='17'] -opus/marginalien/marginal[@index='1386' and @letter='78' and @page='205' and @line='24'] -opus/marginalien/marginal[@index='1387' and @letter='78' and @page='205' and @line='25'] -opus/marginalien/marginal[@index='1388' and @letter='78' and @page='205' and @line='25'] -opus/marginalien/marginal[@index='1389' and @letter='78' and @page='205' and @line='27'] -opus/marginalien/marginal[@index='138' and @letter='8' and @page='19' and @line='26'] -opus/marginalien/marginal[@index='1390' and @letter='78' and @page='205' and @line='28'] -opus/marginalien/marginal[@index='1391' and @letter='78' and @page='206' and @line='4'] -opus/marginalien/marginal[@index='1392' and @letter='78' and @page='206' and @line='7'] -opus/marginalien/marginal[@index='1393' and @letter='78' and @page='206' and @line='10'] -opus/marginalien/marginal[@index='1394' and @letter='78' and @page='206' and @line='17'] -opus/marginalien/marginal[@index='1395' and @letter='78' and @page='206' and @line='17'] -opus/marginalien/marginal[@index='1396' and @letter='78' and @page='206' and @line='20'] -opus/marginalien/marginal[@index='1397' and @letter='78' and @page='206' and @line='26'] -opus/marginalien/marginal[@index='1398' and @letter='78' and @page='206' and @line='28'] -opus/marginalien/marginal[@index='1399' and @letter='78' and @page='206' and @line='30'] -opus/marginalien/marginal[@index='139' and @letter='8' and @page='20' and @line='5'] -opus/marginalien/marginal[@index='13' and @letter='2' and @page='3' and @line='20'] -opus/marginalien/marginal[@index='1400' and @letter='78' and @page='206' and @line='34'] -opus/marginalien/marginal[@index='1401' and @letter='78' and @page='207' and @line='3'] -opus/marginalien/marginal[@index='1402' and @letter='78' and @page='207' and @line='7'] -opus/marginalien/marginal[@index='1403' and @letter='78' and @page='207' and @line='11'] -opus/marginalien/marginal[@index='1404' and @letter='78' and @page='207' and @line='12'] -opus/marginalien/marginal[@index='1405' and @letter='78' and @page='207' and @line='14'] -opus/marginalien/marginal[@index='1406' and @letter='78' and @page='207' and @line='15'] -opus/marginalien/marginal[@index='1407' and @letter='78' and @page='207' and @line='20'] -opus/marginalien/marginal[@index='1408' and @letter='79' and @page='207' and @line='25'] -opus/marginalien/marginal[@index='1409' and @letter='79' and @page='208' and @line='14'] -opus/marginalien/marginal[@index='140' and @letter='8' and @page='20' and @line='6'] -opus/marginalien/marginal[@index='1410' and @letter='81' and @page='209' and @line='17'] -opus/marginalien/marginal[@index='1411' and @letter='81' and @page='210' and @line='3'] -opus/marginalien/marginal[@index='1412' and @letter='81' and @page='210' and @line='7'] -opus/marginalien/marginal[@index='1413' and @letter='82' and @page='210' and @line='29'] -opus/marginalien/marginal[@index='1414' and @letter='82' and @page='210' and @line='33'] -opus/marginalien/marginal[@index='1415' and @letter='82' and @page='211' and @line='2'] -opus/marginalien/marginal[@index='1416' and @letter='82' and @page='211' and @line='21'] -opus/marginalien/marginal[@index='1417' and @letter='82' and @page='211' and @line='21'] -opus/marginalien/marginal[@index='1418' and @letter='83' and @page='212' and @line='9'] -opus/marginalien/marginal[@index='1419' and @letter='83' and @page='212' and @line='10'] -opus/marginalien/marginal[@index='141' and @letter='8' and @page='20' and @line='30'] -opus/marginalien/marginal[@index='1420' and @letter='83' and @page='212' and @line='11'] -opus/marginalien/marginal[@index='1421' and @letter='83' and @page='212' and @line='18'] -opus/marginalien/marginal[@index='1422' and @letter='83' and @page='212' and @line='21'] -opus/marginalien/marginal[@index='1423' and @letter='83' and @page='212' and @line='21'] -opus/marginalien/marginal[@index='1424' and @letter='84' and @page='213' and @line='10'] -opus/marginalien/marginal[@index='1425' and @letter='85' and @page='213' and @line='18'] -opus/marginalien/marginal[@index='1426' and @letter='85' and @page='213' and @line='19'] -opus/marginalien/marginal[@index='1427' and @letter='86' and @page='214' and @line='3'] -opus/marginalien/marginal[@index='1428' and @letter='86' and @page='214' and @line='5'] -opus/marginalien/marginal[@index='1429' and @letter='86' and @page='214' and @line='7'] -opus/marginalien/marginal[@index='142' and @letter='8' and @page='20' and @line='30'] -opus/marginalien/marginal[@index='1430' and @letter='86' and @page='214' and @line='9'] -opus/marginalien/marginal[@index='1431' and @letter='86' and @page='214' and @line='10'] -opus/marginalien/marginal[@index='1432' and @letter='86' and @page='214' and @line='13'] -opus/marginalien/marginal[@index='1433' and @letter='86' and @page='214' and @line='15'] -opus/marginalien/marginal[@index='1434' and @letter='86' and @page='214' and @line='17'] -opus/marginalien/marginal[@index='1435' and @letter='86' and @page='214' and @line='17'] -opus/marginalien/marginal[@index='1436' and @letter='86' and @page='214' and @line='18'] -opus/marginalien/marginal[@index='1437' and @letter='86' and @page='214' and @line='20'] -opus/marginalien/marginal[@index='1438' and @letter='86' and @page='214' and @line='21'] -opus/marginalien/marginal[@index='1439' and @letter='86' and @page='214' and @line='22'] -opus/marginalien/marginal[@index='143' and @letter='8' and @page='20' and @line='31'] -opus/marginalien/marginal[@index='1440' and @letter='86' and @page='214' and @line='23'] -opus/marginalien/marginal[@index='1441' and @letter='87' and @page='214' and @line='33'] -opus/marginalien/marginal[@index='1442' and @letter='87' and @page='215' and @line='1'] -opus/marginalien/marginal[@index='1443' and @letter='88' and @page='215' and @line='13'] -opus/marginalien/marginal[@index='1444' and @letter='88' and @page='215' and @line='17'] -opus/marginalien/marginal[@index='1445' and @letter='89' and @page='215' and @line='29'] -opus/marginalien/marginal[@index='1446' and @letter='90' and @page='216' and @line='3'] -opus/marginalien/marginal[@index='1447' and @letter='91' and @page='216' and @line='12'] -opus/marginalien/marginal[@index='1448' and @letter='93' and @page='217' and @line='9'] -opus/marginalien/marginal[@index='1449' and @letter='94' and @page='217' and @line='20'] -opus/marginalien/marginal[@index='144' and @letter='8' and @page='20' and @line='37'] -opus/marginalien/marginal[@index='1450' and @letter='94' and @page='217' and @line='22'] -opus/marginalien/marginal[@index='1451' and @letter='94' and @page='217' and @line='22'] -opus/marginalien/marginal[@index='1452' and @letter='95' and @page='218' and @line='10'] -opus/marginalien/marginal[@index='1453' and @letter='95' and @page='218' and @line='13'] -opus/marginalien/marginal[@index='1454' and @letter='96' and @page='218' and @line='22'] -opus/marginalien/marginal[@index='1455' and @letter='96' and @page='218' and @line='22'] -opus/marginalien/marginal[@index='1456' and @letter='96' and @page='218' and @line='23'] -opus/marginalien/marginal[@index='1457' and @letter='96' and @page='218' and @line='30'] -opus/marginalien/marginal[@index='1458' and @letter='97' and @page='219' and @line='6'] -opus/marginalien/marginal[@index='1459' and @letter='97' and @page='219' and @line='6'] -opus/marginalien/marginal[@index='145' and @letter='8' and @page='21' and @line='1'] -opus/marginalien/marginal[@index='1460' and @letter='97' and @page='219' and @line='8'] -opus/marginalien/marginal[@index='1461' and @letter='97' and @page='219' and @line='13'] -opus/marginalien/marginal[@index='1462' and @letter='97' and @page='219' and @line='17'] -opus/marginalien/marginal[@index='1463' and @letter='98' and @page='219' and @line='22'] -opus/marginalien/marginal[@index='1464' and @letter='98' and @page='219' and @line='23'] -opus/marginalien/marginal[@index='1465' and @letter='98' and @page='219' and @line='28'] -opus/marginalien/marginal[@index='1466' and @letter='98' and @page='219' and @line='28'] -opus/marginalien/marginal[@index='1467' and @letter='98' and @page='220' and @line='2'] -opus/marginalien/marginal[@index='1468' and @letter='98' and @page='220' and @line='7'] -opus/marginalien/marginal[@index='1469' and @letter='98' and @page='220' and @line='8'] -opus/marginalien/marginal[@index='146' and @letter='8' and @page='21' and @line='8'] -opus/marginalien/marginal[@index='1470' and @letter='99' and @page='220' and @line='14'] -opus/marginalien/marginal[@index='1471' and @letter='100' and @page='220' and @line='19'] -opus/marginalien/marginal[@index='1472' and @letter='100' and @page='220' and @line='23'] -opus/marginalien/marginal[@index='1473' and @letter='101' and @page='221' and @line='4'] -opus/marginalien/marginal[@index='1474' and @letter='101' and @page='221' and @line='6'] -opus/marginalien/marginal[@index='1475' and @letter='101' and @page='221' and @line='7'] -opus/marginalien/marginal[@index='1476' and @letter='101' and @page='221' and @line='10'] -opus/marginalien/marginal[@index='1477' and @letter='101' and @page='221' and @line='13'] -opus/marginalien/marginal[@index='1478' and @letter='101' and @page='221' and @line='31'] -opus/marginalien/marginal[@index='1479' and @letter='102' and @page='222' and @line='4'] -opus/marginalien/marginal[@index='147' and @letter='8' and @page='21' and @line='11'] -opus/marginalien/marginal[@index='1480' and @letter='102' and @page='222' and @line='8'] -opus/marginalien/marginal[@index='1481' and @letter='102' and @page='222' and @line='17'] -opus/marginalien/marginal[@index='1482' and @letter='103' and @page='222' and @line='27'] -opus/marginalien/marginal[@index='1483' and @letter='103' and @page='223' and @line='32'] -opus/marginalien/marginal[@index='1484' and @letter='103' and @page='223' and @line='33'] -opus/marginalien/marginal[@index='1485' and @letter='103' and @page='223' and @line='35'] -opus/marginalien/marginal[@index='1486' and @letter='103' and @page='224' and @line='9'] -opus/marginalien/marginal[@index='1487' and @letter='103' and @page='224' and @line='9'] -opus/marginalien/marginal[@index='1488' and @letter='103' and @page='224' and @line='11'] -opus/marginalien/marginal[@index='1489' and @letter='103' and @page='224' and @line='15'] -opus/marginalien/marginal[@index='148' and @letter='8' and @page='21' and @line='12'] -opus/marginalien/marginal[@index='1490' and @letter='103' and @page='224' and @line='15'] -opus/marginalien/marginal[@index='1491' and @letter='103' and @page='224' and @line='16'] -opus/marginalien/marginal[@index='1492' and @letter='103' and @page='224' and @line='16'] -opus/marginalien/marginal[@index='1493' and @letter='103' and @page='224' and @line='20'] -opus/marginalien/marginal[@index='1494' and @letter='103' and @page='224' and @line='23'] -opus/marginalien/marginal[@index='1495' and @letter='103' and @page='224' and @line='24'] -opus/marginalien/marginal[@index='1496' and @letter='103' and @page='224' and @line='32'] -opus/marginalien/marginal[@index='1497' and @letter='103' and @page='224' and @line='33'] -opus/marginalien/marginal[@index='1498' and @letter='103' and @page='224' and @line='34'] -opus/marginalien/marginal[@index='1499' and @letter='103' and @page='224' and @line='35'] -opus/marginalien/marginal[@index='149' and @letter='8' and @page='21' and @line='17'] -opus/marginalien/marginal[@index='14' and @letter='2' and @page='3' and @line='22'] -opus/marginalien/marginal[@index='1500' and @letter='103' and @page='224' and @line='35'] -opus/marginalien/marginal[@index='1501' and @letter='103' and @page='225' and @line='5'] -opus/marginalien/marginal[@index='1502' and @letter='103' and @page='225' and @line='8'] -opus/marginalien/marginal[@index='1503' and @letter='103' and @page='225' and @line='9'] -opus/marginalien/marginal[@index='1504' and @letter='103' and @page='225' and @line='9'] -opus/marginalien/marginal[@index='1505' and @letter='104' and @page='225' and @line='17'] -opus/marginalien/marginal[@index='1506' and @letter='104' and @page='225' and @line='18'] -opus/marginalien/marginal[@index='1507' and @letter='104' and @page='225' and @line='20'] -opus/marginalien/marginal[@index='1508' and @letter='104' and @page='225' and @line='28'] -opus/marginalien/marginal[@index='1509' and @letter='104' and @page='226' and @line='3'] -opus/marginalien/marginal[@index='150' and @letter='8' and @page='21' and @line='25'] -opus/marginalien/marginal[@index='1510' and @letter='104' and @page='226' and @line='4'] -opus/marginalien/marginal[@index='1511' and @letter='104' and @page='226' and @line='5'] -opus/marginalien/marginal[@index='1512' and @letter='104' and @page='226' and @line='6'] -opus/marginalien/marginal[@index='1513' and @letter='104' and @page='226' and @line='11'] -opus/marginalien/marginal[@index='1514' and @letter='104' and @page='226' and @line='14'] -opus/marginalien/marginal[@index='1515' and @letter='104' and @page='226' and @line='15'] -opus/marginalien/marginal[@index='1516' and @letter='104' and @page='226' and @line='15'] -opus/marginalien/marginal[@index='1517' and @letter='104' and @page='226' and @line='15'] -opus/marginalien/marginal[@index='1518' and @letter='104' and @page='226' and @line='15'] -opus/marginalien/marginal[@index='1519' and @letter='104' and @page='226' and @line='17'] -opus/marginalien/marginal[@index='151' and @letter='8' and @page='21' and @line='25'] -opus/marginalien/marginal[@index='1520' and @letter='104' and @page='226' and @line='25'] -opus/marginalien/marginal[@index='1521' and @letter='104' and @page='226' and @line='27'] -opus/marginalien/marginal[@index='1522' and @letter='104' and @page='226' and @line='27'] -opus/marginalien/marginal[@index='1523' and @letter='104' and @page='226' and @line='28'] -opus/marginalien/marginal[@index='1524' and @letter='105' and @page='227' and @line='3'] -opus/marginalien/marginal[@index='1525' and @letter='105' and @page='227' and @line='4'] -opus/marginalien/marginal[@index='1526' and @letter='105' and @page='227' and @line='8'] -opus/marginalien/marginal[@index='1527' and @letter='105' and @page='227' and @line='12'] -opus/marginalien/marginal[@index='1528' and @letter='105' and @page='227' and @line='18'] -opus/marginalien/marginal[@index='1529' and @letter='105' and @page='227' and @line='20'] -opus/marginalien/marginal[@index='152' and @letter='8' and @page='21' and @line='30'] -opus/marginalien/marginal[@index='1530' and @letter='105' and @page='227' and @line='20'] -opus/marginalien/marginal[@index='1531' and @letter='105' and @page='227' and @line='25'] -opus/marginalien/marginal[@index='1532' and @letter='105' and @page='227' and @line='27'] -opus/marginalien/marginal[@index='1533' and @letter='105' and @page='227' and @line='28'] -opus/marginalien/marginal[@index='1534' and @letter='105' and @page='227' and @line='30'] -opus/marginalien/marginal[@index='1535' and @letter='105' and @page='227' and @line='35'] -opus/marginalien/marginal[@index='1536' and @letter='105' and @page='228' and @line='26'] -opus/marginalien/marginal[@index='1537' and @letter='105' and @page='228' and @line='28'] -opus/marginalien/marginal[@index='1538' and @letter='105' and @page='228' and @line='28'] -opus/marginalien/marginal[@index='1539' and @letter='105' and @page='228' and @line='30'] -opus/marginalien/marginal[@index='153' and @letter='8' and @page='22' and @line='7'] -opus/marginalien/marginal[@index='1540' and @letter='105' and @page='228' and @line='31'] -opus/marginalien/marginal[@index='1541' and @letter='105' and @page='228' and @line='32'] -opus/marginalien/marginal[@index='1542' and @letter='105' and @page='228' and @line='33'] -opus/marginalien/marginal[@index='1543' and @letter='105' and @page='228' and @line='34'] -opus/marginalien/marginal[@index='1544' and @letter='105' and @page='229' and @line='1'] -opus/marginalien/marginal[@index='1545' and @letter='105' and @page='229' and @line='2'] -opus/marginalien/marginal[@index='1546' and @letter='105' and @page='229' and @line='3'] -opus/marginalien/marginal[@index='1547' and @letter='105' and @page='229' and @line='4'] -opus/marginalien/marginal[@index='1548' and @letter='105' and @page='229' and @line='4'] -opus/marginalien/marginal[@index='1549' and @letter='105' and @page='229' and @line='5'] -opus/marginalien/marginal[@index='154' and @letter='8' and @page='22' and @line='8'] -opus/marginalien/marginal[@index='1550' and @letter='105' and @page='229' and @line='6'] -opus/marginalien/marginal[@index='1551' and @letter='105' and @page='229' and @line='9'] -opus/marginalien/marginal[@index='1552' and @letter='105' and @page='229' and @line='10'] -opus/marginalien/marginal[@index='1553' and @letter='105' and @page='229' and @line='9'] -opus/marginalien/marginal[@index='1554' and @letter='105' and @page='229' and @line='19'] -opus/marginalien/marginal[@index='1556' and @letter='105' and @page='229' and @line='20'] -opus/marginalien/marginal[@index='1557' and @letter='105' and @page='229' and @line='21'] -opus/marginalien/marginal[@index='1558' and @letter='105' and @page='229' and @line='26'] -opus/marginalien/marginal[@index='1559' and @letter='105' and @page='229' and @line='29'] -opus/marginalien/marginal[@index='155' and @letter='9' and @page='22' and @line='17'] -opus/marginalien/marginal[@index='1560' and @letter='105' and @page='229' and @line='31'] -opus/marginalien/marginal[@index='1561' and @letter='105' and @page='230' and @line='6'] -opus/marginalien/marginal[@index='1562' and @letter='105' and @page='230' and @line='7'] -opus/marginalien/marginal[@index='1563' and @letter='105' and @page='230' and @line='8'] -opus/marginalien/marginal[@index='1564' and @letter='105' and @page='230' and @line='11'] -opus/marginalien/marginal[@index='1565' and @letter='105' and @page='230' and @line='13'] -opus/marginalien/marginal[@index='1566' and @letter='105' and @page='230' and @line='15'] -opus/marginalien/marginal[@index='1567' and @letter='105' and @page='230' and @line='16'] -opus/marginalien/marginal[@index='1568' and @letter='105' and @page='230' and @line='16'] -opus/marginalien/marginal[@index='1569' and @letter='105' and @page='230' and @line='22'] -opus/marginalien/marginal[@index='156' and @letter='9' and @page='22' and @line='28'] -opus/marginalien/marginal[@index='1570' and @letter='105' and @page='230' and @line='22'] -opus/marginalien/marginal[@index='1571' and @letter='105' and @page='230' and @line='23'] -opus/marginalien/marginal[@index='1572' and @letter='105' and @page='230' and @line='23'] -opus/marginalien/marginal[@index='1573' and @letter='105' and @page='230' and @line='25'] -opus/marginalien/marginal[@index='1574' and @letter='105' and @page='230' and @line='33'] -opus/marginalien/marginal[@index='1575' and @letter='105' and @page='230' and @line='36'] -opus/marginalien/marginal[@index='1576' and @letter='105' and @page='230' and @line='37'] -opus/marginalien/marginal[@index='1577' and @letter='105' and @page='231' and @line='2'] -opus/marginalien/marginal[@index='1578' and @letter='105' and @page='231' and @line='3'] -opus/marginalien/marginal[@index='1579' and @letter='105' and @page='231' and @line='4'] -opus/marginalien/marginal[@index='157' and @letter='9' and @page='22' and @line='29'] -opus/marginalien/marginal[@index='1580' and @letter='105' and @page='231' and @line='7'] -opus/marginalien/marginal[@index='1581' and @letter='105' and @page='231' and @line='8'] -opus/marginalien/marginal[@index='1582' and @letter='105' and @page='231' and @line='28'] -opus/marginalien/marginal[@index='1583' and @letter='105' and @page='232' and @line='1'] -opus/marginalien/marginal[@index='1584' and @letter='105' and @page='232' and @line='6'] -opus/marginalien/marginal[@index='1585' and @letter='105' and @page='232' and @line='6'] -opus/marginalien/marginal[@index='1586' and @letter='105' and @page='232' and @line='8'] -opus/marginalien/marginal[@index='1587' and @letter='105' and @page='232' and @line='9'] -opus/marginalien/marginal[@index='1588' and @letter='105' and @page='232' and @line='12'] -opus/marginalien/marginal[@index='1589' and @letter='105' and @page='232' and @line='13'] -opus/marginalien/marginal[@index='158' and @letter='9' and @page='23' and @line='9'] -opus/marginalien/marginal[@index='1590' and @letter='105' and @page='232' and @line='16'] -opus/marginalien/marginal[@index='1591' and @letter='105' and @page='232' and @line='18'] -opus/marginalien/marginal[@index='1592' and @letter='105' and @page='232' and @line='19'] -opus/marginalien/marginal[@index='1593' and @letter='105' and @page='232' and @line='21'] -opus/marginalien/marginal[@index='1594' and @letter='105' and @page='232' and @line='26'] -opus/marginalien/marginal[@index='1595' and @letter='105' and @page='232' and @line='29'] -opus/marginalien/marginal[@index='1596' and @letter='105' and @page='232' and @line='31'] -opus/marginalien/marginal[@index='1597' and @letter='106' and @page='233' and @line='2'] -opus/marginalien/marginal[@index='1598' and @letter='106' and @page='233' and @line='3'] -opus/marginalien/marginal[@index='1599' and @letter='106' and @page='233' and @line='6'] -opus/marginalien/marginal[@index='159' and @letter='9' and @page='23' and @line='9'] -opus/marginalien/marginal[@index='15' and @letter='2' and @page='3' and @line='36'] -opus/marginalien/marginal[@index='1600' and @letter='106' and @page='233' and @line='6'] -opus/marginalien/marginal[@index='1601' and @letter='106' and @page='233' and @line='8'] -opus/marginalien/marginal[@index='1602' and @letter='106' and @page='233' and @line='9'] -opus/marginalien/marginal[@index='1603' and @letter='106' and @page='233' and @line='11'] -opus/marginalien/marginal[@index='1604' and @letter='106' and @page='233' and @line='14'] -opus/marginalien/marginal[@index='1605' and @letter='106' and @page='233' and @line='18'] -opus/marginalien/marginal[@index='1606' and @letter='106' and @page='233' and @line='18'] -opus/marginalien/marginal[@index='1607' and @letter='106' and @page='233' and @line='20'] -opus/marginalien/marginal[@index='1608' and @letter='106' and @page='233' and @line='21'] -opus/marginalien/marginal[@index='1609' and @letter='106' and @page='233' and @line='25'] -opus/marginalien/marginal[@index='160' and @letter='9' and @page='23' and @line='9'] -opus/marginalien/marginal[@index='1610' and @letter='106' and @page='233' and @line='27'] -opus/marginalien/marginal[@index='1611' and @letter='106' and @page='234' and @line='1'] -opus/marginalien/marginal[@index='1612' and @letter='106' and @page='234' and @line='2'] -opus/marginalien/marginal[@index='1613' and @letter='106' and @page='234' and @line='3'] -opus/marginalien/marginal[@index='1614' and @letter='106' and @page='234' and @line='4'] -opus/marginalien/marginal[@index='1615' and @letter='106' and @page='234' and @line='5'] -opus/marginalien/marginal[@index='1616' and @letter='106' and @page='234' and @line='13'] -opus/marginalien/marginal[@index='1617' and @letter='106' and @page='234' and @line='13'] -opus/marginalien/marginal[@index='1618' and @letter='106' and @page='234' and @line='15'] -opus/marginalien/marginal[@index='161' and @letter='9' and @page='23' and @line='10'] -opus/marginalien/marginal[@index='1620' and @letter='106' and @page='234' and @line='17'] -opus/marginalien/marginal[@index='1621' and @letter='106' and @page='234' and @line='17'] -opus/marginalien/marginal[@index='1622' and @letter='106' and @page='234' and @line='19'] -opus/marginalien/marginal[@index='1623' and @letter='106' and @page='234' and @line='20'] -opus/marginalien/marginal[@index='1624' and @letter='106' and @page='234' and @line='23'] -opus/marginalien/marginal[@index='1625' and @letter='106' and @page='234' and @line='26'] -opus/marginalien/marginal[@index='1626' and @letter='106' and @page='234' and @line='27'] -opus/marginalien/marginal[@index='1627' and @letter='107' and @page='234' and @line='29'] -opus/marginalien/marginal[@index='1628' and @letter='107' and @page='235' and @line='18'] -opus/marginalien/marginal[@index='1629' and @letter='107' and @page='236' and @line='17'] -opus/marginalien/marginal[@index='162' and @letter='9' and @page='23' and @line='11'] -opus/marginalien/marginal[@index='1630' and @letter='108' and @page='237' and @line='24'] -opus/marginalien/marginal[@index='1631' and @letter='108' and @page='239' and @line='20'] -opus/marginalien/marginal[@index='1632' and @letter='109' and @page='240' and @line='13'] -opus/marginalien/marginal[@index='1634' and @letter='110' and @page='242' and @line='17'] -opus/marginalien/marginal[@index='1635' and @letter='110' and @page='242' and @line='28'] -opus/marginalien/marginal[@index='1636' and @letter='110' and @page='243' and @line='4'] -opus/marginalien/marginal[@index='1637' and @letter='110' and @page='243' and @line='8'] -opus/marginalien/marginal[@index='1638' and @letter='110' and @page='243' and @line='10'] -opus/marginalien/marginal[@index='1639' and @letter='110' and @page='243' and @line='14'] -opus/marginalien/marginal[@index='163' and @letter='9' and @page='23' and @line='12'] -opus/marginalien/marginal[@index='1640' and @letter='110' and @page='243' and @line='15'] -opus/marginalien/marginal[@index='1641' and @letter='110' and @page='243' and @line='16'] -opus/marginalien/marginal[@index='1642' and @letter='110' and @page='243' and @line='18'] -opus/marginalien/marginal[@index='1643' and @letter='110' and @page='243' and @line='20'] -opus/marginalien/marginal[@index='1644' and @letter='110' and @page='243' and @line='21'] -opus/marginalien/marginal[@index='1645' and @letter='110' and @page='243' and @line='22'] -opus/marginalien/marginal[@index='1646' and @letter='110' and @page='243' and @line='24'] -opus/marginalien/marginal[@index='1647' and @letter='110' and @page='243' and @line='29'] -opus/marginalien/marginal[@index='1648' and @letter='110' and @page='243' and @line='32'] -opus/marginalien/marginal[@index='1649' and @letter='110' and @page='243' and @line='33'] -opus/marginalien/marginal[@index='164' and @letter='9' and @page='23' and @line='12'] -opus/marginalien/marginal[@index='1650' and @letter='110' and @page='243' and @line='34'] -opus/marginalien/marginal[@index='1651' and @letter='110' and @page='243' and @line='37'] -opus/marginalien/marginal[@index='1652' and @letter='110' and @page='244' and @line='1'] -opus/marginalien/marginal[@index='1653' and @letter='110' and @page='244' and @line='5'] -opus/marginalien/marginal[@index='1654' and @letter='111' and @page='244' and @line='22'] -opus/marginalien/marginal[@index='1655' and @letter='111' and @page='244' and @line='26'] -opus/marginalien/marginal[@index='1656' and @letter='111' and @page='245' and @line='5'] -opus/marginalien/marginal[@index='1657' and @letter='111' and @page='245' and @line='7'] -opus/marginalien/marginal[@index='1658' and @letter='111' and @page='245' and @line='8'] -opus/marginalien/marginal[@index='1659' and @letter='111' and @page='245' and @line='15'] -opus/marginalien/marginal[@index='1660' and @letter='112' and @page='245' and @line='21'] -opus/marginalien/marginal[@index='1661' and @letter='112' and @page='245' and @line='21'] -opus/marginalien/marginal[@index='1662' and @letter='112' and @page='245' and @line='23'] -opus/marginalien/marginal[@index='1663' and @letter='112' and @page='245' and @line='24'] -opus/marginalien/marginal[@index='1664' and @letter='112' and @page='245' and @line='28'] -opus/marginalien/marginal[@index='1665' and @letter='112' and @page='245' and @line='30'] -opus/marginalien/marginal[@index='1666' and @letter='112' and @page='245' and @line='33'] -opus/marginalien/marginal[@index='1667' and @letter='112' and @page='245' and @line='35'] -opus/marginalien/marginal[@index='1668' and @letter='112' and @page='246' and @line='4'] -opus/marginalien/marginal[@index='1669' and @letter='112' and @page='246' and @line='7'] -opus/marginalien/marginal[@index='166' and @letter='9' and @page='23' and @line='13'] -opus/marginalien/marginal[@index='1670' and @letter='112' and @page='246' and @line='10'] -opus/marginalien/marginal[@index='1671' and @letter='112' and @page='246' and @line='14'] -opus/marginalien/marginal[@index='1672' and @letter='112' and @page='246' and @line='17'] -opus/marginalien/marginal[@index='1673' and @letter='112' and @page='246' and @line='28'] -opus/marginalien/marginal[@index='1674' and @letter='112' and @page='246' and @line='31'] -opus/marginalien/marginal[@index='1675' and @letter='112' and @page='246' and @line='31'] -opus/marginalien/marginal[@index='1676' and @letter='112' and @page='247' and @line='2'] -opus/marginalien/marginal[@index='1677' and @letter='112' and @page='247' and @line='8'] -opus/marginalien/marginal[@index='1678' and @letter='113' and @page='247' and @line='20'] -opus/marginalien/marginal[@index='1679' and @letter='113' and @page='247' and @line='23'] -opus/marginalien/marginal[@index='167' and @letter='9' and @page='23' and @line='14'] -opus/marginalien/marginal[@index='1680' and @letter='113' and @page='248' and @line='17'] -opus/marginalien/marginal[@index='1681' and @letter='113' and @page='249' and @line='4'] -opus/marginalien/marginal[@index='1682' and @letter='113' and @page='249' and @line='11'] -opus/marginalien/marginal[@index='1683' and @letter='114' and @page='249' and @line='23'] -opus/marginalien/marginal[@index='1684' and @letter='114' and @page='249' and @line='33'] -opus/marginalien/marginal[@index='1685' and @letter='114' and @page='250' and @line='11'] -opus/marginalien/marginal[@index='1686' and @letter='114' and @page='250' and @line='18'] -opus/marginalien/marginal[@index='1687' and @letter='114' and @page='250' and @line='19'] -opus/marginalien/marginal[@index='1688' and @letter='115' and @page='250' and @line='24'] -opus/marginalien/marginal[@index='1689' and @letter='115' and @page='250' and @line='28'] -opus/marginalien/marginal[@index='168' and @letter='10' and @page='24' and @line='2'] -opus/marginalien/marginal[@index='1690' and @letter='116' and @page='253' and @line='25'] -opus/marginalien/marginal[@index='1691' and @letter='116' and @page='253' and @line='33'] -opus/marginalien/marginal[@index='1692' and @letter='116' and @page='253' and @line='36'] -opus/marginalien/marginal[@index='1693' and @letter='117' and @page='254' and @line='12'] -opus/marginalien/marginal[@index='1694' and @letter='117' and @page='254' and @line='12'] -opus/marginalien/marginal[@index='1695' and @letter='117' and @page='254' and @line='15'] -opus/marginalien/marginal[@index='1696' and @letter='117' and @page='254' and @line='16'] -opus/marginalien/marginal[@index='1697' and @letter='117' and @page='254' and @line='17'] -opus/marginalien/marginal[@index='1698' and @letter='117' and @page='254' and @line='26'] -opus/marginalien/marginal[@index='1699' and @letter='117' and @page='254' and @line='36'] -opus/marginalien/marginal[@index='169' and @letter='10' and @page='24' and @line='7'] -opus/marginalien/marginal[@index='16' and @letter='2' and @page='4' and @line='1'] -opus/marginalien/marginal[@index='1700' and @letter='117' and @page='255' and @line='7'] -opus/marginalien/marginal[@index='1701' and @letter='117' and @page='255' and @line='11'] -opus/marginalien/marginal[@index='1702' and @letter='118' and @page='255' and @line='17'] -opus/marginalien/marginal[@index='1703' and @letter='118' and @page='255' and @line='20'] -opus/marginalien/marginal[@index='1704' and @letter='118' and @page='255' and @line='33'] -opus/marginalien/marginal[@index='1705' and @letter='118' and @page='257' and @line='3'] -opus/marginalien/marginal[@index='1706' and @letter='118' and @page='257' and @line='13'] -opus/marginalien/marginal[@index='1707' and @letter='118' and @page='257' and @line='17'] -opus/marginalien/marginal[@index='1708' and @letter='118' and @page='257' and @line='18'] -opus/marginalien/marginal[@index='1709' and @letter='119' and @page='257' and @line='26'] -opus/marginalien/marginal[@index='170' and @letter='10' and @page='24' and @line='11'] -opus/marginalien/marginal[@index='1710' and @letter='119' and @page='257' and @line='28'] -opus/marginalien/marginal[@index='1711' and @letter='119' and @page='257' and @line='31'] -opus/marginalien/marginal[@index='1712' and @letter='119' and @page='257' and @line='32'] -opus/marginalien/marginal[@index='1713' and @letter='119' and @page='258' and @line='4'] -opus/marginalien/marginal[@index='1714' and @letter='119' and @page='258' and @line='14'] -opus/marginalien/marginal[@index='1715' and @letter='119' and @page='259' and @line='4'] -opus/marginalien/marginal[@index='1716' and @letter='119' and @page='259' and @line='5'] -opus/marginalien/marginal[@index='1717' and @letter='119' and @page='259' and @line='13'] -opus/marginalien/marginal[@index='1718' and @letter='119' and @page='259' and @line='33'] -opus/marginalien/marginal[@index='1719' and @letter='119' and @page='260' and @line='1'] -opus/marginalien/marginal[@index='171' and @letter='10' and @page='24' and @line='16'] -opus/marginalien/marginal[@index='1720' and @letter='119' and @page='260' and @line='7'] -opus/marginalien/marginal[@index='1721' and @letter='120' and @page='260' and @line='23'] -opus/marginalien/marginal[@index='1722' and @letter='120' and @page='261' and @line='5'] -opus/marginalien/marginal[@index='1723' and @letter='120' and @page='261' and @line='6'] -opus/marginalien/marginal[@index='1724' and @letter='120' and @page='261' and @line='21'] -opus/marginalien/marginal[@index='1725' and @letter='120' and @page='262' and @line='2'] -opus/marginalien/marginal[@index='1726' and @letter='121' and @page='262' and @line='14'] -opus/marginalien/marginal[@index='1727' and @letter='121' and @page='263' and @line='2'] -opus/marginalien/marginal[@index='1728' and @letter='122' and @page='263' and @line='19'] -opus/marginalien/marginal[@index='1729' and @letter='122' and @page='263' and @line='20'] -opus/marginalien/marginal[@index='172' and @letter='10' and @page='24' and @line='16'] -opus/marginalien/marginal[@index='1730' and @letter='122' and @page='263' and @line='21'] -opus/marginalien/marginal[@index='1731' and @letter='122' and @page='263' and @line='23'] -opus/marginalien/marginal[@index='1732' and @letter='122' and @page='263' and @line='24'] -opus/marginalien/marginal[@index='1733' and @letter='122' and @page='263' and @line='28'] -opus/marginalien/marginal[@index='1734' and @letter='122' and @page='263' and @line='30'] -opus/marginalien/marginal[@index='1735' and @letter='122' and @page='264' and @line='9'] -opus/marginalien/marginal[@index='1736' and @letter='122' and @page='264' and @line='10'] -opus/marginalien/marginal[@index='1737' and @letter='122' and @page='264' and @line='18'] -opus/marginalien/marginal[@index='1738' and @letter='122' and @page='264' and @line='21'] -opus/marginalien/marginal[@index='1739' and @letter='122' and @page='264' and @line='27'] -opus/marginalien/marginal[@index='173' and @letter='10' and @page='24' and @line='17'] -opus/marginalien/marginal[@index='1740' and @letter='123' and @page='264' and @line='37'] -opus/marginalien/marginal[@index='1741' and @letter='123' and @page='265' and @line='5'] -opus/marginalien/marginal[@index='1742' and @letter='123' and @page='265' and @line='6'] -opus/marginalien/marginal[@index='1743' and @letter='123' and @page='265' and @line='8'] -opus/marginalien/marginal[@index='1744' and @letter='123' and @page='265' and @line='10'] -opus/marginalien/marginal[@index='1745' and @letter='123' and @page='265' and @line='12'] -opus/marginalien/marginal[@index='1746' and @letter='123' and @page='265' and @line='13'] -opus/marginalien/marginal[@index='1747' and @letter='123' and @page='265' and @line='17'] -opus/marginalien/marginal[@index='1748' and @letter='123' and @page='265' and @line='18'] -opus/marginalien/marginal[@index='1749' and @letter='123' and @page='265' and @line='20'] -opus/marginalien/marginal[@index='174' and @letter='10' and @page='24' and @line='21'] -opus/marginalien/marginal[@index='1750' and @letter='123' and @page='265' and @line='28'] -opus/marginalien/marginal[@index='1751' and @letter='123' and @page='265' and @line='30'] -opus/marginalien/marginal[@index='1752' and @letter='123' and @page='265' and @line='32'] -opus/marginalien/marginal[@index='1753' and @letter='123' and @page='266' and @line='8'] -opus/marginalien/marginal[@index='1754' and @letter='123' and @page='266' and @line='13'] -opus/marginalien/marginal[@index='1755' and @letter='124' and @page='266' and @line='18'] -opus/marginalien/marginal[@index='1756' and @letter='124' and @page='266' and @line='24'] -opus/marginalien/marginal[@index='1757' and @letter='124' and @page='267' and @line='6'] -opus/marginalien/marginal[@index='1758' and @letter='124' and @page='267' and @line='12'] -opus/marginalien/marginal[@index='1759' and @letter='124' and @page='267' and @line='14'] -opus/marginalien/marginal[@index='175' and @letter='10' and @page='24' and @line='21'] -opus/marginalien/marginal[@index='1760' and @letter='124' and @page='267' and @line='19'] -opus/marginalien/marginal[@index='1761' and @letter='124' and @page='267' and @line='21'] -opus/marginalien/marginal[@index='1763' and @letter='125' and @page='267' and @line='27'] -opus/marginalien/marginal[@index='1764' and @letter='125' and @page='269' and @line='5'] -opus/marginalien/marginal[@index='1766' and @letter='126' and @page='270' and @line='2'] -opus/marginalien/marginal[@index='1767' and @letter='127' and @page='272' and @line='6'] -opus/marginalien/marginal[@index='1768' and @letter='127' and @page='272' and @line='15'] -opus/marginalien/marginal[@index='1769' and @letter='127' and @page='274' and @line='1'] -opus/marginalien/marginal[@index='176' and @letter='10' and @page='24' and @line='22'] -opus/marginalien/marginal[@index='1770' and @letter='128' and @page='274' and @line='10'] -opus/marginalien/marginal[@index='1771' and @letter='128' and @page='274' and @line='11'] -opus/marginalien/marginal[@index='1772' and @letter='128' and @page='274' and @line='15'] -opus/marginalien/marginal[@index='1773' and @letter='128' and @page='274' and @line='27'] -opus/marginalien/marginal[@index='1774' and @letter='128' and @page='274' and @line='28'] -opus/marginalien/marginal[@index='1775' and @letter='128' and @page='274' and @line='30'] -opus/marginalien/marginal[@index='1776' and @letter='128' and @page='275' and @line='1'] -opus/marginalien/marginal[@index='1777' and @letter='128' and @page='275' and @line='13'] -opus/marginalien/marginal[@index='1778' and @letter='128' and @page='275' and @line='16'] -opus/marginalien/marginal[@index='1779' and @letter='128' and @page='275' and @line='18'] -opus/marginalien/marginal[@index='177' and @letter='10' and @page='24' and @line='22'] -opus/marginalien/marginal[@index='1780' and @letter='128' and @page='275' and @line='20'] -opus/marginalien/marginal[@index='1781' and @letter='128' and @page='275' and @line='25'] -opus/marginalien/marginal[@index='1782' and @letter='128' and @page='275' and @line='27'] -opus/marginalien/marginal[@index='1783' and @letter='128' and @page='275' and @line='30'] -opus/marginalien/marginal[@index='1784' and @letter='128' and @page='275' and @line='31'] -opus/marginalien/marginal[@index='1785' and @letter='128' and @page='275' and @line='33'] -opus/marginalien/marginal[@index='1787' and @letter='128' and @page='276' and @line='1'] -opus/marginalien/marginal[@index='1788' and @letter='128' and @page='276' and @line='1'] -opus/marginalien/marginal[@index='1789' and @letter='128' and @page='276' and @line='7'] -opus/marginalien/marginal[@index='178' and @letter='10' and @page='24' and @line='31'] -opus/marginalien/marginal[@index='1790' and @letter='128' and @page='276' and @line='8'] -opus/marginalien/marginal[@index='1791' and @letter='128' and @page='276' and @line='17'] -opus/marginalien/marginal[@index='1792' and @letter='128' and @page='276' and @line='21'] -opus/marginalien/marginal[@index='1793' and @letter='128' and @page='276' and @line='22'] -opus/marginalien/marginal[@index='1794' and @letter='128' and @page='276' and @line='23'] -opus/marginalien/marginal[@index='1795' and @letter='128' and @page='276' and @line='33'] -opus/marginalien/marginal[@index='1796' and @letter='128' and @page='276' and @line='36'] -opus/marginalien/marginal[@index='1797' and @letter='128' and @page='277' and @line='4'] -opus/marginalien/marginal[@index='1798' and @letter='128' and @page='277' and @line='21'] -opus/marginalien/marginal[@index='1799' and @letter='128' and @page='277' and @line='31'] -opus/marginalien/marginal[@index='179' and @letter='10' and @page='25' and @line='2'] -opus/marginalien/marginal[@index='17' and @letter='2' and @page='4' and @line='2'] -opus/marginalien/marginal[@index='1800' and @letter='128' and @page='278' and @line='11'] -opus/marginalien/marginal[@index='1801' and @letter='128' and @page='278' and @line='22'] -opus/marginalien/marginal[@index='1802' and @letter='128' and @page='278' and @line='23'] -opus/marginalien/marginal[@index='1803' and @letter='128' and @page='278' and @line='24'] -opus/marginalien/marginal[@index='1804' and @letter='128' and @page='278' and @line='25'] -opus/marginalien/marginal[@index='1805' and @letter='129' and @page='278' and @line='29'] -opus/marginalien/marginal[@index='1806' and @letter='129' and @page='278' and @line='32'] -opus/marginalien/marginal[@index='1807' and @letter='129' and @page='279' and @line='5'] -opus/marginalien/marginal[@index='1808' and @letter='129' and @page='279' and @line='7'] -opus/marginalien/marginal[@index='1809' and @letter='129' and @page='279' and @line='18'] -opus/marginalien/marginal[@index='180' and @letter='10' and @page='25' and @line='9'] -opus/marginalien/marginal[@index='1810' and @letter='129' and @page='279' and @line='20'] -opus/marginalien/marginal[@index='1811' and @letter='129' and @page='279' and @line='20'] -opus/marginalien/marginal[@index='1812' and @letter='129' and @page='279' and @line='21'] -opus/marginalien/marginal[@index='1813' and @letter='129' and @page='279' and @line='21'] -opus/marginalien/marginal[@index='1814' and @letter='129' and @page='279' and @line='24'] -opus/marginalien/marginal[@index='1815' and @letter='129' and @page='279' and @line='33'] -opus/marginalien/marginal[@index='1816' and @letter='129' and @page='280' and @line='9'] -opus/marginalien/marginal[@index='1817' and @letter='129' and @page='280' and @line='10'] -opus/marginalien/marginal[@index='1818' and @letter='129' and @page='280' and @line='11'] -opus/marginalien/marginal[@index='1819' and @letter='130' and @page='281' and @line='2'] -opus/marginalien/marginal[@index='181' and @letter='10' and @page='25' and @line='10'] -opus/marginalien/marginal[@index='1820' and @letter='130' and @page='281' and @line='5'] -opus/marginalien/marginal[@index='1821' and @letter='130' and @page='281' and @line='8'] -opus/marginalien/marginal[@index='1822' and @letter='130' and @page='281' and @line='9'] -opus/marginalien/marginal[@index='1823' and @letter='130' and @page='281' and @line='12'] -opus/marginalien/marginal[@index='1824' and @letter='130' and @page='281' and @line='13'] -opus/marginalien/marginal[@index='1825' and @letter='130' and @page='281' and @line='19'] -opus/marginalien/marginal[@index='1826' and @letter='130' and @page='281' and @line='21'] -opus/marginalien/marginal[@index='1827' and @letter='130' and @page='281' and @line='22'] -opus/marginalien/marginal[@index='1828' and @letter='130' and @page='281' and @line='24'] -opus/marginalien/marginal[@index='1829' and @letter='130' and @page='281' and @line='26'] -opus/marginalien/marginal[@index='182' and @letter='10' and @page='25' and @line='12'] -opus/marginalien/marginal[@index='1830' and @letter='130' and @page='281' and @line='27'] -opus/marginalien/marginal[@index='1831' and @letter='130' and @page='281' and @line='33'] -opus/marginalien/marginal[@index='1832' and @letter='130' and @page='281' and @line='34'] -opus/marginalien/marginal[@index='1833' and @letter='130' and @page='281' and @line='36'] -opus/marginalien/marginal[@index='1834' and @letter='130' and @page='282' and @line='1'] -opus/marginalien/marginal[@index='1835' and @letter='130' and @page='282' and @line='3'] -opus/marginalien/marginal[@index='1836' and @letter='131' and @page='282' and @line='22'] -opus/marginalien/marginal[@index='1837' and @letter='131' and @page='282' and @line='25'] -opus/marginalien/marginal[@index='1838' and @letter='131' and @page='282' and @line='29'] -opus/marginalien/marginal[@index='1839' and @letter='131' and @page='282' and @line='31'] -opus/marginalien/marginal[@index='183' and @letter='10' and @page='25' and @line='12'] -opus/marginalien/marginal[@index='1840' and @letter='131' and @page='282' and @line='32'] -opus/marginalien/marginal[@index='1841' and @letter='131' and @page='283' and @line='1'] -opus/marginalien/marginal[@index='1842' and @letter='131' and @page='283' and @line='2'] -opus/marginalien/marginal[@index='1843' and @letter='131' and @page='283' and @line='3'] -opus/marginalien/marginal[@index='1844' and @letter='131' and @page='283' and @line='4'] -opus/marginalien/marginal[@index='1845' and @letter='131' and @page='283' and @line='6'] -opus/marginalien/marginal[@index='1846' and @letter='131' and @page='283' and @line='7'] -opus/marginalien/marginal[@index='1847' and @letter='131' and @page='283' and @line='16'] -opus/marginalien/marginal[@index='1848' and @letter='131' and @page='283' and @line='17'] -opus/marginalien/marginal[@index='1849' and @letter='131' and @page='283' and @line='21'] -opus/marginalien/marginal[@index='184' and @letter='10' and @page='25' and @line='18'] -opus/marginalien/marginal[@index='1850' and @letter='131' and @page='283' and @line='26'] -opus/marginalien/marginal[@index='1851' and @letter='131' and @page='284' and @line='1'] -opus/marginalien/marginal[@index='1852' and @letter='131' and @page='284' and @line='2'] -opus/marginalien/marginal[@index='1853' and @letter='131' and @page='284' and @line='6'] -opus/marginalien/marginal[@index='1854' and @letter='131' and @page='284' and @line='13'] -opus/marginalien/marginal[@index='1855' and @letter='132' and @page='284' and @line='29'] -opus/marginalien/marginal[@index='1856' and @letter='132' and @page='285' and @line='2'] -opus/marginalien/marginal[@index='1857' and @letter='132' and @page='285' and @line='2'] -opus/marginalien/marginal[@index='1858' and @letter='132' and @page='285' and @line='8'] -opus/marginalien/marginal[@index='1859' and @letter='132' and @page='285' and @line='12'] -opus/marginalien/marginal[@index='185' and @letter='10' and @page='25' and @line='19'] -opus/marginalien/marginal[@index='1860' and @letter='132' and @page='285' and @line='17'] -opus/marginalien/marginal[@index='1861' and @letter='132' and @page='285' and @line='23'] -opus/marginalien/marginal[@index='1862' and @letter='132' and @page='285' and @line='32'] -opus/marginalien/marginal[@index='1863' and @letter='132' and @page='285' and @line='34'] -opus/marginalien/marginal[@index='1864' and @letter='132' and @page='286' and @line='1'] -opus/marginalien/marginal[@index='1865' and @letter='133' and @page='286' and @line='27'] -opus/marginalien/marginal[@index='1866' and @letter='133' and @page='286' and @line='29'] -opus/marginalien/marginal[@index='1867' and @letter='133' and @page='286' and @line='34'] -opus/marginalien/marginal[@index='1868' and @letter='133' and @page='286' and @line='37'] -opus/marginalien/marginal[@index='1869' and @letter='134' and @page='287' and @line='12'] -opus/marginalien/marginal[@index='186' and @letter='10' and @page='25' and @line='23'] -opus/marginalien/marginal[@index='1870' and @letter='134' and @page='287' and @line='21'] -opus/marginalien/marginal[@index='1871' and @letter='134' and @page='287' and @line='22'] -opus/marginalien/marginal[@index='1872' and @letter='134' and @page='287' and @line='23'] -opus/marginalien/marginal[@index='1873' and @letter='134' and @page='287' and @line='24'] -opus/marginalien/marginal[@index='1874' and @letter='134' and @page='287' and @line='25'] -opus/marginalien/marginal[@index='1875' and @letter='134' and @page='287' and @line='31'] -opus/marginalien/marginal[@index='1876' and @letter='134' and @page='287' and @line='33'] -opus/marginalien/marginal[@index='1877' and @letter='134' and @page='288' and @line='1'] -opus/marginalien/marginal[@index='1878' and @letter='134' and @page='288' and @line='3'] -opus/marginalien/marginal[@index='1879' and @letter='134' and @page='288' and @line='8'] -opus/marginalien/marginal[@index='187' and @letter='10' and @page='25' and @line='25'] -opus/marginalien/marginal[@index='1880' and @letter='134' and @page='288' and @line='10'] -opus/marginalien/marginal[@index='1881' and @letter='134' and @page='288' and @line='18'] -opus/marginalien/marginal[@index='1882' and @letter='134' and @page='289' and @line='8'] -opus/marginalien/marginal[@index='1883' and @letter='134' and @page='289' and @line='9'] -opus/marginalien/marginal[@index='1884' and @letter='134' and @page='289' and @line='23'] -opus/marginalien/marginal[@index='1885' and @letter='135' and @page='290' and @line='2'] -opus/marginalien/marginal[@index='1886' and @letter='135' and @page='290' and @line='36'] -opus/marginalien/marginal[@index='1887' and @letter='136' and @page='291' and @line='3'] -opus/marginalien/marginal[@index='1888' and @letter='136' and @page='291' and @line='3'] -opus/marginalien/marginal[@index='1889' and @letter='136' and @page='291' and @line='4'] -opus/marginalien/marginal[@index='188' and @letter='10' and @page='25' and @line='27'] -opus/marginalien/marginal[@index='1890' and @letter='136' and @page='291' and @line='13'] -opus/marginalien/marginal[@index='1891' and @letter='136' and @page='291' and @line='14'] -opus/marginalien/marginal[@index='1892' and @letter='136' and @page='291' and @line='21'] -opus/marginalien/marginal[@index='1893' and @letter='136' and @page='291' and @line='30'] -opus/marginalien/marginal[@index='1894' and @letter='136' and @page='291' and @line='32'] -opus/marginalien/marginal[@index='1895' and @letter='136' and @page='291' and @line='33'] -opus/marginalien/marginal[@index='1896' and @letter='136' and @page='292' and @line='2'] -opus/marginalien/marginal[@index='1897' and @letter='136' and @page='292' and @line='3'] -opus/marginalien/marginal[@index='1898' and @letter='136' and @page='292' and @line='6'] -opus/marginalien/marginal[@index='1899' and @letter='136' and @page='292' and @line='14'] -opus/marginalien/marginal[@index='189' and @letter='10' and @page='25' and @line='35'] -opus/marginalien/marginal[@index='18' and @letter='2' and @page='4' and @line='6'] -opus/marginalien/marginal[@index='1900' and @letter='136' and @page='292' and @line='20'] -opus/marginalien/marginal[@index='1901' and @letter='136' and @page='292' and @line='21'] -opus/marginalien/marginal[@index='1902' and @letter='136' and @page='292' and @line='25'] -opus/marginalien/marginal[@index='1903' and @letter='136' and @page='292' and @line='27'] -opus/marginalien/marginal[@index='1904' and @letter='136' and @page='293' and @line='1'] -opus/marginalien/marginal[@index='1905' and @letter='136' and @page='293' and @line='2'] -opus/marginalien/marginal[@index='1906' and @letter='136' and @page='293' and @line='5'] -opus/marginalien/marginal[@index='1907' and @letter='136' and @page='293' and @line='14'] -opus/marginalien/marginal[@index='1908' and @letter='136' and @page='293' and @line='16'] -opus/marginalien/marginal[@index='1909' and @letter='136' and @page='293' and @line='33'] -opus/marginalien/marginal[@index='190' and @letter='10' and @page='26' and @line='9'] -opus/marginalien/marginal[@index='1910' and @letter='136' and @page='294' and @line='1'] -opus/marginalien/marginal[@index='1911' and @letter='136' and @page='294' and @line='5'] -opus/marginalien/marginal[@index='1912' and @letter='136' and @page='294' and @line='7'] -opus/marginalien/marginal[@index='1913' and @letter='136' and @page='294' and @line='14'] -opus/marginalien/marginal[@index='1914' and @letter='136' and @page='294' and @line='16'] -opus/marginalien/marginal[@index='1915' and @letter='136' and @page='294' and @line='18'] -opus/marginalien/marginal[@index='1916' and @letter='136' and @page='294' and @line='18'] -opus/marginalien/marginal[@index='1917' and @letter='136' and @page='294' and @line='22'] -opus/marginalien/marginal[@index='1918' and @letter='136' and @page='294' and @line='26'] -opus/marginalien/marginal[@index='1919' and @letter='136' and @page='294' and @line='27'] -opus/marginalien/marginal[@index='191' and @letter='10' and @page='26' and @line='10'] -opus/marginalien/marginal[@index='1920' and @letter='136' and @page='294' and @line='30'] -opus/marginalien/marginal[@index='1921' and @letter='136' and @page='294' and @line='35'] -opus/marginalien/marginal[@index='1922' and @letter='136' and @page='295' and @line='3'] -opus/marginalien/marginal[@index='1923' and @letter='136' and @page='295' and @line='5'] -opus/marginalien/marginal[@index='1924' and @letter='136' and @page='295' and @line='6'] -opus/marginalien/marginal[@index='1925' and @letter='136' and @page='295' and @line='7'] -opus/marginalien/marginal[@index='1926' and @letter='136' and @page='295' and @line='9'] -opus/marginalien/marginal[@index='1927' and @letter='136' and @page='295' and @line='17'] -opus/marginalien/marginal[@index='1928' and @letter='136' and @page='295' and @line='20'] -opus/marginalien/marginal[@index='1929' and @letter='136' and @page='295' and @line='20'] -opus/marginalien/marginal[@index='192' and @letter='10' and @page='26' and @line='17'] -opus/marginalien/marginal[@index='1930' and @letter='136' and @page='295' and @line='22'] -opus/marginalien/marginal[@index='1931' and @letter='136' and @page='295' and @line='22'] -opus/marginalien/marginal[@index='1932' and @letter='136' and @page='295' and @line='23'] -opus/marginalien/marginal[@index='1933' and @letter='136' and @page='295' and @line='26'] -opus/marginalien/marginal[@index='1934' and @letter='136' and @page='295' and @line='28'] -opus/marginalien/marginal[@index='1935' and @letter='136' and @page='296' and @line='4'] -opus/marginalien/marginal[@index='1936' and @letter='137' and @page='296' and @line='9'] -opus/marginalien/marginal[@index='1937' and @letter='137' and @page='296' and @line='12'] -opus/marginalien/marginal[@index='1938' and @letter='137' and @page='296' and @line='15'] -opus/marginalien/marginal[@index='1939' and @letter='137' and @page='296' and @line='17'] -opus/marginalien/marginal[@index='193' and @letter='10' and @page='26' and @line='18'] -opus/marginalien/marginal[@index='1940' and @letter='137' and @page='296' and @line='21'] -opus/marginalien/marginal[@index='1941' and @letter='137' and @page='296' and @line='23'] -opus/marginalien/marginal[@index='1942' and @letter='137' and @page='296' and @line='28'] -opus/marginalien/marginal[@index='1943' and @letter='137' and @page='296' and @line='29'] -opus/marginalien/marginal[@index='1944' and @letter='137' and @page='296' and @line='32'] -opus/marginalien/marginal[@index='1945' and @letter='137' and @page='297' and @line='5'] -opus/marginalien/marginal[@index='1946' and @letter='137' and @page='297' and @line='13'] -opus/marginalien/marginal[@index='1947' and @letter='137' and @page='297' and @line='16'] -opus/marginalien/marginal[@index='1948' and @letter='137' and @page='297' and @line='18'] -opus/marginalien/marginal[@index='1949' and @letter='137' and @page='297' and @line='25'] -opus/marginalien/marginal[@index='194' and @letter='10' and @page='26' and @line='19'] -opus/marginalien/marginal[@index='1950' and @letter='137' and @page='297' and @line='28'] -opus/marginalien/marginal[@index='1951' and @letter='137' and @page='297' and @line='29'] -opus/marginalien/marginal[@index='1952' and @letter='137' and @page='297' and @line='30'] -opus/marginalien/marginal[@index='1953' and @letter='137' and @page='297' and @line='31'] -opus/marginalien/marginal[@index='1954' and @letter='137' and @page='297' and @line='34'] -opus/marginalien/marginal[@index='1955' and @letter='137' and @page='297' and @line='36'] -opus/marginalien/marginal[@index='1956' and @letter='137' and @page='298' and @line='3'] -opus/marginalien/marginal[@index='1957' and @letter='137' and @page='298' and @line='6'] -opus/marginalien/marginal[@index='1958' and @letter='137' and @page='298' and @line='8'] -opus/marginalien/marginal[@index='1959' and @letter='137' and @page='298' and @line='16'] -opus/marginalien/marginal[@index='195' and @letter='10' and @page='26' and @line='24'] -opus/marginalien/marginal[@index='1960' and @letter='137' and @page='298' and @line='26'] -opus/marginalien/marginal[@index='1961' and @letter='137' and @page='298' and @line='28'] -opus/marginalien/marginal[@index='1962' and @letter='138' and @page='299' and @line='6'] -opus/marginalien/marginal[@index='1963' and @letter='138' and @page='299' and @line='17'] -opus/marginalien/marginal[@index='1964' and @letter='138' and @page='299' and @line='19'] -opus/marginalien/marginal[@index='1965' and @letter='138' and @page='299' and @line='20'] -opus/marginalien/marginal[@index='1966' and @letter='138' and @page='299' and @line='21'] -opus/marginalien/marginal[@index='1967' and @letter='138' and @page='299' and @line='22'] -opus/marginalien/marginal[@index='1968' and @letter='138' and @page='299' and @line='23'] -opus/marginalien/marginal[@index='1969' and @letter='138' and @page='299' and @line='24'] -opus/marginalien/marginal[@index='196' and @letter='10' and @page='26' and @line='25'] -opus/marginalien/marginal[@index='1970' and @letter='138' and @page='299' and @line='29'] -opus/marginalien/marginal[@index='1971' and @letter='138' and @page='300' and @line='3'] -opus/marginalien/marginal[@index='1972' and @letter='138' and @page='300' and @line='4'] -opus/marginalien/marginal[@index='1973' and @letter='138' and @page='300' and @line='9'] -opus/marginalien/marginal[@index='1974' and @letter='138' and @page='300' and @line='17'] -opus/marginalien/marginal[@index='1975' and @letter='138' and @page='300' and @line='20'] -opus/marginalien/marginal[@index='1976' and @letter='138' and @page='300' and @line='21'] -opus/marginalien/marginal[@index='1977' and @letter='138' and @page='300' and @line='21'] -opus/marginalien/marginal[@index='1978' and @letter='138' and @page='300' and @line='22'] -opus/marginalien/marginal[@index='1979' and @letter='138' and @page='300' and @line='23'] -opus/marginalien/marginal[@index='197' and @letter='10' and @page='26' and @line='26'] -opus/marginalien/marginal[@index='1980' and @letter='138' and @page='300' and @line='24'] -opus/marginalien/marginal[@index='1981' and @letter='138' and @page='300' and @line='35'] -opus/marginalien/marginal[@index='1982' and @letter='138' and @page='300' and @line='37'] -opus/marginalien/marginal[@index='1983' and @letter='138' and @page='301' and @line='1'] -opus/marginalien/marginal[@index='1984' and @letter='138' and @page='301' and @line='2'] -opus/marginalien/marginal[@index='1985' and @letter='138' and @page='301' and @line='5'] -opus/marginalien/marginal[@index='1986' and @letter='138' and @page='301' and @line='7'] -opus/marginalien/marginal[@index='1987' and @letter='138' and @page='301' and @line='13'] -opus/marginalien/marginal[@index='1988' and @letter='138' and @page='301' and @line='15'] -opus/marginalien/marginal[@index='1989' and @letter='138' and @page='301' and @line='16'] -opus/marginalien/marginal[@index='198' and @letter='10' and @page='26' and @line='28'] -opus/marginalien/marginal[@index='1990' and @letter='138' and @page='301' and @line='17'] -opus/marginalien/marginal[@index='1991' and @letter='138' and @page='301' and @line='19'] -opus/marginalien/marginal[@index='1992' and @letter='138' and @page='301' and @line='23'] -opus/marginalien/marginal[@index='1993' and @letter='138' and @page='301' and @line='26'] -opus/marginalien/marginal[@index='1994' and @letter='138' and @page='301' and @line='27'] -opus/marginalien/marginal[@index='1995' and @letter='138' and @page='301' and @line='29'] -opus/marginalien/marginal[@index='1996' and @letter='138' and @page='301' and @line='35'] -opus/marginalien/marginal[@index='1997' and @letter='138' and @page='302' and @line='6'] -opus/marginalien/marginal[@index='1998' and @letter='138' and @page='302' and @line='8'] -opus/marginalien/marginal[@index='1999' and @letter='138' and @page='302' and @line='10'] -opus/marginalien/marginal[@index='199' and @letter='10' and @page='26' and @line='29'] -opus/marginalien/marginal[@index='19' and @letter='2' and @page='4' and @line='9'] -opus/marginalien/marginal[@index='1' and @letter='1' and @page='1' and @line='9'] -opus/marginalien/marginal[@index='2000' and @letter='138' and @page='302' and @line='15'] -opus/marginalien/marginal[@index='2001' and @letter='59' and @page='145' and @line='17'] -opus/marginalien/marginal[@index='2002' and @letter='138' and @page='302' and @line='16'] -opus/marginalien/marginal[@index='2003' and @letter='40' and @page='102' and @line='18'] -opus/marginalien/marginal[@index='2004' and @letter='40' and @page='102' and @line='21'] -opus/marginalien/marginal[@index='2005' and @letter='138' and @page='302' and @line='19'] -opus/marginalien/marginal[@index='2006' and @letter='138' and @page='302' and @line='27'] -opus/marginalien/marginal[@index='2007' and @letter='138' and @page='302' and @line='27'] -opus/marginalien/marginal[@index='2008' and @letter='138' and @page='302' and @line='27'] -opus/marginalien/marginal[@index='2009' and @letter='139' and @page='302' and @line='33'] -opus/marginalien/marginal[@index='200' and @letter='10' and @page='26' and @line='31'] -opus/marginalien/marginal[@index='2010' and @letter='139' and @page='302' and @line='34'] -opus/marginalien/marginal[@index='2011' and @letter='139' and @page='303' and @line='3'] -opus/marginalien/marginal[@index='2012' and @letter='139' and @page='303' and @line='3'] -opus/marginalien/marginal[@index='2013' and @letter='139' and @page='303' and @line='11'] -opus/marginalien/marginal[@index='2014' and @letter='139' and @page='303' and @line='11'] -opus/marginalien/marginal[@index='2015' and @letter='139' and @page='303' and @line='21'] -opus/marginalien/marginal[@index='2016' and @letter='139' and @page='303' and @line='26'] -opus/marginalien/marginal[@index='2017' and @letter='139' and @page='303' and @line='30'] -opus/marginalien/marginal[@index='2018' and @letter='139' and @page='303' and @line='34'] -opus/marginalien/marginal[@index='2019' and @letter='139' and @page='304' and @line='5'] -opus/marginalien/marginal[@index='201' and @letter='10' and @page='26' and @line='32'] -opus/marginalien/marginal[@index='2020' and @letter='139' and @page='304' and @line='15'] -opus/marginalien/marginal[@index='2021' and @letter='139' and @page='304' and @line='19'] -opus/marginalien/marginal[@index='2022' and @letter='139' and @page='304' and @line='20'] -opus/marginalien/marginal[@index='2023' and @letter='139' and @page='304' and @line='24'] -opus/marginalien/marginal[@index='2024' and @letter='139' and @page='304' and @line='36'] -opus/marginalien/marginal[@index='2025' and @letter='139' and @page='305' and @line='1'] -opus/marginalien/marginal[@index='2026' and @letter='139' and @page='305' and @line='2'] -opus/marginalien/marginal[@index='2027' and @letter='139' and @page='305' and @line='7'] -opus/marginalien/marginal[@index='2028' and @letter='139' and @page='305' and @line='9'] -opus/marginalien/marginal[@index='2029' and @letter='139' and @page='305' and @line='11'] -opus/marginalien/marginal[@index='202' and @letter='10' and @page='26' and @line='32'] -opus/marginalien/marginal[@index='2030' and @letter='139' and @page='305' and @line='19'] -opus/marginalien/marginal[@index='2031' and @letter='139' and @page='305' and @line='19'] -opus/marginalien/marginal[@index='2032' and @letter='139' and @page='305' and @line='20'] -opus/marginalien/marginal[@index='2033' and @letter='139' and @page='305' and @line='22'] -opus/marginalien/marginal[@index='2034' and @letter='139' and @page='305' and @line='24'] -opus/marginalien/marginal[@index='2035' and @letter='139' and @page='305' and @line='25'] -opus/marginalien/marginal[@index='2036' and @letter='139' and @page='305' and @line='26'] -opus/marginalien/marginal[@index='2037' and @letter='139' and @page='305' and @line='27'] -opus/marginalien/marginal[@index='2038' and @letter='139' and @page='305' and @line='29'] -opus/marginalien/marginal[@index='2039' and @letter='139' and @page='305' and @line='31'] -opus/marginalien/marginal[@index='203' and @letter='10' and @page='26' and @line='34'] -opus/marginalien/marginal[@index='2040' and @letter='139' and @page='305' and @line='32'] -opus/marginalien/marginal[@index='2041' and @letter='139' and @page='305' and @line='35'] -opus/marginalien/marginal[@index='2042' and @letter='139' and @page='306' and @line='4'] -opus/marginalien/marginal[@index='2043' and @letter='139' and @page='306' and @line='28'] -opus/marginalien/marginal[@index='2044' and @letter='139' and @page='306' and @line='29'] -opus/marginalien/marginal[@index='2045' and @letter='139' and @page='306' and @line='33'] -opus/marginalien/marginal[@index='2046' and @letter='139' and @page='307' and @line='2'] -opus/marginalien/marginal[@index='2047' and @letter='139' and @page='307' and @line='6'] -opus/marginalien/marginal[@index='2048' and @letter='139' and @page='307' and @line='9'] -opus/marginalien/marginal[@index='2049' and @letter='139' and @page='307' and @line='18'] -opus/marginalien/marginal[@index='204' and @letter='10' and @page='27' and @line='1'] -opus/marginalien/marginal[@index='2050' and @letter='139' and @page='307' and @line='19'] -opus/marginalien/marginal[@index='2051' and @letter='139' and @page='307' and @line='20'] -opus/marginalien/marginal[@index='2052' and @letter='139' and @page='307' and @line='28'] -opus/marginalien/marginal[@index='2053' and @letter='139' and @page='307' and @line='32'] -opus/marginalien/marginal[@index='2054' and @letter='139' and @page='308' and @line='6'] -opus/marginalien/marginal[@index='2055' and @letter='139' and @page='308' and @line='12'] -opus/marginalien/marginal[@index='2056' and @letter='139' and @page='308' and @line='16'] -opus/marginalien/marginal[@index='2057' and @letter='139' and @page='308' and @line='21'] -opus/marginalien/marginal[@index='2058' and @letter='139' and @page='308' and @line='25'] -opus/marginalien/marginal[@index='2059' and @letter='139' and @page='308' and @line='27'] -opus/marginalien/marginal[@index='205' and @letter='10' and @page='27' and @line='4'] -opus/marginalien/marginal[@index='2060' and @letter='139' and @page='308' and @line='32'] -opus/marginalien/marginal[@index='2061' and @letter='139' and @page='308' and @line='36'] -opus/marginalien/marginal[@index='2062' and @letter='139' and @page='309' and @line='8'] -opus/marginalien/marginal[@index='2063' and @letter='139' and @page='308' and @line='18'] -opus/marginalien/marginal[@index='2064' and @letter='139' and @page='309' and @line='19'] -opus/marginalien/marginal[@index='2065' and @letter='139' and @page='309' and @line='20'] -opus/marginalien/marginal[@index='2066' and @letter='139' and @page='309' and @line='22'] -opus/marginalien/marginal[@index='2067' and @letter='139' and @page='309' and @line='23'] -opus/marginalien/marginal[@index='2068' and @letter='139' and @page='309' and @line='23'] -opus/marginalien/marginal[@index='2069' and @letter='139' and @page='309' and @line='25'] -opus/marginalien/marginal[@index='206' and @letter='10' and @page='27' and @line='5'] -opus/marginalien/marginal[@index='2070' and @letter='139' and @page='309' and @line='27'] -opus/marginalien/marginal[@index='2071' and @letter='140' and @page='310' and @line='6'] -opus/marginalien/marginal[@index='2072' and @letter='140' and @page='310' and @line='8'] -opus/marginalien/marginal[@index='2073' and @letter='140' and @page='310' and @line='11'] -opus/marginalien/marginal[@index='2074' and @letter='140' and @page='310' and @line='14'] -opus/marginalien/marginal[@index='2075' and @letter='140' and @page='310' and @line='18'] -opus/marginalien/marginal[@index='2076' and @letter='140' and @page='310' and @line='30'] -opus/marginalien/marginal[@index='2077' and @letter='140' and @page='311' and @line='14'] -opus/marginalien/marginal[@index='2078' and @letter='140' and @page='311' and @line='23'] -opus/marginalien/marginal[@index='2079' and @letter='140' and @page='311' and @line='28'] -opus/marginalien/marginal[@index='207' and @letter='10' and @page='27' and @line='7'] -opus/marginalien/marginal[@index='2080' and @letter='140' and @page='311' and @line='30'] -opus/marginalien/marginal[@index='2081' and @letter='140' and @page='311' and @line='31'] -opus/marginalien/marginal[@index='2082' and @letter='140' and @page='311' and @line='37'] -opus/marginalien/marginal[@index='2083' and @letter='140' and @page='311' and @line='37'] -opus/marginalien/marginal[@index='2084' and @letter='140' and @page='312' and @line='1'] -opus/marginalien/marginal[@index='2085' and @letter='140' and @page='312' and @line='1'] -opus/marginalien/marginal[@index='2086' and @letter='140' and @page='312' and @line='4'] -opus/marginalien/marginal[@index='2087' and @letter='140' and @page='312' and @line='5'] -opus/marginalien/marginal[@index='2088' and @letter='140' and @page='312' and @line='5'] -opus/marginalien/marginal[@index='2089' and @letter='140' and @page='312' and @line='7'] -opus/marginalien/marginal[@index='208' and @letter='10' and @page='27' and @line='13'] -opus/marginalien/marginal[@index='2090' and @letter='140' and @page='312' and @line='8'] -opus/marginalien/marginal[@index='2091' and @letter='141' and @page='312' and @line='12'] -opus/marginalien/marginal[@index='2092' and @letter='141' and @page='312' and @line='20'] -opus/marginalien/marginal[@index='2093' and @letter='141' and @page='312' and @line='26'] -opus/marginalien/marginal[@index='2094' and @letter='141' and @page='312' and @line='28'] -opus/marginalien/marginal[@index='2095' and @letter='141' and @page='312' and @line='33'] -opus/marginalien/marginal[@index='2096' and @letter='141' and @page='313' and @line='1'] -opus/marginalien/marginal[@index='2097' and @letter='141' and @page='313' and @line='3'] -opus/marginalien/marginal[@index='2098' and @letter='141' and @page='313' and @line='4'] -opus/marginalien/marginal[@index='2099' and @letter='141' and @page='313' and @line='5'] -opus/marginalien/marginal[@index='209' and @letter='10' and @page='27' and @line='14'] -opus/marginalien/marginal[@index='20' and @letter='2' and @page='4' and @line='13'] -opus/marginalien/marginal[@index='2100' and @letter='142' and @page='313' and @line='30'] -opus/marginalien/marginal[@index='2101' and @letter='142' and @page='313' and @line='33'] -opus/marginalien/marginal[@index='2102' and @letter='142' and @page='313' and @line='34'] -opus/marginalien/marginal[@index='2103' and @letter='142' and @page='314' and @line='1'] -opus/marginalien/marginal[@index='2104' and @letter='142' and @page='314' and @line='1'] -opus/marginalien/marginal[@index='2105' and @letter='142' and @page='314' and @line='2'] -opus/marginalien/marginal[@index='2106' and @letter='142' and @page='314' and @line='12'] -opus/marginalien/marginal[@index='2107' and @letter='142' and @page='314' and @line='15'] -opus/marginalien/marginal[@index='2108' and @letter='142' and @page='314' and @line='17'] -opus/marginalien/marginal[@index='210' and @letter='10' and @page='27' and @line='17'] -opus/marginalien/marginal[@index='2110' and @letter='142' and @page='314' and @line='21'] -opus/marginalien/marginal[@index='2111' and @letter='142' and @page='314' and @line='22'] -opus/marginalien/marginal[@index='2112' and @letter='142' and @page='314' and @line='25'] -opus/marginalien/marginal[@index='2113' and @letter='142' and @page='314' and @line='27'] -opus/marginalien/marginal[@index='2114' and @letter='143' and @page='315' and @line='3'] -opus/marginalien/marginal[@index='2115' and @letter='143' and @page='315' and @line='10'] -opus/marginalien/marginal[@index='2116' and @letter='143' and @page='315' and @line='18'] -opus/marginalien/marginal[@index='2117' and @letter='143' and @page='315' and @line='19'] -opus/marginalien/marginal[@index='2118' and @letter='143' and @page='315' and @line='21'] -opus/marginalien/marginal[@index='2119' and @letter='143' and @page='315' and @line='34'] -opus/marginalien/marginal[@index='211' and @letter='10' and @page='27' and @line='19'] -opus/marginalien/marginal[@index='2120' and @letter='143' and @page='315' and @line='34'] -opus/marginalien/marginal[@index='2121' and @letter='143' and @page='315' and @line='35'] -opus/marginalien/marginal[@index='2122' and @letter='143' and @page='315' and @line='35'] -opus/marginalien/marginal[@index='2123' and @letter='143' and @page='316' and @line='2'] -opus/marginalien/marginal[@index='2124' and @letter='143' and @page='316' and @line='7'] -opus/marginalien/marginal[@index='2125' and @letter='143' and @page='316' and @line='9'] -opus/marginalien/marginal[@index='2126' and @letter='143' and @page='316' and @line='17'] -opus/marginalien/marginal[@index='2127' and @letter='143' and @page='316' and @line='17'] -opus/marginalien/marginal[@index='2128' and @letter='143' and @page='316' and @line='22'] -opus/marginalien/marginal[@index='2129' and @letter='143' and @page='316' and @line='30'] -opus/marginalien/marginal[@index='212' and @letter='10' and @page='27' and @line='22'] -opus/marginalien/marginal[@index='2130' and @letter='143' and @page='317' and @line='8'] -opus/marginalien/marginal[@index='2131' and @letter='143' and @page='317' and @line='9'] -opus/marginalien/marginal[@index='2132' and @letter='143' and @page='317' and @line='10'] -opus/marginalien/marginal[@index='2133' and @letter='143' and @page='317' and @line='23'] -opus/marginalien/marginal[@index='2134' and @letter='143' and @page='317' and @line='26'] -opus/marginalien/marginal[@index='2135' and @letter='143' and @page='318' and @line='5'] -opus/marginalien/marginal[@index='2136' and @letter='143' and @page='318' and @line='15'] -opus/marginalien/marginal[@index='2137' and @letter='143' and @page='318' and @line='16'] -opus/marginalien/marginal[@index='2138' and @letter='143' and @page='318' and @line='22'] -opus/marginalien/marginal[@index='2139' and @letter='143' and @page='319' and @line='5'] -opus/marginalien/marginal[@index='213' and @letter='10' and @page='27' and @line='23'] -opus/marginalien/marginal[@index='2140' and @letter='143' and @page='319' and @line='12'] -opus/marginalien/marginal[@index='2141' and @letter='143' and @page='319' and @line='17'] -opus/marginalien/marginal[@index='2142' and @letter='143' and @page='319' and @line='18'] -opus/marginalien/marginal[@index='2143' and @letter='143' and @page='319' and @line='19'] -opus/marginalien/marginal[@index='2144' and @letter='143' and @page='319' and @line='21'] -opus/marginalien/marginal[@index='2145' and @letter='143' and @page='319' and @line='22'] -opus/marginalien/marginal[@index='2146' and @letter='143' and @page='319' and @line='27'] -opus/marginalien/marginal[@index='2147' and @letter='143' and @page='319' and @line='29'] -opus/marginalien/marginal[@index='2148' and @letter='143' and @page='319' and @line='31'] -opus/marginalien/marginal[@index='2149' and @letter='143' and @page='319' and @line='34'] -opus/marginalien/marginal[@index='214' and @letter='10' and @page='27' and @line='24'] -opus/marginalien/marginal[@index='2150' and @letter='143' and @page='319' and @line='36'] -opus/marginalien/marginal[@index='2151' and @letter='143' and @page='320' and @line='6'] -opus/marginalien/marginal[@index='2152' and @letter='143' and @page='320' and @line='20'] -opus/marginalien/marginal[@index='2153' and @letter='143' and @page='320' and @line='21'] -opus/marginalien/marginal[@index='2154' and @letter='143' and @page='320' and @line='22'] -opus/marginalien/marginal[@index='2155' and @letter='143' and @page='320' and @line='23'] -opus/marginalien/marginal[@index='2156' and @letter='143' and @page='320' and @line='23'] -opus/marginalien/marginal[@index='2157' and @letter='143' and @page='320' and @line='24'] -opus/marginalien/marginal[@index='2158' and @letter='143' and @page='320' and @line='25'] -opus/marginalien/marginal[@index='2159' and @letter='143' and @page='320' and @line='26'] -opus/marginalien/marginal[@index='215' and @letter='10' and @page='28' and @line='5'] -opus/marginalien/marginal[@index='2160' and @letter='143' and @page='320' and @line='27'] -opus/marginalien/marginal[@index='2161' and @letter='143' and @page='320' and @line='32'] -opus/marginalien/marginal[@index='2163' and @letter='143' and @page='321' and @line='5'] -opus/marginalien/marginal[@index='2164' and @letter='143' and @page='321' and @line='8'] -opus/marginalien/marginal[@index='2165' and @letter='143' and @page='321' and @line='9'] -opus/marginalien/marginal[@index='2167' and @letter='143' and @page='321' and @line='23'] -opus/marginalien/marginal[@index='2168' and @letter='143' and @page='321' and @line='28'] -opus/marginalien/marginal[@index='2169' and @letter='143' and @page='321' and @line='33'] -opus/marginalien/marginal[@index='216' and @letter='10' and @page='28' and @line='7'] -opus/marginalien/marginal[@index='2170' and @letter='143' and @page='321' and @line='34'] -opus/marginalien/marginal[@index='2171' and @letter='143' and @page='321' and @line='37'] -opus/marginalien/marginal[@index='2172' and @letter='143' and @page='322' and @line='1'] -opus/marginalien/marginal[@index='2173' and @letter='143' and @page='322' and @line='3'] -opus/marginalien/marginal[@index='2174' and @letter='143' and @page='322' and @line='4'] -opus/marginalien/marginal[@index='2175' and @letter='143' and @page='322' and @line='9'] -opus/marginalien/marginal[@index='2176' and @letter='143' and @page='322' and @line='10'] -opus/marginalien/marginal[@index='2177' and @letter='143' and @page='322' and @line='11'] -opus/marginalien/marginal[@index='2178' and @letter='143' and @page='322' and @line='12'] -opus/marginalien/marginal[@index='2179' and @letter='143' and @page='322' and @line='20'] -opus/marginalien/marginal[@index='217' and @letter='10' and @page='28' and @line='8'] -opus/marginalien/marginal[@index='2180' and @letter='143' and @page='322' and @line='21'] -opus/marginalien/marginal[@index='2181' and @letter='143' and @page='322' and @line='22'] -opus/marginalien/marginal[@index='2182' and @letter='143' and @page='322' and @line='24'] -opus/marginalien/marginal[@index='2183' and @letter='143' and @page='322' and @line='25'] -opus/marginalien/marginal[@index='2184' and @letter='143' and @page='322' and @line='27'] -opus/marginalien/marginal[@index='2185' and @letter='143' and @page='322' and @line='28'] -opus/marginalien/marginal[@index='2186' and @letter='143' and @page='322' and @line='29'] -opus/marginalien/marginal[@index='2187' and @letter='143' and @page='322' and @line='32'] -opus/marginalien/marginal[@index='2188' and @letter='143' and @page='322' and @line='32'] -opus/marginalien/marginal[@index='2189' and @letter='143' and @page='322' and @line='35'] -opus/marginalien/marginal[@index='218' and @letter='10' and @page='28' and @line='22'] -opus/marginalien/marginal[@index='2190' and @letter='143' and @page='322' and @line='37'] -opus/marginalien/marginal[@index='2191' and @letter='143' and @page='323' and @line='1'] -opus/marginalien/marginal[@index='2192' and @letter='143' and @page='323' and @line='2'] -opus/marginalien/marginal[@index='2193' and @letter='143' and @page='323' and @line='4'] -opus/marginalien/marginal[@index='2194' and @letter='143' and @page='323' and @line='6'] -opus/marginalien/marginal[@index='2195' and @letter='143' and @page='323' and @line='7'] -opus/marginalien/marginal[@index='2196' and @letter='143' and @page='323' and @line='15'] -opus/marginalien/marginal[@index='2198' and @letter='143' and @page='324' and @line='4'] -opus/marginalien/marginal[@index='2199' and @letter='143' and @page='324' and @line='6'] -opus/marginalien/marginal[@index='219' and @letter='10' and @page='28' and @line='24'] -opus/marginalien/marginal[@index='21' and @letter='2' and @page='4' and @line='22'] -opus/marginalien/marginal[@index='2200' and @letter='143' and @page='324' and @line='7'] -opus/marginalien/marginal[@index='2201' and @letter='143' and @page='324' and @line='8'] -opus/marginalien/marginal[@index='2202' and @letter='143' and @page='324' and @line='9'] -opus/marginalien/marginal[@index='2203' and @letter='143' and @page='324' and @line='11'] -opus/marginalien/marginal[@index='2204' and @letter='143' and @page='324' and @line='12'] -opus/marginalien/marginal[@index='2205' and @letter='143' and @page='324' and @line='13'] -opus/marginalien/marginal[@index='2206' and @letter='143' and @page='324' and @line='15'] -opus/marginalien/marginal[@index='2207' and @letter='143' and @page='324' and @line='16'] -opus/marginalien/marginal[@index='2208' and @letter='143' and @page='324' and @line='17'] -opus/marginalien/marginal[@index='2209' and @letter='143' and @page='324' and @line='18'] -opus/marginalien/marginal[@index='220' and @letter='10' and @page='28' and @line='26'] -opus/marginalien/marginal[@index='2210' and @letter='143' and @page='324' and @line='19'] -opus/marginalien/marginal[@index='2211' and @letter='143' and @page='324' and @line='21'] -opus/marginalien/marginal[@index='2212' and @letter='143' and @page='324' and @line='30'] -opus/marginalien/marginal[@index='2213' and @letter='143' and @page='324' and @line='35'] -opus/marginalien/marginal[@index='2214' and @letter='143' and @page='325' and @line='1'] -opus/marginalien/marginal[@index='2215' and @letter='143' and @page='325' and @line='2'] -opus/marginalien/marginal[@index='2216' and @letter='143' and @page='325' and @line='3'] -opus/marginalien/marginal[@index='2217' and @letter='143' and @page='325' and @line='7'] -opus/marginalien/marginal[@index='2218' and @letter='143' and @page='325' and @line='12'] -opus/marginalien/marginal[@index='2219' and @letter='143' and @page='325' and @line='14'] -opus/marginalien/marginal[@index='221' and @letter='10' and @page='28' and @line='32'] -opus/marginalien/marginal[@index='2220' and @letter='143' and @page='325' and @line='15'] -opus/marginalien/marginal[@index='2221' and @letter='143' and @page='325' and @line='18'] -opus/marginalien/marginal[@index='2222' and @letter='143' and @page='325' and @line='25'] -opus/marginalien/marginal[@index='2223' and @letter='143' and @page='325' and @line='25'] -opus/marginalien/marginal[@index='2224' and @letter='143' and @page='325' and @line='26'] -opus/marginalien/marginal[@index='2225' and @letter='143' and @page='325' and @line='28'] -opus/marginalien/marginal[@index='2226' and @letter='143' and @page='325' and @line='29'] -opus/marginalien/marginal[@index='2227' and @letter='143' and @page='325' and @line='29'] -opus/marginalien/marginal[@index='2228' and @letter='143' and @page='325' and @line='29'] -opus/marginalien/marginal[@index='2229' and @letter='143' and @page='326' and @line='4'] -opus/marginalien/marginal[@index='222' and @letter='10' and @page='28' and @line='36'] -opus/marginalien/marginal[@index='2230' and @letter='143' and @page='326' and @line='5'] -opus/marginalien/marginal[@index='2231' and @letter='143' and @page='326' and @line='8'] -opus/marginalien/marginal[@index='2232' and @letter='143' and @page='326' and @line='9'] -opus/marginalien/marginal[@index='2233' and @letter='143' and @page='326' and @line='10'] -opus/marginalien/marginal[@index='2234' and @letter='143' and @page='326' and @line='10'] -opus/marginalien/marginal[@index='2235' and @letter='143' and @page='326' and @line='15'] -opus/marginalien/marginal[@index='2236' and @letter='143' and @page='326' and @line='16'] -opus/marginalien/marginal[@index='2237' and @letter='143' and @page='326' and @line='17'] -opus/marginalien/marginal[@index='2238' and @letter='143' and @page='326' and @line='19'] -opus/marginalien/marginal[@index='2239' and @letter='143' and @page='326' and @line='23'] -opus/marginalien/marginal[@index='223' and @letter='10' and @page='29' and @line='1'] -opus/marginalien/marginal[@index='2240' and @letter='143' and @page='326' and @line='23'] -opus/marginalien/marginal[@index='2241' and @letter='143' and @page='326' and @line='29'] -opus/marginalien/marginal[@index='2242' and @letter='143' and @page='327' and @line='20'] -opus/marginalien/marginal[@index='2243' and @letter='143' and @page='328' and @line='4'] -opus/marginalien/marginal[@index='2244' and @letter='143' and @page='328' and @line='5'] -opus/marginalien/marginal[@index='2245' and @letter='143' and @page='328' and @line='5'] -opus/marginalien/marginal[@index='2246' and @letter='143' and @page='328' and @line='6'] -opus/marginalien/marginal[@index='2247' and @letter='143' and @page='328' and @line='8'] -opus/marginalien/marginal[@index='2249' and @letter='143' and @page='328' and @line='14'] -opus/marginalien/marginal[@index='224' and @letter='10' and @page='29' and @line='3'] -opus/marginalien/marginal[@index='2250' and @letter='143' and @page='328' and @line='27'] -opus/marginalien/marginal[@index='2251' and @letter='143' and @page='328' and @line='28'] -opus/marginalien/marginal[@index='2252' and @letter='143' and @page='329' and @line='3'] -opus/marginalien/marginal[@index='2253' and @letter='143' and @page='329' and @line='9'] -opus/marginalien/marginal[@index='2254' and @letter='143' and @page='329' and @line='9'] -opus/marginalien/marginal[@index='2255' and @letter='143' and @page='329' and @line='15'] -opus/marginalien/marginal[@index='2256' and @letter='143' and @page='329' and @line='19'] -opus/marginalien/marginal[@index='2257' and @letter='143' and @page='329' and @line='23'] -opus/marginalien/marginal[@index='2258' and @letter='143' and @page='329' and @line='26'] -opus/marginalien/marginal[@index='2259' and @letter='143' and @page='329' and @line='27'] -opus/marginalien/marginal[@index='225' and @letter='10' and @page='29' and @line='6'] -opus/marginalien/marginal[@index='2260' and @letter='143' and @page='329' and @line='31'] -opus/marginalien/marginal[@index='2261' and @letter='143' and @page='329' and @line='33'] -opus/marginalien/marginal[@index='2262' and @letter='143' and @page='329' and @line='34'] -opus/marginalien/marginal[@index='2263' and @letter='143' and @page='329' and @line='35'] -opus/marginalien/marginal[@index='2264' and @letter='143' and @page='330' and @line='1'] -opus/marginalien/marginal[@index='2265' and @letter='143' and @page='330' and @line='2'] -opus/marginalien/marginal[@index='2266' and @letter='143' and @page='330' and @line='8'] -opus/marginalien/marginal[@index='2267' and @letter='144' and @page='330' and @line='15'] -opus/marginalien/marginal[@index='2268' and @letter='144' and @page='330' and @line='16'] -opus/marginalien/marginal[@index='2269' and @letter='144' and @page='330' and @line='22'] -opus/marginalien/marginal[@index='226' and @letter='10' and @page='29' and @line='8'] -opus/marginalien/marginal[@index='2270' and @letter='144' and @page='330' and @line='27'] -opus/marginalien/marginal[@index='2278' and @letter='144' and @page='330' and @line='28'] -opus/marginalien/marginal[@index='2279' and @letter='144' and @page='330' and @line='30'] -opus/marginalien/marginal[@index='227' and @letter='10' and @page='29' and @line='10'] -opus/marginalien/marginal[@index='2280' and @letter='144' and @page='330' and @line='32'] -opus/marginalien/marginal[@index='2281' and @letter='144' and @page='330' and @line='34'] -opus/marginalien/marginal[@index='2282' and @letter='144' and @page='330' and @line='35'] -opus/marginalien/marginal[@index='2283' and @letter='144' and @page='331' and @line='9'] -opus/marginalien/marginal[@index='2284' and @letter='144' and @page='331' and @line='22'] -opus/marginalien/marginal[@index='2285' and @letter='144' and @page='331' and @line='24'] -opus/marginalien/marginal[@index='2286' and @letter='144' and @page='331' and @line='26'] -opus/marginalien/marginal[@index='2287' and @letter='144' and @page='331' and @line='26'] -opus/marginalien/marginal[@index='2288' and @letter='144' and @page='331' and @line='27'] -opus/marginalien/marginal[@index='2289' and @letter='144' and @page='331' and @line='28'] -opus/marginalien/marginal[@index='228' and @letter='11' and @page='30' and @line='11'] -opus/marginalien/marginal[@index='2290' and @letter='144' and @page='331' and @line='29'] -opus/marginalien/marginal[@index='2291' and @letter='144' and @page='331' and @line='29'] -opus/marginalien/marginal[@index='2292' and @letter='144' and @page='331' and @line='29'] -opus/marginalien/marginal[@index='2293' and @letter='144' and @page='331' and @line='31'] -opus/marginalien/marginal[@index='2294' and @letter='144' and @page='331' and @line='32'] -opus/marginalien/marginal[@index='2295' and @letter='144' and @page='331' and @line='33'] -opus/marginalien/marginal[@index='2296' and @letter='144' and @page='331' and @line='33'] -opus/marginalien/marginal[@index='2297' and @letter='144' and @page='331' and @line='35'] -opus/marginalien/marginal[@index='2298' and @letter='144' and @page='332' and @line='1'] -opus/marginalien/marginal[@index='2299' and @letter='144' and @page='332' and @line='4'] -opus/marginalien/marginal[@index='229' and @letter='11' and @page='30' and @line='11'] -opus/marginalien/marginal[@index='22' and @letter='2' and @page='4' and @line='23'] -opus/marginalien/marginal[@index='2300' and @letter='144' and @page='332' and @line='4'] -opus/marginalien/marginal[@index='2301' and @letter='144' and @page='332' and @line='4'] -opus/marginalien/marginal[@index='2302' and @letter='144' and @page='332' and @line='9'] -opus/marginalien/marginal[@index='2304' and @letter='144' and @page='332' and @line='13'] -opus/marginalien/marginal[@index='2305' and @letter='144' and @page='332' and @line='13'] -opus/marginalien/marginal[@index='2306' and @letter='144' and @page='332' and @line='14'] -opus/marginalien/marginal[@index='2307' and @letter='144' and @page='332' and @line='14'] -opus/marginalien/marginal[@index='2308' and @letter='144' and @page='332' and @line='16'] -opus/marginalien/marginal[@index='2309' and @letter='144' and @page='332' and @line='20'] -opus/marginalien/marginal[@index='230' and @letter='11' and @page='30' and @line='18'] -opus/marginalien/marginal[@index='2310' and @letter='144' and @page='332' and @line='21'] -opus/marginalien/marginal[@index='2311' and @letter='144' and @page='332' and @line='25'] -opus/marginalien/marginal[@index='2312' and @letter='144' and @page='332' and @line='25'] -opus/marginalien/marginal[@index='2313' and @letter='144' and @page='332' and @line='28'] -opus/marginalien/marginal[@index='2314' and @letter='144' and @page='332' and @line='30'] -opus/marginalien/marginal[@index='2315' and @letter='145' and @page='333' and @line='3'] -opus/marginalien/marginal[@index='2316' and @letter='145' and @page='333' and @line='6'] -opus/marginalien/marginal[@index='2317' and @letter='145' and @page='333' and @line='13'] -opus/marginalien/marginal[@index='2318' and @letter='145' and @page='333' and @line='13'] -opus/marginalien/marginal[@index='2319' and @letter='145' and @page='333' and @line='14'] -opus/marginalien/marginal[@index='231' and @letter='11' and @page='30' and @line='19'] -opus/marginalien/marginal[@index='2320' and @letter='145' and @page='333' and @line='15'] -opus/marginalien/marginal[@index='2321' and @letter='145' and @page='333' and @line='17'] -opus/marginalien/marginal[@index='2322' and @letter='145' and @page='333' and @line='18'] -opus/marginalien/marginal[@index='2323' and @letter='145' and @page='333' and @line='19'] -opus/marginalien/marginal[@index='2324' and @letter='145' and @page='333' and @line='19'] -opus/marginalien/marginal[@index='2325' and @letter='145' and @page='333' and @line='20'] -opus/marginalien/marginal[@index='2326' and @letter='145' and @page='333' and @line='20'] -opus/marginalien/marginal[@index='2327' and @letter='145' and @page='333' and @line='21'] -opus/marginalien/marginal[@index='2328' and @letter='145' and @page='333' and @line='21'] -opus/marginalien/marginal[@index='2329' and @letter='145' and @page='333' and @line='23'] -opus/marginalien/marginal[@index='232' and @letter='11' and @page='30' and @line='24'] -opus/marginalien/marginal[@index='2330' and @letter='145' and @page='333' and @line='26'] -opus/marginalien/marginal[@index='2331' and @letter='145' and @page='333' and @line='27'] -opus/marginalien/marginal[@index='2332' and @letter='145' and @page='333' and @line='30'] -opus/marginalien/marginal[@index='2333' and @letter='145' and @page='333' and @line='31'] -opus/marginalien/marginal[@index='2334' and @letter='145' and @page='333' and @line='34'] -opus/marginalien/marginal[@index='2335' and @letter='145' and @page='334' and @line='4'] -opus/marginalien/marginal[@index='2336' and @letter='145' and @page='334' and @line='5'] -opus/marginalien/marginal[@index='2337' and @letter='145' and @page='334' and @line='6'] -opus/marginalien/marginal[@index='2338' and @letter='145' and @page='334' and @line='9'] -opus/marginalien/marginal[@index='2339' and @letter='145' and @page='334' and @line='10'] -opus/marginalien/marginal[@index='233' and @letter='11' and @page='31' and @line='8'] -opus/marginalien/marginal[@index='2340' and @letter='145' and @page='334' and @line='13'] -opus/marginalien/marginal[@index='2341' and @letter='145' and @page='334' and @line='15'] -opus/marginalien/marginal[@index='2342' and @letter='145' and @page='334' and @line='20'] -opus/marginalien/marginal[@index='2343' and @letter='145' and @page='334' and @line='28'] -opus/marginalien/marginal[@index='2344' and @letter='145' and @page='334' and @line='35'] -opus/marginalien/marginal[@index='2345' and @letter='145' and @page='335' and @line='3'] -opus/marginalien/marginal[@index='2346' and @letter='145' and @page='335' and @line='14'] -opus/marginalien/marginal[@index='2347' and @letter='145' and @page='335' and @line='18'] -opus/marginalien/marginal[@index='2348' and @letter='145' and @page='335' and @line='28'] -opus/marginalien/marginal[@index='2349' and @letter='145' and @page='335' and @line='30'] -opus/marginalien/marginal[@index='234' and @letter='11' and @page='31' and @line='26'] -opus/marginalien/marginal[@index='2350' and @letter='145' and @page='335' and @line='32'] -opus/marginalien/marginal[@index='2351' and @letter='145' and @page='335' and @line='33'] -opus/marginalien/marginal[@index='2352' and @letter='145' and @page='336' and @line='3'] -opus/marginalien/marginal[@index='2353' and @letter='145' and @page='336' and @line='7'] -opus/marginalien/marginal[@index='2354' and @letter='145' and @page='336' and @line='12'] -opus/marginalien/marginal[@index='2355' and @letter='145' and @page='336' and @line='13'] -opus/marginalien/marginal[@index='2356' and @letter='145' and @page='336' and @line='13'] -opus/marginalien/marginal[@index='2357' and @letter='145' and @page='336' and @line='16'] -opus/marginalien/marginal[@index='2358' and @letter='145' and @page='336' and @line='20'] -opus/marginalien/marginal[@index='2359' and @letter='145' and @page='336' and @line='25'] -opus/marginalien/marginal[@index='235' and @letter='11' and @page='31' and @line='30'] -opus/marginalien/marginal[@index='2360' and @letter='145' and @page='336' and @line='26'] -opus/marginalien/marginal[@index='2361' and @letter='145' and @page='336' and @line='28'] -opus/marginalien/marginal[@index='2362' and @letter='145' and @page='336' and @line='29'] -opus/marginalien/marginal[@index='2363' and @letter='145' and @page='336' and @line='31'] -opus/marginalien/marginal[@index='2364' and @letter='145' and @page='336' and @line='32'] -opus/marginalien/marginal[@index='2365' and @letter='145' and @page='336' and @line='33'] -opus/marginalien/marginal[@index='2366' and @letter='145' and @page='337' and @line='2'] -opus/marginalien/marginal[@index='2367' and @letter='145' and @page='337' and @line='6'] -opus/marginalien/marginal[@index='2368' and @letter='145' and @page='337' and @line='21'] -opus/marginalien/marginal[@index='2369' and @letter='145' and @page='337' and @line='26'] -opus/marginalien/marginal[@index='236' and @letter='11' and @page='31' and @line='30'] -opus/marginalien/marginal[@index='2370' and @letter='145' and @page='337' and @line='30'] -opus/marginalien/marginal[@index='2371' and @letter='145' and @page='337' and @line='35'] -opus/marginalien/marginal[@index='2372' and @letter='145' and @page='337' and @line='37'] -opus/marginalien/marginal[@index='2373' and @letter='145' and @page='338' and @line='6'] -opus/marginalien/marginal[@index='2374' and @letter='145' and @page='338' and @line='8'] -opus/marginalien/marginal[@index='2376' and @letter='145' and @page='338' and @line='15'] -opus/marginalien/marginal[@index='2377' and @letter='146' and @page='338' and @line='20'] -opus/marginalien/marginal[@index='2378' and @letter='146' and @page='338' and @line='25'] -opus/marginalien/marginal[@index='2379' and @letter='146' and @page='338' and @line='28'] -opus/marginalien/marginal[@index='237' and @letter='11' and @page='31' and @line='32'] -opus/marginalien/marginal[@index='2380' and @letter='146' and @page='338' and @line='34'] -opus/marginalien/marginal[@index='2381' and @letter='146' and @page='339' and @line='8'] -opus/marginalien/marginal[@index='2382' and @letter='146' and @page='339' and @line='10'] -opus/marginalien/marginal[@index='2383' and @letter='146' and @page='339' and @line='14'] -opus/marginalien/marginal[@index='2384' and @letter='146' and @page='339' and @line='16'] -opus/marginalien/marginal[@index='2385' and @letter='146' and @page='339' and @line='22'] -opus/marginalien/marginal[@index='2386' and @letter='146' and @page='339' and @line='25'] -opus/marginalien/marginal[@index='2387' and @letter='146' and @page='339' and @line='30'] -opus/marginalien/marginal[@index='2388' and @letter='146' and @page='339' and @line='31'] -opus/marginalien/marginal[@index='2389' and @letter='146' and @page='339' and @line='32'] -opus/marginalien/marginal[@index='238' and @letter='11' and @page='31' and @line='33'] -opus/marginalien/marginal[@index='2390' and @letter='146' and @page='340' and @line='2'] -opus/marginalien/marginal[@index='2391' and @letter='146' and @page='340' and @line='3'] -opus/marginalien/marginal[@index='2392' and @letter='146' and @page='340' and @line='4'] -opus/marginalien/marginal[@index='2393' and @letter='146' and @page='340' and @line='6'] -opus/marginalien/marginal[@index='2394' and @letter='146' and @page='340' and @line='11'] -opus/marginalien/marginal[@index='2395' and @letter='146' and @page='340' and @line='13'] -opus/marginalien/marginal[@index='2396' and @letter='146' and @page='340' and @line='14'] -opus/marginalien/marginal[@index='2397' and @letter='146' and @page='340' and @line='17'] -opus/marginalien/marginal[@index='2398' and @letter='146' and @page='340' and @line='18'] -opus/marginalien/marginal[@index='2399' and @letter='146' and @page='340' and @line='19'] -opus/marginalien/marginal[@index='239' and @letter='11' and @page='32' and @line='9'] -opus/marginalien/marginal[@index='23' and @letter='2' and @page='4' and @line='24'] -opus/marginalien/marginal[@index='2400' and @letter='146' and @page='340' and @line='21'] -opus/marginalien/marginal[@index='2401' and @letter='146' and @page='340' and @line='22'] -opus/marginalien/marginal[@index='2402' and @letter='146' and @page='340' and @line='23'] -opus/marginalien/marginal[@index='2403' and @letter='146' and @page='340' and @line='24'] -opus/marginalien/marginal[@index='2404' and @letter='146' and @page='340' and @line='25'] -opus/marginalien/marginal[@index='2405' and @letter='146' and @page='340' and @line='35'] -opus/marginalien/marginal[@index='2406' and @letter='146' and @page='341' and @line='4'] -opus/marginalien/marginal[@index='2407' and @letter='146' and @page='341' and @line='11'] -opus/marginalien/marginal[@index='2408' and @letter='146' and @page='341' and @line='14'] -opus/marginalien/marginal[@index='2409' and @letter='146' and @page='341' and @line='14'] -opus/marginalien/marginal[@index='240' and @letter='11' and @page='32' and @line='10'] -opus/marginalien/marginal[@index='2410' and @letter='146' and @page='341' and @line='15'] -opus/marginalien/marginal[@index='2411' and @letter='146' and @page='341' and @line='18'] -opus/marginalien/marginal[@index='2412' and @letter='146' and @page='341' and @line='24'] -opus/marginalien/marginal[@index='2413' and @letter='146' and @page='341' and @line='27'] -opus/marginalien/marginal[@index='2414' and @letter='146' and @page='341' and @line='28'] -opus/marginalien/marginal[@index='2415' and @letter='146' and @page='341' and @line='32'] -opus/marginalien/marginal[@index='2416' and @letter='146' and @page='341' and @line='33'] -opus/marginalien/marginal[@index='2417' and @letter='146' and @page='341' and @line='33'] -opus/marginalien/marginal[@index='2418' and @letter='146' and @page='342' and @line='2'] -opus/marginalien/marginal[@index='2419' and @letter='146' and @page='342' and @line='3'] -opus/marginalien/marginal[@index='241' and @letter='11' and @page='32' and @line='12'] -opus/marginalien/marginal[@index='2420' and @letter='146' and @page='342' and @line='8'] -opus/marginalien/marginal[@index='2421' and @letter='146' and @page='342' and @line='13'] -opus/marginalien/marginal[@index='2422' and @letter='146' and @page='342' and @line='18'] -opus/marginalien/marginal[@index='2423' and @letter='146' and @page='342' and @line='21'] -opus/marginalien/marginal[@index='2424' and @letter='146' and @page='342' and @line='23'] -opus/marginalien/marginal[@index='2425' and @letter='146' and @page='342' and @line='24'] -opus/marginalien/marginal[@index='2426' and @letter='146' and @page='342' and @line='26'] -opus/marginalien/marginal[@index='2427' and @letter='146' and @page='342' and @line='28'] -opus/marginalien/marginal[@index='2428' and @letter='146' and @page='342' and @line='32'] -opus/marginalien/marginal[@index='2429' and @letter='146' and @page='342' and @line='33'] -opus/marginalien/marginal[@index='242' and @letter='12' and @page='32' and @line='32'] -opus/marginalien/marginal[@index='2430' and @letter='146' and @page='342' and @line='34'] -opus/marginalien/marginal[@index='2431' and @letter='146' and @page='342' and @line='37'] -opus/marginalien/marginal[@index='2432' and @letter='146' and @page='343' and @line='10'] -opus/marginalien/marginal[@index='2433' and @letter='146' and @page='343' and @line='11'] -opus/marginalien/marginal[@index='2434' and @letter='146' and @page='343' and @line='13'] -opus/marginalien/marginal[@index='2435' and @letter='146' and @page='343' and @line='14'] -opus/marginalien/marginal[@index='2436' and @letter='146' and @page='343' and @line='16'] -opus/marginalien/marginal[@index='2437' and @letter='146' and @page='343' and @line='22'] -opus/marginalien/marginal[@index='2438' and @letter='146' and @page='343' and @line='23'] -opus/marginalien/marginal[@index='2439' and @letter='146' and @page='343' and @line='26'] -opus/marginalien/marginal[@index='243' and @letter='12' and @page='32' and @line='35'] -opus/marginalien/marginal[@index='2440' and @letter='146' and @page='343' and @line='33'] -opus/marginalien/marginal[@index='2441' and @letter='146' and @page='343' and @line='34'] -opus/marginalien/marginal[@index='2442' and @letter='146' and @page='343' and @line='34'] -opus/marginalien/marginal[@index='2443' and @letter='146' and @page='343' and @line='37'] -opus/marginalien/marginal[@index='2444' and @letter='146' and @page='344' and @line='4'] -opus/marginalien/marginal[@index='2445' and @letter='146' and @page='344' and @line='10'] -opus/marginalien/marginal[@index='2446' and @letter='146' and @page='344' and @line='13'] -opus/marginalien/marginal[@index='2447' and @letter='146' and @page='344' and @line='15'] -opus/marginalien/marginal[@index='2448' and @letter='146' and @page='344' and @line='17'] -opus/marginalien/marginal[@index='2449' and @letter='146' and @page='344' and @line='18'] -opus/marginalien/marginal[@index='244' and @letter='12' and @page='33' and @line='5'] -opus/marginalien/marginal[@index='2450' and @letter='146' and @page='344' and @line='26'] -opus/marginalien/marginal[@index='2451' and @letter='146' and @page='344' and @line='27'] -opus/marginalien/marginal[@index='2452' and @letter='146' and @page='344' and @line='29'] -opus/marginalien/marginal[@index='2453' and @letter='146' and @page='344' and @line='30'] -opus/marginalien/marginal[@index='2454' and @letter='146' and @page='344' and @line='32'] -opus/marginalien/marginal[@index='2455' and @letter='146' and @page='344' and @line='33'] -opus/marginalien/marginal[@index='2456' and @letter='146' and @page='344' and @line='34'] -opus/marginalien/marginal[@index='2457' and @letter='146' and @page='344' and @line='36'] -opus/marginalien/marginal[@index='2458' and @letter='146' and @page='344' and @line='37'] -opus/marginalien/marginal[@index='2459' and @letter='146' and @page='345' and @line='6'] -opus/marginalien/marginal[@index='245' and @letter='12' and @page='33' and @line='7'] -opus/marginalien/marginal[@index='2460' and @letter='146' and @page='345' and @line='20'] -opus/marginalien/marginal[@index='2461' and @letter='146' and @page='345' and @line='21'] -opus/marginalien/marginal[@index='2462' and @letter='146' and @page='345' and @line='22'] -opus/marginalien/marginal[@index='2463' and @letter='146' and @page='345' and @line='23'] -opus/marginalien/marginal[@index='2464' and @letter='146' and @page='345' and @line='24'] -opus/marginalien/marginal[@index='2465' and @letter='146' and @page='345' and @line='24'] -opus/marginalien/marginal[@index='2466' and @letter='146' and @page='345' and @line='25'] -opus/marginalien/marginal[@index='2467' and @letter='146' and @page='345' and @line='28'] -opus/marginalien/marginal[@index='2468' and @letter='146' and @page='345' and @line='29'] -opus/marginalien/marginal[@index='2469' and @letter='146' and @page='345' and @line='30'] -opus/marginalien/marginal[@index='246' and @letter='12' and @page='33' and @line='12'] -opus/marginalien/marginal[@index='2470' and @letter='147' and @page='346' and @line='5'] -opus/marginalien/marginal[@index='2471' and @letter='147' and @page='346' and @line='13'] -opus/marginalien/marginal[@index='2472' and @letter='147' and @page='346' and @line='14'] -opus/marginalien/marginal[@index='2473' and @letter='147' and @page='346' and @line='15'] -opus/marginalien/marginal[@index='2474' and @letter='147' and @page='346' and @line='33'] -opus/marginalien/marginal[@index='2475' and @letter='147' and @page='346' and @line='33'] -opus/marginalien/marginal[@index='2476' and @letter='147' and @page='347' and @line='1'] -opus/marginalien/marginal[@index='2477' and @letter='147' and @page='347' and @line='18'] -opus/marginalien/marginal[@index='2478' and @letter='147' and @page='347' and @line='21'] -opus/marginalien/marginal[@index='2479' and @letter='147' and @page='347' and @line='32'] -opus/marginalien/marginal[@index='247' and @letter='12' and @page='33' and @line='33'] -opus/marginalien/marginal[@index='2480' and @letter='147' and @page='347' and @line='32'] -opus/marginalien/marginal[@index='2481' and @letter='147' and @page='347' and @line='33'] -opus/marginalien/marginal[@index='2482' and @letter='147' and @page='348' and @line='4'] -opus/marginalien/marginal[@index='2483' and @letter='148' and @page='348' and @line='9'] -opus/marginalien/marginal[@index='2484' and @letter='148' and @page='348' and @line='9'] -opus/marginalien/marginal[@index='2485' and @letter='148' and @page='348' and @line='10'] -opus/marginalien/marginal[@index='2486' and @letter='148' and @page='348' and @line='11'] -opus/marginalien/marginal[@index='2487' and @letter='148' and @page='348' and @line='11'] -opus/marginalien/marginal[@index='2488' and @letter='148' and @page='348' and @line='13'] -opus/marginalien/marginal[@index='2489' and @letter='148' and @page='348' and @line='15'] -opus/marginalien/marginal[@index='248' and @letter='12' and @page='33' and @line='33'] -opus/marginalien/marginal[@index='2490' and @letter='148' and @page='348' and @line='17'] -opus/marginalien/marginal[@index='2491' and @letter='148' and @page='348' and @line='18'] -opus/marginalien/marginal[@index='2492' and @letter='148' and @page='348' and @line='22'] -opus/marginalien/marginal[@index='2493' and @letter='148' and @page='348' and @line='23'] -opus/marginalien/marginal[@index='2494' and @letter='148' and @page='348' and @line='24'] -opus/marginalien/marginal[@index='2495' and @letter='148' and @page='348' and @line='26'] -opus/marginalien/marginal[@index='2496' and @letter='148' and @page='348' and @line='28'] -opus/marginalien/marginal[@index='2497' and @letter='148' and @page='348' and @line='29'] -opus/marginalien/marginal[@index='2499' and @letter='148' and @page='348' and @line='32'] -opus/marginalien/marginal[@index='249' and @letter='12' and @page='33' and @line='33'] -opus/marginalien/marginal[@index='24' and @letter='2' and @page='4' and @line='25'] -opus/marginalien/marginal[@index='2500' and @letter='148' and @page='348' and @line='33'] -opus/marginalien/marginal[@index='2501' and @letter='148' and @page='349' and @line='5'] -opus/marginalien/marginal[@index='2502' and @letter='148' and @page='349' and @line='11'] -opus/marginalien/marginal[@index='2503' and @letter='148' and @page='349' and @line='13'] -opus/marginalien/marginal[@index='2504' and @letter='148' and @page='349' and @line='17'] -opus/marginalien/marginal[@index='2505' and @letter='148' and @page='349' and @line='36'] -opus/marginalien/marginal[@index='2506' and @letter='148' and @page='350' and @line='3'] -opus/marginalien/marginal[@index='2507' and @letter='148' and @page='350' and @line='4'] -opus/marginalien/marginal[@index='2508' and @letter='148' and @page='350' and @line='12'] -opus/marginalien/marginal[@index='2509' and @letter='148' and @page='350' and @line='17'] -opus/marginalien/marginal[@index='250' and @letter='12' and @page='33' and @line='34'] -opus/marginalien/marginal[@index='2510' and @letter='148' and @page='350' and @line='29'] -opus/marginalien/marginal[@index='2511' and @letter='148' and @page='351' and @line='8'] -opus/marginalien/marginal[@index='2512' and @letter='148' and @page='351' and @line='18'] -opus/marginalien/marginal[@index='2513' and @letter='148' and @page='351' and @line='33'] -opus/marginalien/marginal[@index='2514' and @letter='148' and @page='352' and @line='6'] -opus/marginalien/marginal[@index='2515' and @letter='148' and @page='352' and @line='6'] -opus/marginalien/marginal[@index='2516' and @letter='148' and @page='352' and @line='8'] -opus/marginalien/marginal[@index='2517' and @letter='148' and @page='352' and @line='10'] -opus/marginalien/marginal[@index='2518' and @letter='148' and @page='352' and @line='11'] -opus/marginalien/marginal[@index='2519' and @letter='148' and @page='352' and @line='18'] -opus/marginalien/marginal[@index='251' and @letter='13' and @page='34' and @line='7'] -opus/marginalien/marginal[@index='2520' and @letter='148' and @page='352' and @line='19'] -opus/marginalien/marginal[@index='2521' and @letter='148' and @page='352' and @line='21'] -opus/marginalien/marginal[@index='2522' and @letter='148' and @page='352' and @line='22'] -opus/marginalien/marginal[@index='2523' and @letter='148' and @page='352' and @line='23'] -opus/marginalien/marginal[@index='2524' and @letter='148' and @page='352' and @line='24'] -opus/marginalien/marginal[@index='2525' and @letter='148' and @page='352' and @line='26'] -opus/marginalien/marginal[@index='2526' and @letter='148' and @page='352' and @line='28'] -opus/marginalien/marginal[@index='2527' and @letter='148' and @page='352' and @line='30'] -opus/marginalien/marginal[@index='2528' and @letter='148' and @page='352' and @line='35'] -opus/marginalien/marginal[@index='2529' and @letter='148' and @page='352' and @line='35'] -opus/marginalien/marginal[@index='252' and @letter='13' and @page='34' and @line='8'] -opus/marginalien/marginal[@index='2530' and @letter='148' and @page='352' and @line='37'] -opus/marginalien/marginal[@index='2531' and @letter='148' and @page='352' and @line='37'] -opus/marginalien/marginal[@index='2532' and @letter='148' and @page='353' and @line='1'] -opus/marginalien/marginal[@index='2533' and @letter='148' and @page='353' and @line='6'] -opus/marginalien/marginal[@index='2534' and @letter='148' and @page='353' and @line='10'] -opus/marginalien/marginal[@index='2535' and @letter='148' and @page='353' and @line='11'] -opus/marginalien/marginal[@index='2536' and @letter='148' and @page='353' and @line='11'] -opus/marginalien/marginal[@index='2537' and @letter='148' and @page='353' and @line='13'] -opus/marginalien/marginal[@index='2538' and @letter='148' and @page='353' and @line='14'] -opus/marginalien/marginal[@index='2539' and @letter='148' and @page='353' and @line='16'] -opus/marginalien/marginal[@index='253' and @letter='13' and @page='34' and @line='8'] -opus/marginalien/marginal[@index='2540' and @letter='148' and @page='353' and @line='19'] -opus/marginalien/marginal[@index='2541' and @letter='148' and @page='353' and @line='21'] -opus/marginalien/marginal[@index='2542' and @letter='149' and @page='353' and @line='25'] -opus/marginalien/marginal[@index='2543' and @letter='149' and @page='353' and @line='25'] -opus/marginalien/marginal[@index='2544' and @letter='149' and @page='353' and @line='28'] -opus/marginalien/marginal[@index='2545' and @letter='149' and @page='353' and @line='33'] -opus/marginalien/marginal[@index='2546' and @letter='149' and @page='354' and @line='4'] -opus/marginalien/marginal[@index='2547' and @letter='149' and @page='354' and @line='9'] -opus/marginalien/marginal[@index='2549' and @letter='149' and @page='354' and @line='18'] -opus/marginalien/marginal[@index='254' and @letter='13' and @page='34' and @line='8'] -opus/marginalien/marginal[@index='2550' and @letter='149' and @page='354' and @line='20'] -opus/marginalien/marginal[@index='2551' and @letter='149' and @page='354' and @line='21'] -opus/marginalien/marginal[@index='2553' and @letter='149' and @page='354' and @line='22'] -opus/marginalien/marginal[@index='2554' and @letter='149' and @page='354' and @line='25'] -opus/marginalien/marginal[@index='2555' and @letter='149' and @page='354' and @line='27'] -opus/marginalien/marginal[@index='2556' and @letter='149' and @page='354' and @line='29'] -opus/marginalien/marginal[@index='2557' and @letter='149' and @page='354' and @line='33'] -opus/marginalien/marginal[@index='2558' and @letter='149' and @page='354' and @line='36'] -opus/marginalien/marginal[@index='2559' and @letter='149' and @page='354' and @line='37'] -opus/marginalien/marginal[@index='255' and @letter='13' and @page='34' and @line='10'] -opus/marginalien/marginal[@index='2560' and @letter='149' and @page='355' and @line='1'] -opus/marginalien/marginal[@index='2561' and @letter='149' and @page='355' and @line='1'] -opus/marginalien/marginal[@index='2562' and @letter='149' and @page='355' and @line='6'] -opus/marginalien/marginal[@index='2563' and @letter='149' and @page='355' and @line='7'] -opus/marginalien/marginal[@index='2564' and @letter='149' and @page='355' and @line='8'] -opus/marginalien/marginal[@index='2565' and @letter='149' and @page='355' and @line='9'] -opus/marginalien/marginal[@index='2566' and @letter='149' and @page='355' and @line='10'] -opus/marginalien/marginal[@index='2567' and @letter='149' and @page='355' and @line='14'] -opus/marginalien/marginal[@index='2568' and @letter='149' and @page='355' and @line='18'] -opus/marginalien/marginal[@index='2569' and @letter='149' and @page='355' and @line='20'] -opus/marginalien/marginal[@index='256' and @letter='13' and @page='34' and @line='14'] -opus/marginalien/marginal[@index='2570' and @letter='149' and @page='355' and @line='22'] -opus/marginalien/marginal[@index='2571' and @letter='149' and @page='355' and @line='23'] -opus/marginalien/marginal[@index='2572' and @letter='149' and @page='355' and @line='25'] -opus/marginalien/marginal[@index='2573' and @letter='149' and @page='355' and @line='26'] -opus/marginalien/marginal[@index='2574' and @letter='149' and @page='355' and @line='28'] -opus/marginalien/marginal[@index='2575' and @letter='149' and @page='355' and @line='32'] -opus/marginalien/marginal[@index='2576' and @letter='149' and @page='355' and @line='37'] -opus/marginalien/marginal[@index='2577' and @letter='149' and @page='356' and @line='8'] -opus/marginalien/marginal[@index='2578' and @letter='149' and @page='356' and @line='10'] -opus/marginalien/marginal[@index='2579' and @letter='149' and @page='356' and @line='10'] -opus/marginalien/marginal[@index='257' and @letter='13' and @page='34' and @line='14'] -opus/marginalien/marginal[@index='2580' and @letter='149' and @page='356' and @line='24'] -opus/marginalien/marginal[@index='2581' and @letter='149' and @page='356' and @line='27'] -opus/marginalien/marginal[@index='2582' and @letter='149' and @page='356' and @line='28'] -opus/marginalien/marginal[@index='2583' and @letter='149' and @page='356' and @line='30'] -opus/marginalien/marginal[@index='2584' and @letter='149' and @page='356' and @line='33'] -opus/marginalien/marginal[@index='2585' and @letter='149' and @page='356' and @line='35'] -opus/marginalien/marginal[@index='2586' and @letter='149' and @page='356' and @line='35'] -opus/marginalien/marginal[@index='2587' and @letter='149' and @page='357' and @line='1'] -opus/marginalien/marginal[@index='2588' and @letter='149' and @page='357' and @line='1'] -opus/marginalien/marginal[@index='2589' and @letter='149' and @page='357' and @line='3'] -opus/marginalien/marginal[@index='258' and @letter='13' and @page='34' and @line='20'] -opus/marginalien/marginal[@index='2590' and @letter='149' and @page='357' and @line='4'] -opus/marginalien/marginal[@index='2591' and @letter='149' and @page='357' and @line='6'] -opus/marginalien/marginal[@index='2592' and @letter='149' and @page='357' and @line='11'] -opus/marginalien/marginal[@index='2593' and @letter='149' and @page='357' and @line='15'] -opus/marginalien/marginal[@index='2594' and @letter='149' and @page='357' and @line='18'] -opus/marginalien/marginal[@index='2595' and @letter='149' and @page='357' and @line='19'] -opus/marginalien/marginal[@index='2596' and @letter='149' and @page='357' and @line='20'] -opus/marginalien/marginal[@index='2597' and @letter='149' and @page='357' and @line='22'] -opus/marginalien/marginal[@index='2598' and @letter='149' and @page='357' and @line='22'] -opus/marginalien/marginal[@index='2599' and @letter='150' and @page='358' and @line='3'] -opus/marginalien/marginal[@index='259' and @letter='13' and @page='34' and @line='28'] -opus/marginalien/marginal[@index='25' and @letter='2' and @page='4' and @line='27'] -opus/marginalien/marginal[@index='2600' and @letter='150' and @page='358' and @line='3'] -opus/marginalien/marginal[@index='2601' and @letter='150' and @page='358' and @line='7'] -opus/marginalien/marginal[@index='2602' and @letter='150' and @page='358' and @line='13'] -opus/marginalien/marginal[@index='2603' and @letter='150' and @page='358' and @line='14'] -opus/marginalien/marginal[@index='2604' and @letter='150' and @page='358' and @line='15'] -opus/marginalien/marginal[@index='2605' and @letter='150' and @page='358' and @line='17'] -opus/marginalien/marginal[@index='2606' and @letter='150' and @page='358' and @line='19'] -opus/marginalien/marginal[@index='2607' and @letter='150' and @page='358' and @line='37'] -opus/marginalien/marginal[@index='2608' and @letter='150' and @page='359' and @line='6'] -opus/marginalien/marginal[@index='2609' and @letter='150' and @page='359' and @line='8'] -opus/marginalien/marginal[@index='260' and @letter='13' and @page='34' and @line='28'] -opus/marginalien/marginal[@index='2610' and @letter='150' and @page='359' and @line='10'] -opus/marginalien/marginal[@index='2611' and @letter='150' and @page='359' and @line='13'] -opus/marginalien/marginal[@index='2612' and @letter='150' and @page='359' and @line='16'] -opus/marginalien/marginal[@index='2613' and @letter='150' and @page='359' and @line='20'] -opus/marginalien/marginal[@index='2614' and @letter='150' and @page='359' and @line='22'] -opus/marginalien/marginal[@index='2615' and @letter='150' and @page='359' and @line='23'] -opus/marginalien/marginal[@index='2616' and @letter='150' and @page='359' and @line='25'] -opus/marginalien/marginal[@index='2617' and @letter='150' and @page='359' and @line='28'] -opus/marginalien/marginal[@index='2618' and @letter='150' and @page='359' and @line='31'] -opus/marginalien/marginal[@index='2619' and @letter='150' and @page='359' and @line='32'] -opus/marginalien/marginal[@index='261' and @letter='13' and @page='34' and @line='32'] -opus/marginalien/marginal[@index='2620' and @letter='150' and @page='359' and @line='35'] -opus/marginalien/marginal[@index='2621' and @letter='150' and @page='360' and @line='3'] -opus/marginalien/marginal[@index='2622' and @letter='150' and @page='360' and @line='5'] -opus/marginalien/marginal[@index='2623' and @letter='150' and @page='360' and @line='8'] -opus/marginalien/marginal[@index='2624' and @letter='150' and @page='360' and @line='10'] -opus/marginalien/marginal[@index='2625' and @letter='150' and @page='360' and @line='21'] -opus/marginalien/marginal[@index='2626' and @letter='150' and @page='360' and @line='24'] -opus/marginalien/marginal[@index='2627' and @letter='150' and @page='360' and @line='27'] -opus/marginalien/marginal[@index='2628' and @letter='150' and @page='360' and @line='29'] -opus/marginalien/marginal[@index='2629' and @letter='150' and @page='360' and @line='30'] -opus/marginalien/marginal[@index='262' and @letter='13' and @page='34' and @line='35'] -opus/marginalien/marginal[@index='2630' and @letter='150' and @page='361' and @line='3'] -opus/marginalien/marginal[@index='2631' and @letter='150' and @page='361' and @line='4'] -opus/marginalien/marginal[@index='2632' and @letter='150' and @page='361' and @line='7'] -opus/marginalien/marginal[@index='2633' and @letter='150' and @page='361' and @line='9'] -opus/marginalien/marginal[@index='2634' and @letter='150' and @page='361' and @line='12'] -opus/marginalien/marginal[@index='2635' and @letter='150' and @page='361' and @line='5'] -opus/marginalien/marginal[@index='2636' and @letter='150' and @page='361' and @line='17'] -opus/marginalien/marginal[@index='2637' and @letter='150' and @page='361' and @line='18'] -opus/marginalien/marginal[@index='2638' and @letter='150' and @page='361' and @line='23'] -opus/marginalien/marginal[@index='2639' and @letter='150' and @page='361' and @line='24'] -opus/marginalien/marginal[@index='263' and @letter='13' and @page='35' and @line='6'] -opus/marginalien/marginal[@index='2640' and @letter='150' and @page='361' and @line='25'] -opus/marginalien/marginal[@index='2641' and @letter='151' and @page='361' and @line='26'] -opus/marginalien/marginal[@index='2642' and @letter='151' and @page='361' and @line='28'] -opus/marginalien/marginal[@index='2643' and @letter='151' and @page='361' and @line='28'] -opus/marginalien/marginal[@index='2644' and @letter='151' and @page='361' and @line='29'] -opus/marginalien/marginal[@index='2645' and @letter='151' and @page='361' and @line='30'] -opus/marginalien/marginal[@index='2646' and @letter='151' and @page='362' and @line='6'] -opus/marginalien/marginal[@index='2647' and @letter='151' and @page='362' and @line='6'] -opus/marginalien/marginal[@index='2648' and @letter='151' and @page='362' and @line='11'] -opus/marginalien/marginal[@index='2649' and @letter='151' and @page='362' and @line='14'] -opus/marginalien/marginal[@index='264' and @letter='13' and @page='35' and @line='9'] -opus/marginalien/marginal[@index='2650' and @letter='151' and @page='362' and @line='15'] -opus/marginalien/marginal[@index='2651' and @letter='151' and @page='362' and @line='16'] -opus/marginalien/marginal[@index='2652' and @letter='151' and @page='362' and @line='22'] -opus/marginalien/marginal[@index='2653' and @letter='151' and @page='362' and @line='29'] -opus/marginalien/marginal[@index='2654' and @letter='151' and @page='362' and @line='30'] -opus/marginalien/marginal[@index='2655' and @letter='151' and @page='362' and @line='33'] -opus/marginalien/marginal[@index='2656' and @letter='151' and @page='362' and @line='33'] -opus/marginalien/marginal[@index='2657' and @letter='151' and @page='363' and @line='1'] -opus/marginalien/marginal[@index='2658' and @letter='151' and @page='363' and @line='3'] -opus/marginalien/marginal[@index='2659' and @letter='151' and @page='363' and @line='6'] -opus/marginalien/marginal[@index='265' and @letter='13' and @page='35' and @line='17'] -opus/marginalien/marginal[@index='2660' and @letter='151' and @page='363' and @line='7'] -opus/marginalien/marginal[@index='2661' and @letter='151' and @page='363' and @line='7'] -opus/marginalien/marginal[@index='2662' and @letter='151' and @page='363' and @line='9'] -opus/marginalien/marginal[@index='2663' and @letter='151' and @page='363' and @line='11'] -opus/marginalien/marginal[@index='2664' and @letter='151' and @page='363' and @line='11'] -opus/marginalien/marginal[@index='2665' and @letter='151' and @page='363' and @line='11'] -opus/marginalien/marginal[@index='2666' and @letter='151' and @page='363' and @line='12'] -opus/marginalien/marginal[@index='2667' and @letter='151' and @page='363' and @line='13'] -opus/marginalien/marginal[@index='2668' and @letter='151' and @page='363' and @line='16'] -opus/marginalien/marginal[@index='2669' and @letter='151' and @page='363' and @line='17'] -opus/marginalien/marginal[@index='266' and @letter='13' and @page='35' and @line='24'] -opus/marginalien/marginal[@index='2670' and @letter='152' and @page='363' and @line='27'] -opus/marginalien/marginal[@index='2671' and @letter='152' and @page='363' and @line='30'] -opus/marginalien/marginal[@index='2672' and @letter='152' and @page='363' and @line='32'] -opus/marginalien/marginal[@index='2673' and @letter='152' and @page='363' and @line='35'] -opus/marginalien/marginal[@index='2674' and @letter='152' and @page='363' and @line='36'] -opus/marginalien/marginal[@index='2675' and @letter='152' and @page='363' and @line='36'] -opus/marginalien/marginal[@index='2676' and @letter='152' and @page='364' and @line='8'] -opus/marginalien/marginal[@index='2677' and @letter='152' and @page='364' and @line='9'] -opus/marginalien/marginal[@index='2678' and @letter='152' and @page='364' and @line='12'] -opus/marginalien/marginal[@index='2679' and @letter='152' and @page='364' and @line='19'] -opus/marginalien/marginal[@index='267' and @letter='13' and @page='35' and @line='26'] -opus/marginalien/marginal[@index='2680' and @letter='152' and @page='364' and @line='26'] -opus/marginalien/marginal[@index='2681' and @letter='152' and @page='365' and @line='8'] -opus/marginalien/marginal[@index='2682' and @letter='152' and @page='365' and @line='12'] -opus/marginalien/marginal[@index='2683' and @letter='152' and @page='365' and @line='18'] -opus/marginalien/marginal[@index='2684' and @letter='152' and @page='365' and @line='18'] -opus/marginalien/marginal[@index='2685' and @letter='152' and @page='365' and @line='23'] -opus/marginalien/marginal[@index='2686' and @letter='152' and @page='365' and @line='24'] -opus/marginalien/marginal[@index='2687' and @letter='152' and @page='365' and @line='25'] -opus/marginalien/marginal[@index='2688' and @letter='152' and @page='365' and @line='26'] -opus/marginalien/marginal[@index='2689' and @letter='152' and @page='365' and @line='29'] -opus/marginalien/marginal[@index='268' and @letter='13' and @page='36' and @line='4'] -opus/marginalien/marginal[@index='2690' and @letter='152' and @page='365' and @line='29'] -opus/marginalien/marginal[@index='2691' and @letter='152' and @page='365' and @line='30'] -opus/marginalien/marginal[@index='2692' and @letter='152' and @page='365' and @line='31'] -opus/marginalien/marginal[@index='2693' and @letter='152' and @page='366' and @line='6'] -opus/marginalien/marginal[@index='2694' and @letter='152' and @page='366' and @line='7'] -opus/marginalien/marginal[@index='2695' and @letter='152' and @page='366' and @line='8'] -opus/marginalien/marginal[@index='2696' and @letter='152' and @page='366' and @line='11'] -opus/marginalien/marginal[@index='2697' and @letter='152' and @page='366' and @line='15'] -opus/marginalien/marginal[@index='2698' and @letter='152' and @page='366' and @line='22'] -opus/marginalien/marginal[@index='2699' and @letter='152' and @page='366' and @line='24'] -opus/marginalien/marginal[@index='269' and @letter='13' and @page='36' and @line='6'] -opus/marginalien/marginal[@index='26' and @letter='2' and @page='4' and @line='29'] -opus/marginalien/marginal[@index='2700' and @letter='152' and @page='366' and @line='26'] -opus/marginalien/marginal[@index='2701' and @letter='152' and @page='366' and @line='27'] -opus/marginalien/marginal[@index='2702' and @letter='152' and @page='366' and @line='32'] -opus/marginalien/marginal[@index='2703' and @letter='152' and @page='367' and @line='2'] -opus/marginalien/marginal[@index='2704' and @letter='152' and @page='367' and @line='3'] -opus/marginalien/marginal[@index='2705' and @letter='152' and @page='367' and @line='5'] -opus/marginalien/marginal[@index='2706' and @letter='152' and @page='367' and @line='6'] -opus/marginalien/marginal[@index='2707' and @letter='152' and @page='367' and @line='7'] -opus/marginalien/marginal[@index='2708' and @letter='152' and @page='367' and @line='10'] -opus/marginalien/marginal[@index='2709' and @letter='152' and @page='367' and @line='10'] -opus/marginalien/marginal[@index='270' and @letter='13' and @page='36' and @line='10'] -opus/marginalien/marginal[@index='2710' and @letter='152' and @page='367' and @line='11'] -opus/marginalien/marginal[@index='2711' and @letter='152' and @page='367' and @line='13'] -opus/marginalien/marginal[@index='2712' and @letter='152' and @page='367' and @line='13'] -opus/marginalien/marginal[@index='2713' and @letter='152' and @page='367' and @line='18'] -opus/marginalien/marginal[@index='2714' and @letter='152' and @page='367' and @line='21'] -opus/marginalien/marginal[@index='2715' and @letter='152' and @page='367' and @line='24'] -opus/marginalien/marginal[@index='2716' and @letter='152' and @page='367' and @line='25'] -opus/marginalien/marginal[@index='2717' and @letter='152' and @page='367' and @line='26'] -opus/marginalien/marginal[@index='2718' and @letter='152' and @page='367' and @line='28'] -opus/marginalien/marginal[@index='2719' and @letter='152' and @page='367' and @line='28'] -opus/marginalien/marginal[@index='271' and @letter='13' and @page='36' and @line='14'] -opus/marginalien/marginal[@index='2720' and @letter='152' and @page='367' and @line='29'] -opus/marginalien/marginal[@index='2721' and @letter='152' and @page='367' and @line='30'] -opus/marginalien/marginal[@index='2722' and @letter='152' and @page='367' and @line='32'] -opus/marginalien/marginal[@index='2723' and @letter='152' and @page='367' and @line='33'] -opus/marginalien/marginal[@index='2724' and @letter='152' and @page='367' and @line='35'] -opus/marginalien/marginal[@index='2725' and @letter='152' and @page='367' and @line='36'] -opus/marginalien/marginal[@index='2726' and @letter='152' and @page='367' and @line='37'] -opus/marginalien/marginal[@index='2727' and @letter='152' and @page='368' and @line='1'] -opus/marginalien/marginal[@index='2728' and @letter='152' and @page='368' and @line='3'] -opus/marginalien/marginal[@index='2729' and @letter='152' and @page='368' and @line='4'] -opus/marginalien/marginal[@index='272' and @letter='14' and @page='36' and @line='31'] -opus/marginalien/marginal[@index='2730' and @letter='152' and @page='368' and @line='4'] -opus/marginalien/marginal[@index='2731' and @letter='152' and @page='368' and @line='6'] -opus/marginalien/marginal[@index='2732' and @letter='152' and @page='368' and @line='9'] -opus/marginalien/marginal[@index='2733' and @letter='152' and @page='368' and @line='13'] -opus/marginalien/marginal[@index='2734' and @letter='152' and @page='368' and @line='15'] -opus/marginalien/marginal[@index='2735' and @letter='152' and @page='368' and @line='16'] -opus/marginalien/marginal[@index='2736' and @letter='152' and @page='368' and @line='18'] -opus/marginalien/marginal[@index='2737' and @letter='152' and @page='368' and @line='19'] -opus/marginalien/marginal[@index='2738' and @letter='152' and @page='368' and @line='22'] -opus/marginalien/marginal[@index='2739' and @letter='152' and @page='368' and @line='26'] -opus/marginalien/marginal[@index='273' and @letter='14' and @page='36' and @line='35'] -opus/marginalien/marginal[@index='2740' and @letter='152' and @page='368' and @line='27'] -opus/marginalien/marginal[@index='2741' and @letter='152' and @page='368' and @line='29'] -opus/marginalien/marginal[@index='2742' and @letter='152' and @page='368' and @line='29'] -opus/marginalien/marginal[@index='2743' and @letter='152' and @page='368' and @line='30'] -opus/marginalien/marginal[@index='2744' and @letter='152' and @page='368' and @line='30'] -opus/marginalien/marginal[@index='2745' and @letter='152' and @page='368' and @line='31'] -opus/marginalien/marginal[@index='2746' and @letter='152' and @page='368' and @line='33'] -opus/marginalien/marginal[@index='2747' and @letter='152' and @page='368' and @line='33'] -opus/marginalien/marginal[@index='2748' and @letter='152' and @page='368' and @line='36'] -opus/marginalien/marginal[@index='2749' and @letter='152' and @page='368' and @line='37'] -opus/marginalien/marginal[@index='274' and @letter='14' and @page='37' and @line='3'] -opus/marginalien/marginal[@index='2750' and @letter='152' and @page='369' and @line='1'] -opus/marginalien/marginal[@index='2751' and @letter='152' and @page='369' and @line='2'] -opus/marginalien/marginal[@index='2752' and @letter='152' and @page='369' and @line='4'] -opus/marginalien/marginal[@index='2753' and @letter='152' and @page='369' and @line='6'] -opus/marginalien/marginal[@index='2754' and @letter='152' and @page='369' and @line='8'] -opus/marginalien/marginal[@index='2755' and @letter='152' and @page='369' and @line='9'] -opus/marginalien/marginal[@index='2756' and @letter='152' and @page='369' and @line='15'] -opus/marginalien/marginal[@index='2757' and @letter='152' and @page='369' and @line='15'] -opus/marginalien/marginal[@index='2758' and @letter='152' and @page='369' and @line='19'] -opus/marginalien/marginal[@index='2759' and @letter='152' and @page='370' and @line='8'] -opus/marginalien/marginal[@index='275' and @letter='14' and @page='37' and @line='3'] -opus/marginalien/marginal[@index='2760' and @letter='152' and @page='370' and @line='10'] -opus/marginalien/marginal[@index='2761' and @letter='152' and @page='370' and @line='10'] -opus/marginalien/marginal[@index='2762' and @letter='152' and @page='370' and @line='13'] -opus/marginalien/marginal[@index='2763' and @letter='152' and @page='370' and @line='15'] -opus/marginalien/marginal[@index='2764' and @letter='152' and @page='370' and @line='17'] -opus/marginalien/marginal[@index='2765' and @letter='152' and @page='370' and @line='18'] -opus/marginalien/marginal[@index='2766' and @letter='152' and @page='370' and @line='22'] -opus/marginalien/marginal[@index='2767' and @letter='152' and @page='370' and @line='24'] -opus/marginalien/marginal[@index='2768' and @letter='152' and @page='370' and @line='25'] -opus/marginalien/marginal[@index='2769' and @letter='152' and @page='370' and @line='27'] -opus/marginalien/marginal[@index='276' and @letter='14' and @page='37' and @line='26'] -opus/marginalien/marginal[@index='2770' and @letter='152' and @page='370' and @line='28'] -opus/marginalien/marginal[@index='2771' and @letter='152' and @page='370' and @line='31'] -opus/marginalien/marginal[@index='2772' and @letter='152' and @page='371' and @line='6'] -opus/marginalien/marginal[@index='2773' and @letter='152' and @page='371' and @line='14'] -opus/marginalien/marginal[@index='2774' and @letter='152' and @page='371' and @line='24'] -opus/marginalien/marginal[@index='2775' and @letter='152' and @page='371' and @line='31'] -opus/marginalien/marginal[@index='2776' and @letter='152' and @page='371' and @line='33'] -opus/marginalien/marginal[@index='2777' and @letter='152' and @page='372' and @line='3'] -opus/marginalien/marginal[@index='2778' and @letter='152' and @page='372' and @line='10'] -opus/marginalien/marginal[@index='2779' and @letter='152' and @page='372' and @line='11'] -opus/marginalien/marginal[@index='277' and @letter='14' and @page='37' and @line='32'] -opus/marginalien/marginal[@index='2780' and @letter='152' and @page='372' and @line='14'] -opus/marginalien/marginal[@index='2781' and @letter='152' and @page='372' and @line='15'] -opus/marginalien/marginal[@index='2782' and @letter='152' and @page='372' and @line='23'] -opus/marginalien/marginal[@index='2783' and @letter='152' and @page='372' and @line='24'] -opus/marginalien/marginal[@index='2784' and @letter='152' and @page='372' and @line='25'] -opus/marginalien/marginal[@index='2785' and @letter='152' and @page='372' and @line='30'] -opus/marginalien/marginal[@index='2786' and @letter='152' and @page='372' and @line='30'] -opus/marginalien/marginal[@index='2787' and @letter='152' and @page='372' and @line='32'] -opus/marginalien/marginal[@index='2788' and @letter='152' and @page='372' and @line='32'] -opus/marginalien/marginal[@index='2789' and @letter='152' and @page='372' and @line='36'] -opus/marginalien/marginal[@index='278' and @letter='14' and @page='37' and @line='34'] -opus/marginalien/marginal[@index='2790' and @letter='152' and @page='373' and @line='1'] -opus/marginalien/marginal[@index='2791' and @letter='152' and @page='373' and @line='2'] -opus/marginalien/marginal[@index='2792' and @letter='152' and @page='373' and @line='6'] -opus/marginalien/marginal[@index='2793' and @letter='152' and @page='373' and @line='7'] -opus/marginalien/marginal[@index='2794' and @letter='152' and @page='373' and @line='10'] -opus/marginalien/marginal[@index='2795' and @letter='152' and @page='373' and @line='11'] -opus/marginalien/marginal[@index='2796' and @letter='153' and @page='373' and @line='18'] -opus/marginalien/marginal[@index='2797' and @letter='153' and @page='373' and @line='19'] -opus/marginalien/marginal[@index='2798' and @letter='153' and @page='373' and @line='28'] -opus/marginalien/marginal[@index='2799' and @letter='153' and @page='373' and @line='31'] -opus/marginalien/marginal[@index='279' and @letter='14' and @page='38' and @line='6'] -opus/marginalien/marginal[@index='27' and @letter='2' and @page='4' and @line='32'] -opus/marginalien/marginal[@index='2800' and @letter='153' and @page='373' and @line='33'] -opus/marginalien/marginal[@index='2801' and @letter='153' and @page='374' and @line='2'] -opus/marginalien/marginal[@index='2802' and @letter='153' and @page='374' and @line='4'] -opus/marginalien/marginal[@index='2803' and @letter='153' and @page='374' and @line='5'] -opus/marginalien/marginal[@index='2804' and @letter='153' and @page='374' and @line='8'] -opus/marginalien/marginal[@index='2805' and @letter='153' and @page='374' and @line='9'] -opus/marginalien/marginal[@index='2806' and @letter='153' and @page='374' and @line='11'] -opus/marginalien/marginal[@index='2807' and @letter='153' and @page='374' and @line='12'] -opus/marginalien/marginal[@index='2808' and @letter='153' and @page='374' and @line='13'] -opus/marginalien/marginal[@index='2809' and @letter='153' and @page='374' and @line='13'] -opus/marginalien/marginal[@index='280' and @letter='14' and @page='38' and @line='12'] -opus/marginalien/marginal[@index='2810' and @letter='153' and @page='374' and @line='14'] -opus/marginalien/marginal[@index='2811' and @letter='153' and @page='374' and @line='15'] -opus/marginalien/marginal[@index='2812' and @letter='153' and @page='374' and @line='17'] -opus/marginalien/marginal[@index='2813' and @letter='153' and @page='374' and @line='17'] -opus/marginalien/marginal[@index='2814' and @letter='153' and @page='374' and @line='18'] -opus/marginalien/marginal[@index='2815' and @letter='153' and @page='374' and @line='18'] -opus/marginalien/marginal[@index='2816' and @letter='153' and @page='374' and @line='20'] -opus/marginalien/marginal[@index='2817' and @letter='153' and @page='374' and @line='21'] -opus/marginalien/marginal[@index='2818' and @letter='153' and @page='374' and @line='28'] -opus/marginalien/marginal[@index='2819' and @letter='153' and @page='374' and @line='32'] -opus/marginalien/marginal[@index='281' and @letter='14' and @page='38' and @line='16'] -opus/marginalien/marginal[@index='2820' and @letter='153' and @page='375' and @line='1'] -opus/marginalien/marginal[@index='2821' and @letter='153' and @page='375' and @line='11'] -opus/marginalien/marginal[@index='2822' and @letter='153' and @page='375' and @line='19'] -opus/marginalien/marginal[@index='2823' and @letter='153' and @page='375' and @line='23'] -opus/marginalien/marginal[@index='2824' and @letter='153' and @page='375' and @line='30'] -opus/marginalien/marginal[@index='2825' and @letter='153' and @page='376' and @line='11'] -opus/marginalien/marginal[@index='2826' and @letter='153' and @page='376' and @line='15'] -opus/marginalien/marginal[@index='2827' and @letter='153' and @page='376' and @line='19'] -opus/marginalien/marginal[@index='2828' and @letter='153' and @page='376' and @line='19'] -opus/marginalien/marginal[@index='2829' and @letter='153' and @page='376' and @line='19'] -opus/marginalien/marginal[@index='282' and @letter='14' and @page='38' and @line='20'] -opus/marginalien/marginal[@index='2830' and @letter='153' and @page='376' and @line='20'] -opus/marginalien/marginal[@index='2831' and @letter='153' and @page='376' and @line='23'] -opus/marginalien/marginal[@index='2832' and @letter='153' and @page='376' and @line='27'] -opus/marginalien/marginal[@index='2833' and @letter='153' and @page='376' and @line='27'] -opus/marginalien/marginal[@index='2834' and @letter='153' and @page='376' and @line='28'] -opus/marginalien/marginal[@index='2835' and @letter='153' and @page='376' and @line='32'] -opus/marginalien/marginal[@index='2836' and @letter='153' and @page='376' and @line='33'] -opus/marginalien/marginal[@index='2837' and @letter='153' and @page='377' and @line='1'] -opus/marginalien/marginal[@index='2838' and @letter='153' and @page='377' and @line='4'] -opus/marginalien/marginal[@index='2839' and @letter='153' and @page='377' and @line='7'] -opus/marginalien/marginal[@index='283' and @letter='14' and @page='38' and @line='31'] -opus/marginalien/marginal[@index='2840' and @letter='153' and @page='377' and @line='7'] -opus/marginalien/marginal[@index='2841' and @letter='153' and @page='377' and @line='8'] -opus/marginalien/marginal[@index='2842' and @letter='153' and @page='377' and @line='9'] -opus/marginalien/marginal[@index='2843' and @letter='153' and @page='377' and @line='9'] -opus/marginalien/marginal[@index='2844' and @letter='153' and @page='377' and @line='10'] -opus/marginalien/marginal[@index='2845' and @letter='153' and @page='377' and @line='18'] -opus/marginalien/marginal[@index='2846' and @letter='153' and @page='377' and @line='20'] -opus/marginalien/marginal[@index='2847' and @letter='153' and @page='377' and @line='21'] -opus/marginalien/marginal[@index='2848' and @letter='153' and @page='377' and @line='24'] -opus/marginalien/marginal[@index='2849' and @letter='153' and @page='377' and @line='28'] -opus/marginalien/marginal[@index='284' and @letter='14' and @page='38' and @line='32'] -opus/marginalien/marginal[@index='2850' and @letter='153' and @page='377' and @line='30'] -opus/marginalien/marginal[@index='2851' and @letter='153' and @page='377' and @line='33'] -opus/marginalien/marginal[@index='2852' and @letter='153' and @page='377' and @line='36'] -opus/marginalien/marginal[@index='2853' and @letter='153' and @page='378' and @line='1'] -opus/marginalien/marginal[@index='2854' and @letter='153' and @page='378' and @line='1'] -opus/marginalien/marginal[@index='2855' and @letter='153' and @page='378' and @line='1'] -opus/marginalien/marginal[@index='2857' and @letter='153' and @page='378' and @line='3'] -opus/marginalien/marginal[@index='2858' and @letter='153' and @page='378' and @line='5'] -opus/marginalien/marginal[@index='2859' and @letter='153' and @page='378' and @line='5'] -opus/marginalien/marginal[@index='285' and @letter='14' and @page='38' and @line='35'] -opus/marginalien/marginal[@index='2860' and @letter='153' and @page='378' and @line='6'] -opus/marginalien/marginal[@index='2863' and @letter='153' and @page='378' and @line='9'] -opus/marginalien/marginal[@index='2865' and @letter='153' and @page='378' and @line='12'] -opus/marginalien/marginal[@index='2866' and @letter='153' and @page='378' and @line='14'] -opus/marginalien/marginal[@index='2867' and @letter='153' and @page='378' and @line='16'] -opus/marginalien/marginal[@index='2868' and @letter='153' and @page='378' and @line='17'] -opus/marginalien/marginal[@index='2869' and @letter='153' and @page='378' and @line='18'] -opus/marginalien/marginal[@index='286' and @letter='14' and @page='39' and @line='1'] -opus/marginalien/marginal[@index='2870' and @letter='153' and @page='378' and @line='19'] -opus/marginalien/marginal[@index='2871' and @letter='153' and @page='378' and @line='24'] -opus/marginalien/marginal[@index='2872' and @letter='153' and @page='378' and @line='25'] -opus/marginalien/marginal[@index='2873' and @letter='153' and @page='378' and @line='26'] -opus/marginalien/marginal[@index='2874' and @letter='153' and @page='378' and @line='30'] -opus/marginalien/marginal[@index='2875' and @letter='153' and @page='378' and @line='34'] -opus/marginalien/marginal[@index='2876' and @letter='153' and @page='378' and @line='34'] -opus/marginalien/marginal[@index='2877' and @letter='153' and @page='379' and @line='1'] -opus/marginalien/marginal[@index='2878' and @letter='153' and @page='379' and @line='1'] -opus/marginalien/marginal[@index='2879' and @letter='153' and @page='379' and @line='2'] -opus/marginalien/marginal[@index='2880' and @letter='153' and @page='379' and @line='13'] -opus/marginalien/marginal[@index='2881' and @letter='153' and @page='379' and @line='15'] -opus/marginalien/marginal[@index='2882' and @letter='153' and @page='379' and @line='16'] -opus/marginalien/marginal[@index='2883' and @letter='153' and @page='379' and @line='25'] -opus/marginalien/marginal[@index='2884' and @letter='153' and @page='379' and @line='27'] -opus/marginalien/marginal[@index='2885' and @letter='153' and @page='379' and @line='29'] -opus/marginalien/marginal[@index='2887' and @letter='153' and @page='379' and @line='30'] -opus/marginalien/marginal[@index='2888' and @letter='153' and @page='379' and @line='31'] -opus/marginalien/marginal[@index='2889' and @letter='153' and @page='379' and @line='35'] -opus/marginalien/marginal[@index='288' and @letter='14' and @page='39' and @line='4'] -opus/marginalien/marginal[@index='2890' and @letter='153' and @page='379' and @line='35'] -opus/marginalien/marginal[@index='2891' and @letter='153' and @page='379' and @line='36'] -opus/marginalien/marginal[@index='2892' and @letter='153' and @page='380' and @line='1'] -opus/marginalien/marginal[@index='2893' and @letter='153' and @page='380' and @line='2'] -opus/marginalien/marginal[@index='2894' and @letter='153' and @page='380' and @line='3'] -opus/marginalien/marginal[@index='2895' and @letter='153' and @page='380' and @line='5'] -opus/marginalien/marginal[@index='2896' and @letter='153' and @page='380' and @line='6'] -opus/marginalien/marginal[@index='2897' and @letter='153' and @page='380' and @line='9'] -opus/marginalien/marginal[@index='2898' and @letter='153' and @page='380' and @line='10'] -opus/marginalien/marginal[@index='2899' and @letter='153' and @page='380' and @line='19'] -opus/marginalien/marginal[@index='289' and @letter='14' and @page='39' and @line='5'] -opus/marginalien/marginal[@index='28' and @letter='2' and @page='4' and @line='36'] -opus/marginalien/marginal[@index='2900' and @letter='153' and @page='380' and @line='21'] -opus/marginalien/marginal[@index='2901' and @letter='153' and @page='380' and @line='24'] -opus/marginalien/marginal[@index='2902' and @letter='153' and @page='380' and @line='25'] -opus/marginalien/marginal[@index='2903' and @letter='153' and @page='380' and @line='29'] -opus/marginalien/marginal[@index='2904' and @letter='153' and @page='380' and @line='30'] -opus/marginalien/marginal[@index='2905' and @letter='153' and @page='380' and @line='31'] -opus/marginalien/marginal[@index='2906' and @letter='153' and @page='380' and @line='31'] -opus/marginalien/marginal[@index='2907' and @letter='153' and @page='380' and @line='33'] -opus/marginalien/marginal[@index='2908' and @letter='153' and @page='380' and @line='36'] -opus/marginalien/marginal[@index='2909' and @letter='153' and @page='380' and @line='37'] -opus/marginalien/marginal[@index='290' and @letter='14' and @page='39' and @line='6'] -opus/marginalien/marginal[@index='2910' and @letter='153' and @page='381' and @line='1'] -opus/marginalien/marginal[@index='2911' and @letter='153' and @page='381' and @line='3'] -opus/marginalien/marginal[@index='2912' and @letter='153' and @page='381' and @line='5'] -opus/marginalien/marginal[@index='2913' and @letter='153' and @page='381' and @line='7'] -opus/marginalien/marginal[@index='2914' and @letter='153' and @page='381' and @line='8'] -opus/marginalien/marginal[@index='2915' and @letter='154' and @page='381' and @line='17'] -opus/marginalien/marginal[@index='2916' and @letter='154' and @page='381' and @line='17'] -opus/marginalien/marginal[@index='2917' and @letter='154' and @page='381' and @line='29'] -opus/marginalien/marginal[@index='2918' and @letter='154' and @page='382' and @line='4'] -opus/marginalien/marginal[@index='2919' and @letter='154' and @page='382' and @line='30'] -opus/marginalien/marginal[@index='291' and @letter='15' and @page='39' and @line='17'] -opus/marginalien/marginal[@index='2920' and @letter='154' and @page='382' and @line='31'] -opus/marginalien/marginal[@index='2921' and @letter='154' and @page='382' and @line='32'] -opus/marginalien/marginal[@index='2922' and @letter='154' and @page='382' and @line='37'] -opus/marginalien/marginal[@index='2923' and @letter='154' and @page='383' and @line='2'] -opus/marginalien/marginal[@index='2924' and @letter='154' and @page='383' and @line='3'] -opus/marginalien/marginal[@index='2925' and @letter='154' and @page='383' and @line='5'] -opus/marginalien/marginal[@index='2926' and @letter='154' and @page='383' and @line='9'] -opus/marginalien/marginal[@index='2927' and @letter='154' and @page='383' and @line='24'] -opus/marginalien/marginal[@index='2928' and @letter='154' and @page='383' and @line='24'] -opus/marginalien/marginal[@index='2929' and @letter='154' and @page='383' and @line='25'] -opus/marginalien/marginal[@index='292' and @letter='15' and @page='39' and @line='20'] -opus/marginalien/marginal[@index='2930' and @letter='154' and @page='383' and @line='35'] -opus/marginalien/marginal[@index='2931' and @letter='154' and @page='384' and @line='3'] -opus/marginalien/marginal[@index='2932' and @letter='154' and @page='384' and @line='5'] -opus/marginalien/marginal[@index='2933' and @letter='154' and @page='384' and @line='9'] -opus/marginalien/marginal[@index='2934' and @letter='154' and @page='384' and @line='13'] -opus/marginalien/marginal[@index='2935' and @letter='154' and @page='384' and @line='14'] -opus/marginalien/marginal[@index='2936' and @letter='154' and @page='384' and @line='16'] -opus/marginalien/marginal[@index='2937' and @letter='154' and @page='384' and @line='25'] -opus/marginalien/marginal[@index='2938' and @letter='154' and @page='384' and @line='27'] -opus/marginalien/marginal[@index='2939' and @letter='154' and @page='384' and @line='31'] -opus/marginalien/marginal[@index='293' and @letter='15' and @page='39' and @line='22'] -opus/marginalien/marginal[@index='2940' and @letter='154' and @page='385' and @line='3'] -opus/marginalien/marginal[@index='2941' and @letter='154' and @page='385' and @line='8'] -opus/marginalien/marginal[@index='2942' and @letter='154' and @page='385' and @line='14'] -opus/marginalien/marginal[@index='2943' and @letter='154' and @page='385' and @line='19'] -opus/marginalien/marginal[@index='2944' and @letter='154' and @page='385' and @line='20'] -opus/marginalien/marginal[@index='2945' and @letter='154' and @page='385' and @line='21'] -opus/marginalien/marginal[@index='2946' and @letter='154' and @page='385' and @line='22'] -opus/marginalien/marginal[@index='2947' and @letter='154' and @page='385' and @line='24'] -opus/marginalien/marginal[@index='2948' and @letter='154' and @page='385' and @line='27'] -opus/marginalien/marginal[@index='2949' and @letter='154' and @page='385' and @line='30'] -opus/marginalien/marginal[@index='294' and @letter='15' and @page='39' and @line='32'] -opus/marginalien/marginal[@index='2950' and @letter='154' and @page='385' and @line='31'] -opus/marginalien/marginal[@index='2951' and @letter='154' and @page='385' and @line='35'] -opus/marginalien/marginal[@index='2952' and @letter='155' and @page='386' and @line='9'] -opus/marginalien/marginal[@index='2953' and @letter='155' and @page='386' and @line='10'] -opus/marginalien/marginal[@index='2954' and @letter='155' and @page='386' and @line='13'] -opus/marginalien/marginal[@index='2955' and @letter='155' and @page='386' and @line='17'] -opus/marginalien/marginal[@index='2956' and @letter='155' and @page='386' and @line='20'] -opus/marginalien/marginal[@index='2957' and @letter='155' and @page='386' and @line='23'] -opus/marginalien/marginal[@index='2958' and @letter='155' and @page='386' and @line='26'] -opus/marginalien/marginal[@index='2959' and @letter='155' and @page='386' and @line='27'] -opus/marginalien/marginal[@index='295' and @letter='15' and @page='40' and @line='1'] -opus/marginalien/marginal[@index='2960' and @letter='155' and @page='386' and @line='29'] -opus/marginalien/marginal[@index='2961' and @letter='155' and @page='386' and @line='30'] -opus/marginalien/marginal[@index='2962' and @letter='155' and @page='386' and @line='32'] -opus/marginalien/marginal[@index='2963' and @letter='155' and @page='387' and @line='4'] -opus/marginalien/marginal[@index='2964' and @letter='155' and @page='387' and @line='11'] -opus/marginalien/marginal[@index='2965' and @letter='155' and @page='387' and @line='19'] -opus/marginalien/marginal[@index='2966' and @letter='155' and @page='387' and @line='22'] -opus/marginalien/marginal[@index='2967' and @letter='155' and @page='387' and @line='23'] -opus/marginalien/marginal[@index='2968' and @letter='155' and @page='387' and @line='34'] -opus/marginalien/marginal[@index='2969' and @letter='155' and @page='387' and @line='35'] -opus/marginalien/marginal[@index='296' and @letter='15' and @page='40' and @line='4'] -opus/marginalien/marginal[@index='2970' and @letter='155' and @page='388' and @line='16'] -opus/marginalien/marginal[@index='2971' and @letter='155' and @page='388' and @line='21'] -opus/marginalien/marginal[@index='2972' and @letter='155' and @page='389' and @line='2'] -opus/marginalien/marginal[@index='2973' and @letter='155' and @page='389' and @line='3'] -opus/marginalien/marginal[@index='2974' and @letter='155' and @page='389' and @line='10'] -opus/marginalien/marginal[@index='2975' and @letter='155' and @page='389' and @line='13'] -opus/marginalien/marginal[@index='2976' and @letter='155' and @page='389' and @line='22'] -opus/marginalien/marginal[@index='2977' and @letter='155' and @page='389' and @line='23'] -opus/marginalien/marginal[@index='2978' and @letter='155' and @page='389' and @line='28'] -opus/marginalien/marginal[@index='2979' and @letter='155' and @page='389' and @line='31'] -opus/marginalien/marginal[@index='297' and @letter='15' and @page='40' and @line='7'] -opus/marginalien/marginal[@index='2980' and @letter='155' and @page='389' and @line='34'] -opus/marginalien/marginal[@index='2981' and @letter='155' and @page='389' and @line='34'] -opus/marginalien/marginal[@index='2982' and @letter='155' and @page='390' and @line='1'] -opus/marginalien/marginal[@index='2983' and @letter='155' and @page='390' and @line='3'] -opus/marginalien/marginal[@index='2984' and @letter='155' and @page='390' and @line='6'] -opus/marginalien/marginal[@index='2985' and @letter='155' and @page='390' and @line='10'] -opus/marginalien/marginal[@index='2986' and @letter='155' and @page='390' and @line='13'] -opus/marginalien/marginal[@index='2987' and @letter='155' and @page='390' and @line='15'] -opus/marginalien/marginal[@index='2988' and @letter='155' and @page='390' and @line='16'] -opus/marginalien/marginal[@index='2989' and @letter='155' and @page='390' and @line='20'] -opus/marginalien/marginal[@index='298' and @letter='15' and @page='40' and @line='8'] -opus/marginalien/marginal[@index='2990' and @letter='155' and @page='390' and @line='28'] -opus/marginalien/marginal[@index='2991' and @letter='155' and @page='390' and @line='31'] -opus/marginalien/marginal[@index='2992' and @letter='155' and @page='390' and @line='35'] -opus/marginalien/marginal[@index='2993' and @letter='155' and @page='390' and @line='37'] -opus/marginalien/marginal[@index='2994' and @letter='155' and @page='391' and @line='2'] -opus/marginalien/marginal[@index='2995' and @letter='155' and @page='391' and @line='3'] -opus/marginalien/marginal[@index='2996' and @letter='155' and @page='391' and @line='3'] -opus/marginalien/marginal[@index='2997' and @letter='155' and @page='391' and @line='5'] -opus/marginalien/marginal[@index='2998' and @letter='155' and @page='391' and @line='6'] -opus/marginalien/marginal[@index='2999' and @letter='156' and @page='391' and @line='16'] -opus/marginalien/marginal[@index='299' and @letter='15' and @page='40' and @line='9'] -opus/marginalien/marginal[@index='29' and @letter='2' and @page='4' and @line='37'] -opus/marginalien/marginal[@index='2' and @letter='1' and @page='1' and @line='17'] -opus/marginalien/marginal[@index='3000' and @letter='156' and @page='391' and @line='17'] -opus/marginalien/marginal[@index='3001' and @letter='156' and @page='391' and @line='23'] -opus/marginalien/marginal[@index='3002' and @letter='156' and @page='391' and @line='27'] -opus/marginalien/marginal[@index='3003' and @letter='156' and @page='391' and @line='34'] -opus/marginalien/marginal[@index='3004' and @letter='156' and @page='392' and @line='11'] -opus/marginalien/marginal[@index='3005' and @letter='156' and @page='392' and @line='11'] -opus/marginalien/marginal[@index='3006' and @letter='156' and @page='392' and @line='15'] -opus/marginalien/marginal[@index='3007' and @letter='156' and @page='392' and @line='15'] -opus/marginalien/marginal[@index='3008' and @letter='156' and @page='392' and @line='16'] -opus/marginalien/marginal[@index='3009' and @letter='156' and @page='392' and @line='17'] -opus/marginalien/marginal[@index='300' and @letter='15' and @page='40' and @line='14'] -opus/marginalien/marginal[@index='3010' and @letter='156' and @page='392' and @line='19'] -opus/marginalien/marginal[@index='3011' and @letter='156' and @page='392' and @line='25'] -opus/marginalien/marginal[@index='3012' and @letter='156' and @page='392' and @line='28'] -opus/marginalien/marginal[@index='3013' and @letter='156' and @page='392' and @line='31'] -opus/marginalien/marginal[@index='3014' and @letter='156' and @page='393' and @line='2'] -opus/marginalien/marginal[@index='3015' and @letter='156' and @page='393' and @line='3'] -opus/marginalien/marginal[@index='3016' and @letter='156' and @page='393' and @line='4'] -opus/marginalien/marginal[@index='3017' and @letter='156' and @page='393' and @line='4'] -opus/marginalien/marginal[@index='3018' and @letter='156' and @page='393' and @line='19'] -opus/marginalien/marginal[@index='3019' and @letter='156' and @page='393' and @line='26'] -opus/marginalien/marginal[@index='301' and @letter='15' and @page='40' and @line='16'] -opus/marginalien/marginal[@index='3020' and @letter='156' and @page='393' and @line='29'] -opus/marginalien/marginal[@index='3021' and @letter='156' and @page='393' and @line='29'] -opus/marginalien/marginal[@index='3022' and @letter='156' and @page='393' and @line='29'] -opus/marginalien/marginal[@index='3023' and @letter='156' and @page='393' and @line='34'] -opus/marginalien/marginal[@index='3024' and @letter='156' and @page='393' and @line='37'] -opus/marginalien/marginal[@index='3025' and @letter='156' and @page='394' and @line='2'] -opus/marginalien/marginal[@index='3026' and @letter='156' and @page='394' and @line='5'] -opus/marginalien/marginal[@index='3027' and @letter='156' and @page='394' and @line='6'] -opus/marginalien/marginal[@index='3028' and @letter='156' and @page='394' and @line='11'] -opus/marginalien/marginal[@index='3029' and @letter='156' and @page='394' and @line='14'] -opus/marginalien/marginal[@index='302' and @letter='15' and @page='40' and @line='25'] -opus/marginalien/marginal[@index='3030' and @letter='156' and @page='394' and @line='23'] -opus/marginalien/marginal[@index='3031' and @letter='156' and @page='394' and @line='25'] -opus/marginalien/marginal[@index='3032' and @letter='156' and @page='394' and @line='27'] -opus/marginalien/marginal[@index='3033' and @letter='156' and @page='394' and @line='30'] -opus/marginalien/marginal[@index='3034' and @letter='156' and @page='394' and @line='35'] -opus/marginalien/marginal[@index='3035' and @letter='156' and @page='395' and @line='1'] -opus/marginalien/marginal[@index='3036' and @letter='156' and @page='395' and @line='3'] -opus/marginalien/marginal[@index='3037' and @letter='156' and @page='395' and @line='19'] -opus/marginalien/marginal[@index='3038' and @letter='156' and @page='395' and @line='20'] -opus/marginalien/marginal[@index='3039' and @letter='156' and @page='395' and @line='30'] -opus/marginalien/marginal[@index='303' and @letter='15' and @page='40' and @line='36'] -opus/marginalien/marginal[@index='3040' and @letter='156' and @page='395' and @line='33'] -opus/marginalien/marginal[@index='3041' and @letter='157' and @page='396' and @line='3'] -opus/marginalien/marginal[@index='3042' and @letter='157' and @page='396' and @line='4'] -opus/marginalien/marginal[@index='3043' and @letter='157' and @page='396' and @line='13'] -opus/marginalien/marginal[@index='3044' and @letter='157' and @page='396' and @line='16'] -opus/marginalien/marginal[@index='3045' and @letter='157' and @page='396' and @line='16'] -opus/marginalien/marginal[@index='3046' and @letter='157' and @page='396' and @line='20'] -opus/marginalien/marginal[@index='3047' and @letter='157' and @page='396' and @line='25'] -opus/marginalien/marginal[@index='3048' and @letter='157' and @page='396' and @line='29'] -opus/marginalien/marginal[@index='3049' and @letter='157' and @page='396' and @line='33'] -opus/marginalien/marginal[@index='304' and @letter='15' and @page='41' and @line='2'] -opus/marginalien/marginal[@index='3050' and @letter='157' and @page='397' and @line='1'] -opus/marginalien/marginal[@index='3051' and @letter='157' and @page='397' and @line='1'] -opus/marginalien/marginal[@index='3052' and @letter='157' and @page='397' and @line='2'] -opus/marginalien/marginal[@index='3053' and @letter='157' and @page='397' and @line='9'] -opus/marginalien/marginal[@index='3054' and @letter='157' and @page='397' and @line='14'] -opus/marginalien/marginal[@index='3055' and @letter='157' and @page='397' and @line='29'] -opus/marginalien/marginal[@index='3056' and @letter='157' and @page='397' and @line='31'] -opus/marginalien/marginal[@index='3057' and @letter='157' and @page='398' and @line='1'] -opus/marginalien/marginal[@index='3058' and @letter='157' and @page='398' and @line='6'] -opus/marginalien/marginal[@index='3059' and @letter='157' and @page='398' and @line='7'] -opus/marginalien/marginal[@index='305' and @letter='15' and @page='41' and @line='6'] -opus/marginalien/marginal[@index='3060' and @letter='157' and @page='398' and @line='8'] -opus/marginalien/marginal[@index='3061' and @letter='157' and @page='398' and @line='15'] -opus/marginalien/marginal[@index='3062' and @letter='157' and @page='398' and @line='16'] -opus/marginalien/marginal[@index='3063' and @letter='157' and @page='398' and @line='19'] -opus/marginalien/marginal[@index='3064' and @letter='157' and @page='398' and @line='20'] -opus/marginalien/marginal[@index='3065' and @letter='157' and @page='398' and @line='20'] -opus/marginalien/marginal[@index='3066' and @letter='157' and @page='398' and @line='21'] -opus/marginalien/marginal[@index='3067' and @letter='157' and @page='398' and @line='28'] -opus/marginalien/marginal[@index='3068' and @letter='157' and @page='398' and @line='29'] -opus/marginalien/marginal[@index='3069' and @letter='157' and @page='398' and @line='29'] -opus/marginalien/marginal[@index='306' and @letter='15' and @page='41' and @line='25'] -opus/marginalien/marginal[@index='3070' and @letter='157' and @page='398' and @line='34'] -opus/marginalien/marginal[@index='3071' and @letter='157' and @page='398' and @line='37'] -opus/marginalien/marginal[@index='3072' and @letter='157' and @page='398' and @line='37'] -opus/marginalien/marginal[@index='3073' and @letter='157' and @page='399' and @line='5'] -opus/marginalien/marginal[@index='3074' and @letter='157' and @page='399' and @line='6'] -opus/marginalien/marginal[@index='3075' and @letter='157' and @page='399' and @line='11'] -opus/marginalien/marginal[@index='3076' and @letter='157' and @page='399' and @line='14'] -opus/marginalien/marginal[@index='3077' and @letter='157' and @page='399' and @line='24'] -opus/marginalien/marginal[@index='3078' and @letter='157' and @page='399' and @line='28'] -opus/marginalien/marginal[@index='3079' and @letter='157' and @page='399' and @line='30'] -opus/marginalien/marginal[@index='307' and @letter='15' and @page='41' and @line='26'] -opus/marginalien/marginal[@index='3080' and @letter='157' and @page='399' and @line='37'] -opus/marginalien/marginal[@index='3081' and @letter='157' and @page='400' and @line='1'] -opus/marginalien/marginal[@index='3082' and @letter='157' and @page='400' and @line='4'] -opus/marginalien/marginal[@index='3083' and @letter='157' and @page='400' and @line='5'] -opus/marginalien/marginal[@index='3084' and @letter='157' and @page='400' and @line='6'] -opus/marginalien/marginal[@index='3085' and @letter='157' and @page='400' and @line='6'] -opus/marginalien/marginal[@index='3086' and @letter='157' and @page='400' and @line='8'] -opus/marginalien/marginal[@index='3087' and @letter='157' and @page='400' and @line='10'] -opus/marginalien/marginal[@index='3088' and @letter='157' and @page='400' and @line='12'] -opus/marginalien/marginal[@index='3089' and @letter='157' and @page='400' and @line='13'] -opus/marginalien/marginal[@index='308' and @letter='15' and @page='41' and @line='28'] -opus/marginalien/marginal[@index='3090' and @letter='157' and @page='400' and @line='16'] -opus/marginalien/marginal[@index='3091' and @letter='157' and @page='400' and @line='18'] -opus/marginalien/marginal[@index='3092' and @letter='157' and @page='400' and @line='20'] -opus/marginalien/marginal[@index='3093' and @letter='157' and @page='400' and @line='22'] -opus/marginalien/marginal[@index='3094' and @letter='157' and @page='400' and @line='24'] -opus/marginalien/marginal[@index='3095' and @letter='157' and @page='400' and @line='24'] -opus/marginalien/marginal[@index='3096' and @letter='158' and @page='400' and @line='29'] -opus/marginalien/marginal[@index='3097' and @letter='158' and @page='400' and @line='29'] -opus/marginalien/marginal[@index='3098' and @letter='158' and @page='400' and @line='33'] -opus/marginalien/marginal[@index='3099' and @letter='158' and @page='400' and @line='34'] -opus/marginalien/marginal[@index='309' and @letter='15' and @page='41' and @line='29'] -opus/marginalien/marginal[@index='30' and @letter='2' and @page='5' and @line='7'] -opus/marginalien/marginal[@index='3100' and @letter='158' and @page='401' and @line='5'] -opus/marginalien/marginal[@index='3101' and @letter='158' and @page='401' and @line='5'] -opus/marginalien/marginal[@index='3102' and @letter='158' and @page='401' and @line='6'] -opus/marginalien/marginal[@index='3103' and @letter='158' and @page='401' and @line='7'] -opus/marginalien/marginal[@index='3104' and @letter='158' and @page='401' and @line='8'] -opus/marginalien/marginal[@index='3105' and @letter='158' and @page='401' and @line='10'] -opus/marginalien/marginal[@index='3106' and @letter='158' and @page='401' and @line='11'] -opus/marginalien/marginal[@index='3107' and @letter='158' and @page='401' and @line='14'] -opus/marginalien/marginal[@index='3108' and @letter='158' and @page='401' and @line='14'] -opus/marginalien/marginal[@index='3109' and @letter='158' and @page='401' and @line='15'] -opus/marginalien/marginal[@index='310' and @letter='15' and @page='42' and @line='1'] -opus/marginalien/marginal[@index='3110' and @letter='158' and @page='401' and @line='17'] -opus/marginalien/marginal[@index='3111' and @letter='158' and @page='401' and @line='17'] -opus/marginalien/marginal[@index='3112' and @letter='158' and @page='401' and @line='21'] -opus/marginalien/marginal[@index='3113' and @letter='158' and @page='401' and @line='22'] -opus/marginalien/marginal[@index='3114' and @letter='158' and @page='401' and @line='23'] -opus/marginalien/marginal[@index='3115' and @letter='158' and @page='401' and @line='23'] -opus/marginalien/marginal[@index='3116' and @letter='158' and @page='401' and @line='26'] -opus/marginalien/marginal[@index='3117' and @letter='158' and @page='401' and @line='26'] -opus/marginalien/marginal[@index='3118' and @letter='158' and @page='401' and @line='28'] -opus/marginalien/marginal[@index='3119' and @letter='158' and @page='401' and @line='28'] -opus/marginalien/marginal[@index='311' and @letter='15' and @page='42' and @line='14'] -opus/marginalien/marginal[@index='3120' and @letter='158' and @page='401' and @line='30'] -opus/marginalien/marginal[@index='3121' and @letter='158' and @page='401' and @line='31'] -opus/marginalien/marginal[@index='3122' and @letter='158' and @page='401' and @line='32'] -opus/marginalien/marginal[@index='3123' and @letter='158' and @page='401' and @line='33'] -opus/marginalien/marginal[@index='3124' and @letter='158' and @page='402' and @line='3'] -opus/marginalien/marginal[@index='3125' and @letter='158' and @page='402' and @line='5'] -opus/marginalien/marginal[@index='3126' and @letter='158' and @page='402' and @line='7'] -opus/marginalien/marginal[@index='3127' and @letter='158' and @page='402' and @line='8'] -opus/marginalien/marginal[@index='3128' and @letter='158' and @page='402' and @line='12'] -opus/marginalien/marginal[@index='3129' and @letter='158' and @page='402' and @line='13'] -opus/marginalien/marginal[@index='312' and @letter='15' and @page='42' and @line='15'] -opus/marginalien/marginal[@index='3130' and @letter='158' and @page='402' and @line='14'] -opus/marginalien/marginal[@index='3131' and @letter='158' and @page='402' and @line='15'] -opus/marginalien/marginal[@index='3132' and @letter='158' and @page='402' and @line='16'] -opus/marginalien/marginal[@index='3133' and @letter='158' and @page='402' and @line='17'] -opus/marginalien/marginal[@index='3134' and @letter='158' and @page='402' and @line='18'] -opus/marginalien/marginal[@index='3135' and @letter='158' and @page='402' and @line='19'] -opus/marginalien/marginal[@index='3136' and @letter='158' and @page='402' and @line='20'] -opus/marginalien/marginal[@index='3137' and @letter='158' and @page='402' and @line='24'] -opus/marginalien/marginal[@index='3138' and @letter='158' and @page='402' and @line='25'] -opus/marginalien/marginal[@index='3139' and @letter='158' and @page='402' and @line='26'] -opus/marginalien/marginal[@index='313' and @letter='15' and @page='42' and @line='17'] -opus/marginalien/marginal[@index='3140' and @letter='158' and @page='402' and @line='30'] -opus/marginalien/marginal[@index='3141' and @letter='159' and @page='402' and @line='33'] -opus/marginalien/marginal[@index='3142' and @letter='159' and @page='402' and @line='34'] -opus/marginalien/marginal[@index='3143' and @letter='159' and @page='402' and @line='34'] -opus/marginalien/marginal[@index='3144' and @letter='159' and @page='403' and @line='1'] -opus/marginalien/marginal[@index='3145' and @letter='159' and @page='403' and @line='6'] -opus/marginalien/marginal[@index='3146' and @letter='159' and @page='403' and @line='6'] -opus/marginalien/marginal[@index='3147' and @letter='159' and @page='403' and @line='7'] -opus/marginalien/marginal[@index='3148' and @letter='159' and @page='403' and @line='8'] -opus/marginalien/marginal[@index='3149' and @letter='159' and @page='403' and @line='8'] -opus/marginalien/marginal[@index='314' and @letter='15' and @page='42' and @line='17'] -opus/marginalien/marginal[@index='3150' and @letter='159' and @page='403' and @line='9'] -opus/marginalien/marginal[@index='3151' and @letter='159' and @page='403' and @line='15'] -opus/marginalien/marginal[@index='3152' and @letter='159' and @page='403' and @line='16'] -opus/marginalien/marginal[@index='3153' and @letter='159' and @page='403' and @line='18'] -opus/marginalien/marginal[@index='3154' and @letter='159' and @page='403' and @line='19'] -opus/marginalien/marginal[@index='3155' and @letter='159' and @page='403' and @line='24'] -opus/marginalien/marginal[@index='3156' and @letter='159' and @page='403' and @line='28'] -opus/marginalien/marginal[@index='3157' and @letter='159' and @page='403' and @line='29'] -opus/marginalien/marginal[@index='3158' and @letter='159' and @page='403' and @line='32'] -opus/marginalien/marginal[@index='3159' and @letter='159' and @page='403' and @line='33'] -opus/marginalien/marginal[@index='315' and @letter='15' and @page='42' and @line='17'] -opus/marginalien/marginal[@index='3160' and @letter='159' and @page='403' and @line='36'] -opus/marginalien/marginal[@index='3161' and @letter='159' and @page='404' and @line='1'] -opus/marginalien/marginal[@index='3162' and @letter='159' and @page='404' and @line='4'] -opus/marginalien/marginal[@index='3163' and @letter='159' and @page='404' and @line='7'] -opus/marginalien/marginal[@index='3164' and @letter='159' and @page='404' and @line='8'] -opus/marginalien/marginal[@index='3165' and @letter='159' and @page='404' and @line='9'] -opus/marginalien/marginal[@index='3166' and @letter='159' and @page='404' and @line='9'] -opus/marginalien/marginal[@index='3167' and @letter='159' and @page='404' and @line='11'] -opus/marginalien/marginal[@index='3168' and @letter='159' and @page='404' and @line='17'] -opus/marginalien/marginal[@index='3169' and @letter='159' and @page='404' and @line='19'] -opus/marginalien/marginal[@index='316' and @letter='15' and @page='42' and @line='18'] -opus/marginalien/marginal[@index='3170' and @letter='159' and @page='404' and @line='31'] -opus/marginalien/marginal[@index='3171' and @letter='159' and @page='405' and @line='3'] -opus/marginalien/marginal[@index='3172' and @letter='159' and @page='405' and @line='6'] -opus/marginalien/marginal[@index='3173' and @letter='159' and @page='405' and @line='7'] -opus/marginalien/marginal[@index='3174' and @letter='159' and @page='405' and @line='24'] -opus/marginalien/marginal[@index='3175' and @letter='159' and @page='405' and @line='25'] -opus/marginalien/marginal[@index='3176' and @letter='159' and @page='405' and @line='28'] -opus/marginalien/marginal[@index='3177' and @letter='159' and @page='406' and @line='23'] -opus/marginalien/marginal[@index='3178' and @letter='159' and @page='406' and @line='24'] -opus/marginalien/marginal[@index='3179' and @letter='159' and @page='406' and @line='27'] -opus/marginalien/marginal[@index='317' and @letter='15' and @page='42' and @line='19'] -opus/marginalien/marginal[@index='3180' and @letter='159' and @page='406' and @line='30'] -opus/marginalien/marginal[@index='3181' and @letter='159' and @page='406' and @line='31'] -opus/marginalien/marginal[@index='3182' and @letter='159' and @page='406' and @line='35'] -opus/marginalien/marginal[@index='3183' and @letter='159' and @page='407' and @line='2'] -opus/marginalien/marginal[@index='3185' and @letter='159' and @page='407' and @line='9'] -opus/marginalien/marginal[@index='3186' and @letter='159' and @page='407' and @line='11'] -opus/marginalien/marginal[@index='3187' and @letter='159' and @page='407' and @line='14'] -opus/marginalien/marginal[@index='3188' and @letter='159' and @page='407' and @line='17'] -opus/marginalien/marginal[@index='3189' and @letter='159' and @page='407' and @line='24'] -opus/marginalien/marginal[@index='318' and @letter='15' and @page='42' and @line='21'] -opus/marginalien/marginal[@index='3190' and @letter='159' and @page='407' and @line='30'] -opus/marginalien/marginal[@index='3191' and @letter='159' and @page='407' and @line='34'] -opus/marginalien/marginal[@index='3192' and @letter='160' and @page='408' and @line='3'] -opus/marginalien/marginal[@index='3193' and @letter='160' and @page='408' and @line='4'] -opus/marginalien/marginal[@index='3194' and @letter='160' and @page='408' and @line='7'] -opus/marginalien/marginal[@index='3195' and @letter='160' and @page='408' and @line='12'] -opus/marginalien/marginal[@index='3196' and @letter='160' and @page='408' and @line='12'] -opus/marginalien/marginal[@index='3197' and @letter='160' and @page='408' and @line='16'] -opus/marginalien/marginal[@index='3198' and @letter='160' and @page='408' and @line='19'] -opus/marginalien/marginal[@index='3199' and @letter='160' and @page='408' and @line='21'] -opus/marginalien/marginal[@index='319' and @letter='15' and @page='42' and @line='29'] -opus/marginalien/marginal[@index='31' and @letter='2' and @page='5' and @line='7'] -opus/marginalien/marginal[@index='3200' and @letter='160' and @page='408' and @line='26'] -opus/marginalien/marginal[@index='3201' and @letter='160' and @page='408' and @line='26'] -opus/marginalien/marginal[@index='3202' and @letter='160' and @page='408' and @line='26'] -opus/marginalien/marginal[@index='3203' and @letter='160' and @page='408' and @line='27'] -opus/marginalien/marginal[@index='3204' and @letter='160' and @page='408' and @line='27'] -opus/marginalien/marginal[@index='3205' and @letter='160' and @page='408' and @line='27'] -opus/marginalien/marginal[@index='3206' and @letter='160' and @page='408' and @line='28'] -opus/marginalien/marginal[@index='3207' and @letter='160' and @page='408' and @line='29'] -opus/marginalien/marginal[@index='3208' and @letter='160' and @page='408' and @line='31'] -opus/marginalien/marginal[@index='3209' and @letter='160' and @page='408' and @line='32'] -opus/marginalien/marginal[@index='320' and @letter='15' and @page='42' and @line='32'] -opus/marginalien/marginal[@index='3210' and @letter='160' and @page='408' and @line='32'] -opus/marginalien/marginal[@index='3211' and @letter='160' and @page='408' and @line='34'] -opus/marginalien/marginal[@index='3212' and @letter='160' and @page='408' and @line='35'] -opus/marginalien/marginal[@index='3213' and @letter='160' and @page='408' and @line='35'] -opus/marginalien/marginal[@index='3214' and @letter='160' and @page='408' and @line='35'] -opus/marginalien/marginal[@index='3215' and @letter='160' and @page='409' and @line='1'] -opus/marginalien/marginal[@index='3216' and @letter='160' and @page='409' and @line='1'] -opus/marginalien/marginal[@index='3217' and @letter='160' and @page='409' and @line='1'] -opus/marginalien/marginal[@index='3218' and @letter='160' and @page='409' and @line='3'] -opus/marginalien/marginal[@index='3219' and @letter='160' and @page='409' and @line='3'] -opus/marginalien/marginal[@index='321' and @letter='16' and @page='43' and @line='14'] -opus/marginalien/marginal[@index='3220' and @letter='160' and @page='409' and @line='4'] -opus/marginalien/marginal[@index='3221' and @letter='160' and @page='409' and @line='5'] -opus/marginalien/marginal[@index='3222' and @letter='160' and @page='409' and @line='6'] -opus/marginalien/marginal[@index='3223' and @letter='160' and @page='409' and @line='6'] -opus/marginalien/marginal[@index='3224' and @letter='160' and @page='409' and @line='7'] -opus/marginalien/marginal[@index='3225' and @letter='160' and @page='409' and @line='7'] -opus/marginalien/marginal[@index='3226' and @letter='160' and @page='409' and @line='8'] -opus/marginalien/marginal[@index='3227' and @letter='160' and @page='409' and @line='9'] -opus/marginalien/marginal[@index='3228' and @letter='160' and @page='409' and @line='11'] -opus/marginalien/marginal[@index='3229' and @letter='160' and @page='409' and @line='11'] -opus/marginalien/marginal[@index='322' and @letter='16' and @page='43' and @line='32'] -opus/marginalien/marginal[@index='3230' and @letter='160' and @page='409' and @line='12'] -opus/marginalien/marginal[@index='3231' and @letter='160' and @page='409' and @line='12'] -opus/marginalien/marginal[@index='3232' and @letter='160' and @page='409' and @line='13'] -opus/marginalien/marginal[@index='3233' and @letter='160' and @page='409' and @line='13'] -opus/marginalien/marginal[@index='3234' and @letter='160' and @page='409' and @line='15'] -opus/marginalien/marginal[@index='3235' and @letter='160' and @page='409' and @line='18'] -opus/marginalien/marginal[@index='3236' and @letter='160' and @page='409' and @line='18'] -opus/marginalien/marginal[@index='3237' and @letter='160' and @page='409' and @line='19'] -opus/marginalien/marginal[@index='3238' and @letter='160' and @page='409' and @line='20'] -opus/marginalien/marginal[@index='3239' and @letter='160' and @page='409' and @line='21'] -opus/marginalien/marginal[@index='323' and @letter='16' and @page='44' and @line='15'] -opus/marginalien/marginal[@index='3240' and @letter='160' and @page='409' and @line='22'] -opus/marginalien/marginal[@index='3241' and @letter='160' and @page='409' and @line='22'] -opus/marginalien/marginal[@index='3242' and @letter='160' and @page='409' and @line='23'] -opus/marginalien/marginal[@index='3243' and @letter='160' and @page='409' and @line='25'] -opus/marginalien/marginal[@index='3244' and @letter='160' and @page='409' and @line='25'] -opus/marginalien/marginal[@index='3245' and @letter='160' and @page='409' and @line='26'] -opus/marginalien/marginal[@index='3246' and @letter='160' and @page='409' and @line='26'] -opus/marginalien/marginal[@index='3247' and @letter='160' and @page='409' and @line='27'] -opus/marginalien/marginal[@index='3248' and @letter='160' and @page='409' and @line='28'] -opus/marginalien/marginal[@index='3249' and @letter='160' and @page='409' and @line='29'] -opus/marginalien/marginal[@index='324' and @letter='16' and @page='44' and @line='30'] -opus/marginalien/marginal[@index='3250' and @letter='160' and @page='409' and @line='30'] -opus/marginalien/marginal[@index='3251' and @letter='160' and @page='409' and @line='31'] -opus/marginalien/marginal[@index='3252' and @letter='160' and @page='409' and @line='31'] -opus/marginalien/marginal[@index='3253' and @letter='160' and @page='409' and @line='33'] -opus/marginalien/marginal[@index='3254' and @letter='160' and @page='409' and @line='33'] -opus/marginalien/marginal[@index='3255' and @letter='160' and @page='409' and @line='34'] -opus/marginalien/marginal[@index='3256' and @letter='160' and @page='409' and @line='35'] -opus/marginalien/marginal[@index='3257' and @letter='160' and @page='409' and @line='36'] -opus/marginalien/marginal[@index='3258' and @letter='160' and @page='410' and @line='3'] -opus/marginalien/marginal[@index='3259' and @letter='160' and @page='410' and @line='6'] -opus/marginalien/marginal[@index='325' and @letter='16' and @page='44' and @line='35'] -opus/marginalien/marginal[@index='3260' and @letter='160' and @page='410' and @line='9'] -opus/marginalien/marginal[@index='3261' and @letter='160' and @page='410' and @line='12'] -opus/marginalien/marginal[@index='3262' and @letter='160' and @page='410' and @line='15'] -opus/marginalien/marginal[@index='3263' and @letter='160' and @page='410' and @line='19'] -opus/marginalien/marginal[@index='3264' and @letter='160' and @page='410' and @line='31'] -opus/marginalien/marginal[@index='3265' and @letter='160' and @page='410' and @line='34'] -opus/marginalien/marginal[@index='3266' and @letter='160' and @page='411' and @line='1'] -opus/marginalien/marginal[@index='3267' and @letter='160' and @page='411' and @line='3'] -opus/marginalien/marginal[@index='3268' and @letter='160' and @page='411' and @line='8'] -opus/marginalien/marginal[@index='3269' and @letter='160' and @page='411' and @line='10'] -opus/marginalien/marginal[@index='326' and @letter='16' and @page='45' and @line='1'] -opus/marginalien/marginal[@index='3270' and @letter='160' and @page='411' and @line='12'] -opus/marginalien/marginal[@index='3271' and @letter='160' and @page='411' and @line='13'] -opus/marginalien/marginal[@index='3272' and @letter='160' and @page='411' and @line='19'] -opus/marginalien/marginal[@index='3273' and @letter='161' and @page='411' and @line='32'] -opus/marginalien/marginal[@index='3274' and @letter='161' and @page='411' and @line='33'] -opus/marginalien/marginal[@index='3275' and @letter='161' and @page='412' and @line='7'] -opus/marginalien/marginal[@index='3276' and @letter='161' and @page='412' and @line='13'] -opus/marginalien/marginal[@index='3277' and @letter='161' and @page='412' and @line='15'] -opus/marginalien/marginal[@index='3278' and @letter='161' and @page='412' and @line='16'] -opus/marginalien/marginal[@index='3279' and @letter='161' and @page='412' and @line='18'] -opus/marginalien/marginal[@index='327' and @letter='16' and @page='45' and @line='4'] -opus/marginalien/marginal[@index='3280' and @letter='161' and @page='412' and @line='20'] -opus/marginalien/marginal[@index='3281' and @letter='161' and @page='412' and @line='21'] -opus/marginalien/marginal[@index='3282' and @letter='161' and @page='412' and @line='31'] -opus/marginalien/marginal[@index='3283' and @letter='161' and @page='412' and @line='36'] -opus/marginalien/marginal[@index='3284' and @letter='161' and @page='413' and @line='2'] -opus/marginalien/marginal[@index='3285' and @letter='161' and @page='413' and @line='4'] -opus/marginalien/marginal[@index='3286' and @letter='161' and @page='413' and @line='7'] -opus/marginalien/marginal[@index='3287' and @letter='161' and @page='413' and @line='20'] -opus/marginalien/marginal[@index='3288' and @letter='161' and @page='413' and @line='23'] -opus/marginalien/marginal[@index='3289' and @letter='161' and @page='413' and @line='36'] -opus/marginalien/marginal[@index='328' and @letter='16' and @page='45' and @line='6'] -opus/marginalien/marginal[@index='3290' and @letter='161' and @page='414' and @line='5'] -opus/marginalien/marginal[@index='3291' and @letter='161' and @page='414' and @line='6'] -opus/marginalien/marginal[@index='3292' and @letter='161' and @page='414' and @line='13'] -opus/marginalien/marginal[@index='3293' and @letter='161' and @page='414' and @line='15'] -opus/marginalien/marginal[@index='3294' and @letter='161' and @page='414' and @line='22'] -opus/marginalien/marginal[@index='3295' and @letter='161' and @page='414' and @line='23'] -opus/marginalien/marginal[@index='3296' and @letter='161' and @page='414' and @line='25'] -opus/marginalien/marginal[@index='3297' and @letter='161' and @page='414' and @line='26'] -opus/marginalien/marginal[@index='3298' and @letter='161' and @page='414' and @line='27'] -opus/marginalien/marginal[@index='3299' and @letter='161' and @page='414' and @line='30'] -opus/marginalien/marginal[@index='329' and @letter='16' and @page='45' and @line='11'] -opus/marginalien/marginal[@index='32' and @letter='3' and @page='5' and @line='11'] -opus/marginalien/marginal[@index='3300' and @letter='161' and @page='414' and @line='33'] -opus/marginalien/marginal[@index='3301' and @letter='161' and @page='414' and @line='34'] -opus/marginalien/marginal[@index='3302' and @letter='161' and @page='415' and @line='5'] -opus/marginalien/marginal[@index='3303' and @letter='161' and @page='415' and @line='13'] -opus/marginalien/marginal[@index='3304' and @letter='161' and @page='415' and @line='17'] -opus/marginalien/marginal[@index='3305' and @letter='161' and @page='415' and @line='21'] -opus/marginalien/marginal[@index='3306' and @letter='161' and @page='415' and @line='22'] -opus/marginalien/marginal[@index='3307' and @letter='161' and @page='415' and @line='24'] -opus/marginalien/marginal[@index='3308' and @letter='161' and @page='415' and @line='25'] -opus/marginalien/marginal[@index='3309' and @letter='161' and @page='415' and @line='27'] -opus/marginalien/marginal[@index='330' and @letter='16' and @page='45' and @line='13'] -opus/marginalien/marginal[@index='3310' and @letter='161' and @page='415' and @line='28'] -opus/marginalien/marginal[@index='3311' and @letter='161' and @page='415' and @line='31'] -opus/marginalien/marginal[@index='3312' and @letter='161' and @page='415' and @line='32'] -opus/marginalien/marginal[@index='3313' and @letter='161' and @page='416' and @line='1'] -opus/marginalien/marginal[@index='3314' and @letter='161' and @page='416' and @line='2'] -opus/marginalien/marginal[@index='3315' and @letter='161' and @page='416' and @line='8'] -opus/marginalien/marginal[@index='3316' and @letter='161' and @page='416' and @line='11'] -opus/marginalien/marginal[@index='3317' and @letter='161' and @page='416' and @line='12'] -opus/marginalien/marginal[@index='3318' and @letter='161' and @page='416' and @line='17'] -opus/marginalien/marginal[@index='3319' and @letter='161' and @page='416' and @line='20'] -opus/marginalien/marginal[@index='331' and @letter='16' and @page='45' and @line='15'] -opus/marginalien/marginal[@index='3320' and @letter='161' and @page='416' and @line='21'] -opus/marginalien/marginal[@index='3321' and @letter='161' and @page='416' and @line='22'] -opus/marginalien/marginal[@index='3322' and @letter='161' and @page='416' and @line='23'] -opus/marginalien/marginal[@index='3323' and @letter='161' and @page='416' and @line='27'] -opus/marginalien/marginal[@index='3324' and @letter='161' and @page='416' and @line='30'] -opus/marginalien/marginal[@index='3325' and @letter='161' and @page='416' and @line='33'] -opus/marginalien/marginal[@index='3326' and @letter='161' and @page='417' and @line='3'] -opus/marginalien/marginal[@index='3327' and @letter='161' and @page='417' and @line='14'] -opus/marginalien/marginal[@index='3328' and @letter='161' and @page='417' and @line='16'] -opus/marginalien/marginal[@index='3329' and @letter='161' and @page='417' and @line='28'] -opus/marginalien/marginal[@index='332' and @letter='16' and @page='45' and @line='24'] -opus/marginalien/marginal[@index='3330' and @letter='161' and @page='417' and @line='29'] -opus/marginalien/marginal[@index='3331' and @letter='161' and @page='417' and @line='30'] -opus/marginalien/marginal[@index='3332' and @letter='161' and @page='418' and @line='12'] -opus/marginalien/marginal[@index='3333' and @letter='161' and @page='418' and @line='16'] -opus/marginalien/marginal[@index='3334' and @letter='161' and @page='418' and @line='17'] -opus/marginalien/marginal[@index='3335' and @letter='161' and @page='418' and @line='18'] -opus/marginalien/marginal[@index='3336' and @letter='161' and @page='418' and @line='21'] -opus/marginalien/marginal[@index='3337' and @letter='161' and @page='418' and @line='23'] -opus/marginalien/marginal[@index='3338' and @letter='161' and @page='418' and @line='29'] -opus/marginalien/marginal[@index='3339' and @letter='161' and @page='418' and @line='29'] -opus/marginalien/marginal[@index='333' and @letter='16' and @page='45' and @line='36'] -opus/marginalien/marginal[@index='3340' and @letter='161' and @page='418' and @line='33'] -opus/marginalien/marginal[@index='3341' and @letter='161' and @page='418' and @line='35'] -opus/marginalien/marginal[@index='3342' and @letter='161' and @page='419' and @line='6'] -opus/marginalien/marginal[@index='3343' and @letter='161' and @page='419' and @line='10'] -opus/marginalien/marginal[@index='3344' and @letter='161' and @page='419' and @line='15'] -opus/marginalien/marginal[@index='3345' and @letter='161' and @page='419' and @line='16'] -opus/marginalien/marginal[@index='3346' and @letter='161' and @page='419' and @line='25'] -opus/marginalien/marginal[@index='3347' and @letter='161' and @page='419' and @line='35'] -opus/marginalien/marginal[@index='3348' and @letter='161' and @page='420' and @line='1'] -opus/marginalien/marginal[@index='3349' and @letter='161' and @page='420' and @line='12'] -opus/marginalien/marginal[@index='334' and @letter='16' and @page='46' and @line='9'] -opus/marginalien/marginal[@index='3350' and @letter='161' and @page='420' and @line='14'] -opus/marginalien/marginal[@index='3351' and @letter='161' and @page='420' and @line='15'] -opus/marginalien/marginal[@index='3352' and @letter='161' and @page='420' and @line='19'] -opus/marginalien/marginal[@index='3353' and @letter='161' and @page='420' and @line='20'] -opus/marginalien/marginal[@index='3354' and @letter='161' and @page='420' and @line='30'] -opus/marginalien/marginal[@index='3355' and @letter='161' and @page='420' and @line='31'] -opus/marginalien/marginal[@index='3356' and @letter='161' and @page='420' and @line='35'] -opus/marginalien/marginal[@index='3357' and @letter='161' and @page='421' and @line='1'] -opus/marginalien/marginal[@index='3358' and @letter='161' and @page='421' and @line='2'] -opus/marginalien/marginal[@index='3359' and @letter='161' and @page='421' and @line='5'] -opus/marginalien/marginal[@index='335' and @letter='16' and @page='46' and @line='11'] -opus/marginalien/marginal[@index='3360' and @letter='161' and @page='421' and @line='5'] -opus/marginalien/marginal[@index='3361' and @letter='161' and @page='421' and @line='8'] -opus/marginalien/marginal[@index='3362' and @letter='162' and @page='421' and @line='15'] -opus/marginalien/marginal[@index='3363' and @letter='162' and @page='421' and @line='27'] -opus/marginalien/marginal[@index='3364' and @letter='162' and @page='421' and @line='28'] -opus/marginalien/marginal[@index='3365' and @letter='162' and @page='422' and @line='14'] -opus/marginalien/marginal[@index='3366' and @letter='162' and @page='422' and @line='16'] -opus/marginalien/marginal[@index='3367' and @letter='162' and @page='422' and @line='17'] -opus/marginalien/marginal[@index='3368' and @letter='162' and @page='422' and @line='23'] -opus/marginalien/marginal[@index='3369' and @letter='162' and @page='422' and @line='27'] -opus/marginalien/marginal[@index='336' and @letter='16' and @page='46' and @line='14'] -opus/marginalien/marginal[@index='3370' and @letter='162' and @page='422' and @line='29'] -opus/marginalien/marginal[@index='3371' and @letter='162' and @page='422' and @line='29'] -opus/marginalien/marginal[@index='3372' and @letter='162' and @page='422' and @line='31'] -opus/marginalien/marginal[@index='3373' and @letter='162' and @page='422' and @line='32'] -opus/marginalien/marginal[@index='3374' and @letter='162' and @page='422' and @line='32'] -opus/marginalien/marginal[@index='3375' and @letter='162' and @page='422' and @line='33'] -opus/marginalien/marginal[@index='3376' and @letter='162' and @page='422' and @line='34'] -opus/marginalien/marginal[@index='3377' and @letter='162' and @page='422' and @line='34'] -opus/marginalien/marginal[@index='3378' and @letter='162' and @page='422' and @line='35'] -opus/marginalien/marginal[@index='3379' and @letter='162' and @page='422' and @line='35'] -opus/marginalien/marginal[@index='337' and @letter='16' and @page='46' and @line='22'] -opus/marginalien/marginal[@index='3380' and @letter='162' and @page='422' and @line='37'] -opus/marginalien/marginal[@index='3381' and @letter='162' and @page='423' and @line='1'] -opus/marginalien/marginal[@index='3382' and @letter='162' and @page='423' and @line='3'] -opus/marginalien/marginal[@index='3383' and @letter='162' and @page='423' and @line='6'] -opus/marginalien/marginal[@index='3384' and @letter='162' and @page='423' and @line='7'] -opus/marginalien/marginal[@index='3385' and @letter='162' and @page='423' and @line='9'] -opus/marginalien/marginal[@index='3386' and @letter='162' and @page='423' and @line='10'] -opus/marginalien/marginal[@index='3387' and @letter='162' and @page='423' and @line='17'] -opus/marginalien/marginal[@index='3388' and @letter='162' and @page='423' and @line='20'] -opus/marginalien/marginal[@index='3389' and @letter='162' and @page='423' and @line='21'] -opus/marginalien/marginal[@index='338' and @letter='17' and @page='46' and @line='26'] -opus/marginalien/marginal[@index='3390' and @letter='162' and @page='423' and @line='23'] -opus/marginalien/marginal[@index='3391' and @letter='162' and @page='423' and @line='25'] -opus/marginalien/marginal[@index='3392' and @letter='162' and @page='423' and @line='27'] -opus/marginalien/marginal[@index='3393' and @letter='162' and @page='423' and @line='28'] -opus/marginalien/marginal[@index='3394' and @letter='162' and @page='423' and @line='30'] -opus/marginalien/marginal[@index='3395' and @letter='162' and @page='423' and @line='31'] -opus/marginalien/marginal[@index='3396' and @letter='162' and @page='423' and @line='32'] -opus/marginalien/marginal[@index='3397' and @letter='162' and @page='423' and @line='36'] -opus/marginalien/marginal[@index='3398' and @letter='162' and @page='424' and @line='11'] -opus/marginalien/marginal[@index='3399' and @letter='162' and @page='424' and @line='11'] -opus/marginalien/marginal[@index='339' and @letter='17' and @page='46' and @line='28'] -opus/marginalien/marginal[@index='33' and @letter='3' and @page='5' and @line='12'] -opus/marginalien/marginal[@index='3400' and @letter='162' and @page='424' and @line='13'] -opus/marginalien/marginal[@index='3401' and @letter='162' and @page='424' and @line='16'] -opus/marginalien/marginal[@index='3402' and @letter='162' and @page='424' and @line='20'] -opus/marginalien/marginal[@index='3403' and @letter='162' and @page='424' and @line='22'] -opus/marginalien/marginal[@index='3404' and @letter='162' and @page='424' and @line='23'] -opus/marginalien/marginal[@index='3405' and @letter='162' and @page='424' and @line='26'] -opus/marginalien/marginal[@index='3406' and @letter='163' and @page='424' and @line='30'] -opus/marginalien/marginal[@index='3407' and @letter='163' and @page='424' and @line='34'] -opus/marginalien/marginal[@index='3408' and @letter='163' and @page='425' and @line='2'] -opus/marginalien/marginal[@index='3409' and @letter='163' and @page='425' and @line='3'] -opus/marginalien/marginal[@index='340' and @letter='17' and @page='47' and @line='14'] -opus/marginalien/marginal[@index='3410' and @letter='163' and @page='425' and @line='3'] -opus/marginalien/marginal[@index='3411' and @letter='163' and @page='425' and @line='6'] -opus/marginalien/marginal[@index='3412' and @letter='163' and @page='425' and @line='8'] -opus/marginalien/marginal[@index='3413' and @letter='163' and @page='425' and @line='10'] -opus/marginalien/marginal[@index='3414' and @letter='163' and @page='425' and @line='20'] -opus/marginalien/marginal[@index='3415' and @letter='163' and @page='425' and @line='24'] -opus/marginalien/marginal[@index='3416' and @letter='163' and @page='425' and @line='25'] -opus/marginalien/marginal[@index='3417' and @letter='163' and @page='425' and @line='28'] -opus/marginalien/marginal[@index='3418' and @letter='163' and @page='425' and @line='30'] -opus/marginalien/marginal[@index='3419' and @letter='163' and @page='425' and @line='31'] -opus/marginalien/marginal[@index='3420' and @letter='163' and @page='425' and @line='32'] -opus/marginalien/marginal[@index='3421' and @letter='163' and @page='426' and @line='6'] -opus/marginalien/marginal[@index='3422' and @letter='163' and @page='426' and @line='7'] -opus/marginalien/marginal[@index='3423' and @letter='163' and @page='426' and @line='13'] -opus/marginalien/marginal[@index='3424' and @letter='163' and @page='426' and @line='15'] -opus/marginalien/marginal[@index='3425' and @letter='163' and @page='426' and @line='18'] -opus/marginalien/marginal[@index='3426' and @letter='163' and @page='426' and @line='18'] -opus/marginalien/marginal[@index='3427' and @letter='163' and @page='426' and @line='20'] -opus/marginalien/marginal[@index='3428' and @letter='163' and @page='426' and @line='22'] -opus/marginalien/marginal[@index='3429' and @letter='163' and @page='426' and @line='24'] -opus/marginalien/marginal[@index='342' and @letter='17' and @page='47' and @line='30'] -opus/marginalien/marginal[@index='3430' and @letter='163' and @page='426' and @line='24'] -opus/marginalien/marginal[@index='3431' and @letter='163' and @page='426' and @line='26'] -opus/marginalien/marginal[@index='3432' and @letter='163' and @page='426' and @line='26'] -opus/marginalien/marginal[@index='3433' and @letter='163' and @page='426' and @line='28'] -opus/marginalien/marginal[@index='3434' and @letter='163' and @page='426' and @line='35'] -opus/marginalien/marginal[@index='3435' and @letter='163' and @page='427' and @line='1'] -opus/marginalien/marginal[@index='3436' and @letter='163' and @page='427' and @line='2'] -opus/marginalien/marginal[@index='3437' and @letter='163' and @page='427' and @line='3'] -opus/marginalien/marginal[@index='3438' and @letter='163' and @page='427' and @line='5'] -opus/marginalien/marginal[@index='3439' and @letter='163' and @page='427' and @line='8'] -opus/marginalien/marginal[@index='343' and @letter='17' and @page='47' and @line='32'] -opus/marginalien/marginal[@index='3440' and @letter='163' and @page='427' and @line='9'] -opus/marginalien/marginal[@index='3441' and @letter='163' and @page='427' and @line='10'] -opus/marginalien/marginal[@index='3442' and @letter='163' and @page='427' and @line='10'] -opus/marginalien/marginal[@index='3443' and @letter='163' and @page='427' and @line='10'] -opus/marginalien/marginal[@index='3444' and @letter='163' and @page='427' and @line='18'] -opus/marginalien/marginal[@index='3445' and @letter='163' and @page='427' and @line='22'] -opus/marginalien/marginal[@index='3446' and @letter='163' and @page='427' and @line='27'] -opus/marginalien/marginal[@index='3447' and @letter='163' and @page='427' and @line='28'] -opus/marginalien/marginal[@index='3448' and @letter='163' and @page='427' and @line='29'] -opus/marginalien/marginal[@index='3449' and @letter='163' and @page='427' and @line='31'] -opus/marginalien/marginal[@index='344' and @letter='18' and @page='48' and @line='3'] -opus/marginalien/marginal[@index='3450' and @letter='163' and @page='427' and @line='35'] -opus/marginalien/marginal[@index='3451' and @letter='163' and @page='427' and @line='36'] -opus/marginalien/marginal[@index='3452' and @letter='163' and @page='428' and @line='4'] -opus/marginalien/marginal[@index='3453' and @letter='163' and @page='428' and @line='6'] -opus/marginalien/marginal[@index='3454' and @letter='163' and @page='428' and @line='7'] -opus/marginalien/marginal[@index='3455' and @letter='163' and @page='428' and @line='10'] -opus/marginalien/marginal[@index='3456' and @letter='163' and @page='428' and @line='11'] -opus/marginalien/marginal[@index='3457' and @letter='163' and @page='428' and @line='14'] -opus/marginalien/marginal[@index='3458' and @letter='163' and @page='428' and @line='16'] -opus/marginalien/marginal[@index='3459' and @letter='163' and @page='428' and @line='28'] -opus/marginalien/marginal[@index='345' and @letter='18' and @page='48' and @line='5'] -opus/marginalien/marginal[@index='3460' and @letter='163' and @page='428' and @line='30'] -opus/marginalien/marginal[@index='3461' and @letter='163' and @page='428' and @line='34'] -opus/marginalien/marginal[@index='3462' and @letter='163' and @page='428' and @line='35'] -opus/marginalien/marginal[@index='3463' and @letter='163' and @page='428' and @line='36'] -opus/marginalien/marginal[@index='3464' and @letter='163' and @page='429' and @line='3'] -opus/marginalien/marginal[@index='3465' and @letter='163' and @page='429' and @line='5'] -opus/marginalien/marginal[@index='3466' and @letter='163' and @page='429' and @line='5'] -opus/marginalien/marginal[@index='3467' and @letter='163' and @page='429' and @line='6'] -opus/marginalien/marginal[@index='3468' and @letter='163' and @page='429' and @line='7'] -opus/marginalien/marginal[@index='3469' and @letter='163' and @page='429' and @line='7'] -opus/marginalien/marginal[@index='346' and @letter='18' and @page='48' and @line='12'] -opus/marginalien/marginal[@index='3470' and @letter='163' and @page='429' and @line='9'] -opus/marginalien/marginal[@index='3471' and @letter='163' and @page='429' and @line='11'] -opus/marginalien/marginal[@index='3472' and @letter='163' and @page='429' and @line='12'] -opus/marginalien/marginal[@index='3473' and @letter='163' and @page='429' and @line='13'] -opus/marginalien/marginal[@index='3474' and @letter='163' and @page='429' and @line='16'] -opus/marginalien/marginal[@index='3475' and @letter='163' and @page='429' and @line='17'] -opus/marginalien/marginal[@index='3476' and @letter='163' and @page='429' and @line='19'] -opus/marginalien/marginal[@index='3477' and @letter='163' and @page='429' and @line='23'] -opus/marginalien/marginal[@index='3478' and @letter='163' and @page='429' and @line='23'] -opus/marginalien/marginal[@index='3479' and @letter='163' and @page='429' and @line='29'] -opus/marginalien/marginal[@index='347' and @letter='18' and @page='48' and @line='15'] -opus/marginalien/marginal[@index='3480' and @letter='163' and @page='429' and @line='30'] -opus/marginalien/marginal[@index='3481' and @letter='163' and @page='429' and @line='30'] -opus/marginalien/marginal[@index='3482' and @letter='163' and @page='429' and @line='32'] -opus/marginalien/marginal[@index='3483' and @letter='163' and @page='429' and @line='32'] -opus/marginalien/marginal[@index='3484' and @letter='163' and @page='429' and @line='34'] -opus/marginalien/marginal[@index='3485' and @letter='163' and @page='430' and @line='1'] -opus/marginalien/marginal[@index='3486' and @letter='163' and @page='430' and @line='1'] -opus/marginalien/marginal[@index='3487' and @letter='163' and @page='430' and @line='3'] -opus/marginalien/marginal[@index='3488' and @letter='163' and @page='430' and @line='4'] -opus/marginalien/marginal[@index='3489' and @letter='163' and @page='430' and @line='4'] -opus/marginalien/marginal[@index='348' and @letter='18' and @page='48' and @line='15'] -opus/marginalien/marginal[@index='3490' and @letter='163' and @page='430' and @line='7'] -opus/marginalien/marginal[@index='3491' and @letter='163' and @page='430' and @line='10'] -opus/marginalien/marginal[@index='3492' and @letter='163' and @page='430' and @line='10'] -opus/marginalien/marginal[@index='3493' and @letter='163' and @page='430' and @line='11'] -opus/marginalien/marginal[@index='3494' and @letter='163' and @page='430' and @line='12'] -opus/marginalien/marginal[@index='3495' and @letter='163' and @page='430' and @line='15'] -opus/marginalien/marginal[@index='3496' and @letter='163' and @page='430' and @line='16'] -opus/marginalien/marginal[@index='3497' and @letter='163' and @page='430' and @line='19'] -opus/marginalien/marginal[@index='3498' and @letter='163' and @page='430' and @line='20'] -opus/marginalien/marginal[@index='3499' and @letter='163' and @page='430' and @line='23'] -opus/marginalien/marginal[@index='349' and @letter='18' and @page='48' and @line='15'] -opus/marginalien/marginal[@index='3500' and @letter='163' and @page='430' and @line='33'] -opus/marginalien/marginal[@index='3501' and @letter='163' and @page='431' and @line='12'] -opus/marginalien/marginal[@index='3502' and @letter='163' and @page='431' and @line='12'] -opus/marginalien/marginal[@index='3503' and @letter='163' and @page='431' and @line='13'] -opus/marginalien/marginal[@index='3504' and @letter='163' and @page='431' and @line='14'] -opus/marginalien/marginal[@index='3505' and @letter='163' and @page='431' and @line='15'] -opus/marginalien/marginal[@index='3506' and @letter='163' and @page='431' and @line='16'] -opus/marginalien/marginal[@index='3507' and @letter='163' and @page='431' and @line='18'] -opus/marginalien/marginal[@index='3508' and @letter='163' and @page='431' and @line='18'] -opus/marginalien/marginal[@index='3509' and @letter='163' and @page='431' and @line='18'] -opus/marginalien/marginal[@index='350' and @letter='18' and @page='48' and @line='28'] -opus/marginalien/marginal[@index='3510' and @letter='163' and @page='431' and @line='18'] -opus/marginalien/marginal[@index='3511' and @letter='163' and @page='431' and @line='19'] -opus/marginalien/marginal[@index='3512' and @letter='163' and @page='431' and @line='20'] -opus/marginalien/marginal[@index='3513' and @letter='163' and @page='431' and @line='26'] -opus/marginalien/marginal[@index='3514' and @letter='163' and @page='431' and @line='26'] -opus/marginalien/marginal[@index='3515' and @letter='163' and @page='431' and @line='28'] -opus/marginalien/marginal[@index='3516' and @letter='163' and @page='431' and @line='30'] -opus/marginalien/marginal[@index='3517' and @letter='163' and @page='431' and @line='30'] -opus/marginalien/marginal[@index='3518' and @letter='163' and @page='431' and @line='32'] -opus/marginalien/marginal[@index='3519' and @letter='163' and @page='431' and @line='32'] -opus/marginalien/marginal[@index='351' and @letter='18' and @page='48' and @line='29'] -opus/marginalien/marginal[@index='3520' and @letter='163' and @page='431' and @line='36'] -opus/marginalien/marginal[@index='3521' and @letter='164' and @page='432' and @line='3'] -opus/marginalien/marginal[@index='3522' and @letter='164' and @page='432' and @line='9'] -opus/marginalien/marginal[@index='3523' and @letter='164' and @page='432' and @line='11'] -opus/marginalien/marginal[@index='3524' and @letter='164' and @page='432' and @line='12'] -opus/marginalien/marginal[@index='3525' and @letter='164' and @page='432' and @line='16'] -opus/marginalien/marginal[@index='3526' and @letter='164' and @page='432' and @line='19'] -opus/marginalien/marginal[@index='3527' and @letter='164' and @page='432' and @line='22'] -opus/marginalien/marginal[@index='3528' and @letter='164' and @page='432' and @line='24'] -opus/marginalien/marginal[@index='3529' and @letter='164' and @page='432' and @line='33'] -opus/marginalien/marginal[@index='352' and @letter='18' and @page='48' and @line='35'] -opus/marginalien/marginal[@index='3530' and @letter='164' and @page='432' and @line='34'] -opus/marginalien/marginal[@index='3531' and @letter='164' and @page='433' and @line='6'] -opus/marginalien/marginal[@index='3532' and @letter='164' and @page='433' and @line='8'] -opus/marginalien/marginal[@index='3533' and @letter='164' and @page='433' and @line='9'] -opus/marginalien/marginal[@index='3534' and @letter='164' and @page='433' and @line='9'] -opus/marginalien/marginal[@index='3535' and @letter='164' and @page='433' and @line='12'] -opus/marginalien/marginal[@index='3536' and @letter='164' and @page='433' and @line='13'] -opus/marginalien/marginal[@index='3537' and @letter='164' and @page='433' and @line='14'] -opus/marginalien/marginal[@index='3538' and @letter='164' and @page='433' and @line='20'] -opus/marginalien/marginal[@index='3539' and @letter='164' and @page='433' and @line='21'] -opus/marginalien/marginal[@index='353' and @letter='18' and @page='48' and @line='36'] -opus/marginalien/marginal[@index='3540' and @letter='164' and @page='433' and @line='24'] -opus/marginalien/marginal[@index='3541' and @letter='164' and @page='433' and @line='25'] -opus/marginalien/marginal[@index='3542' and @letter='164' and @page='433' and @line='27'] -opus/marginalien/marginal[@index='3543' and @letter='164' and @page='433' and @line='28'] -opus/marginalien/marginal[@index='3544' and @letter='164' and @page='433' and @line='29'] -opus/marginalien/marginal[@index='3545' and @letter='164' and @page='434' and @line='15'] -opus/marginalien/marginal[@index='3546' and @letter='164' and @page='434' and @line='23'] -opus/marginalien/marginal[@index='3547' and @letter='165' and @page='434' and @line='30'] -opus/marginalien/marginal[@index='3548' and @letter='165' and @page='434' and @line='30'] -opus/marginalien/marginal[@index='3549' and @letter='165' and @page='435' and @line='2'] -opus/marginalien/marginal[@index='354' and @letter='18' and @page='49' and @line='13'] -opus/marginalien/marginal[@index='3550' and @letter='165' and @page='435' and @line='11'] -opus/marginalien/marginal[@index='3551' and @letter='165' and @page='435' and @line='13'] -opus/marginalien/marginal[@index='3552' and @letter='165' and @page='435' and @line='17'] -opus/marginalien/marginal[@index='3553' and @letter='165' and @page='435' and @line='22'] -opus/marginalien/marginal[@index='3554' and @letter='165' and @page='435' and @line='23'] -opus/marginalien/marginal[@index='3555' and @letter='165' and @page='435' and @line='25'] -opus/marginalien/marginal[@index='3557' and @letter='165' and @page='435' and @line='29'] -opus/marginalien/marginal[@index='3558' and @letter='165' and @page='435' and @line='37'] -opus/marginalien/marginal[@index='3559' and @letter='165' and @page='436' and @line='1'] -opus/marginalien/marginal[@index='355' and @letter='18' and @page='49' and @line='16'] -opus/marginalien/marginal[@index='3560' and @letter='165' and @page='436' and @line='1'] -opus/marginalien/marginal[@index='3561' and @letter='165' and @page='436' and @line='3'] -opus/marginalien/marginal[@index='3562' and @letter='165' and @page='436' and @line='5'] -opus/marginalien/marginal[@index='3563' and @letter='165' and @page='436' and @line='6'] -opus/marginalien/marginal[@index='3564' and @letter='165' and @page='436' and @line='11'] -opus/marginalien/marginal[@index='3565' and @letter='165' and @page='436' and @line='12'] -opus/marginalien/marginal[@index='3566' and @letter='165' and @page='436' and @line='20'] -opus/marginalien/marginal[@index='3567' and @letter='165' and @page='436' and @line='37'] -opus/marginalien/marginal[@index='3568' and @letter='165' and @page='437' and @line='1'] -opus/marginalien/marginal[@index='3569' and @letter='165' and @page='437' and @line='1'] -opus/marginalien/marginal[@index='356' and @letter='18' and @page='49' and @line='18'] -opus/marginalien/marginal[@index='3570' and @letter='165' and @page='437' and @line='9'] -opus/marginalien/marginal[@index='3571' and @letter='165' and @page='437' and @line='16'] -opus/marginalien/marginal[@index='3572' and @letter='165' and @page='437' and @line='18'] -opus/marginalien/marginal[@index='3573' and @letter='165' and @page='437' and @line='20'] -opus/marginalien/marginal[@index='3574' and @letter='165' and @page='437' and @line='23'] -opus/marginalien/marginal[@index='3575' and @letter='165' and @page='437' and @line='32'] -opus/marginalien/marginal[@index='3576' and @letter='165' and @page='437' and @line='34'] -opus/marginalien/marginal[@index='3577' and @letter='165' and @page='437' and @line='36'] -opus/marginalien/marginal[@index='3578' and @letter='165' and @page='437' and @line='37'] -opus/marginalien/marginal[@index='3579' and @letter='165' and @page='438' and @line='4'] -opus/marginalien/marginal[@index='357' and @letter='18' and @page='49' and @line='26'] -opus/marginalien/marginal[@index='3580' and @letter='165' and @page='438' and @line='6'] -opus/marginalien/marginal[@index='3581' and @letter='165' and @page='438' and @line='12'] -opus/marginalien/marginal[@index='3582' and @letter='165' and @page='438' and @line='14'] -opus/marginalien/marginal[@index='3583' and @letter='165' and @page='438' and @line='15'] -opus/marginalien/marginal[@index='3584' and @letter='165' and @page='438' and @line='18'] -opus/marginalien/marginal[@index='3585' and @letter='165' and @page='438' and @line='20'] -opus/marginalien/marginal[@index='3586' and @letter='165' and @page='438' and @line='21'] -opus/marginalien/marginal[@index='3587' and @letter='165' and @page='438' and @line='22'] -opus/marginalien/marginal[@index='3588' and @letter='165' and @page='438' and @line='26'] -opus/marginalien/marginal[@index='3589' and @letter='165' and @page='438' and @line='29'] -opus/marginalien/marginal[@index='358' and @letter='18' and @page='49' and @line='27'] -opus/marginalien/marginal[@index='3590' and @letter='165' and @page='438' and @line='31'] -opus/marginalien/marginal[@index='3591' and @letter='165' and @page='438' and @line='35'] -opus/marginalien/marginal[@index='3592' and @letter='165' and @page='439' and @line='1'] -opus/marginalien/marginal[@index='3593' and @letter='165' and @page='439' and @line='3'] -opus/marginalien/marginal[@index='3594' and @letter='165' and @page='439' and @line='8'] -opus/marginalien/marginal[@index='3595' and @letter='165' and @page='439' and @line='13'] -opus/marginalien/marginal[@index='3596' and @letter='165' and @page='439' and @line='15'] -opus/marginalien/marginal[@index='3597' and @letter='165' and @page='439' and @line='23'] -opus/marginalien/marginal[@index='3598' and @letter='166' and @page='439' and @line='30'] -opus/marginalien/marginal[@index='3599' and @letter='166' and @page='439' and @line='31'] -opus/marginalien/marginal[@index='359' and @letter='18' and @page='50' and @line='19'] -opus/marginalien/marginal[@index='35' and @letter='3' and @page='6' and @line='15'] -opus/marginalien/marginal[@index='3600' and @letter='166' and @page='439' and @line='32'] -opus/marginalien/marginal[@index='3601' and @letter='166' and @page='439' and @line='33'] -opus/marginalien/marginal[@index='3602' and @letter='166' and @page='440' and @line='3'] -opus/marginalien/marginal[@index='3603' and @letter='166' and @page='440' and @line='7'] -opus/marginalien/marginal[@index='3604' and @letter='166' and @page='440' and @line='13'] -opus/marginalien/marginal[@index='3605' and @letter='166' and @page='440' and @line='13'] -opus/marginalien/marginal[@index='3606' and @letter='166' and @page='440' and @line='15'] -opus/marginalien/marginal[@index='3607' and @letter='166' and @page='440' and @line='15'] -opus/marginalien/marginal[@index='3608' and @letter='166' and @page='440' and @line='16'] -opus/marginalien/marginal[@index='3609' and @letter='166' and @page='440' and @line='17'] -opus/marginalien/marginal[@index='360' and @letter='18' and @page='50' and @line='19'] -opus/marginalien/marginal[@index='3610' and @letter='166' and @page='440' and @line='17'] -opus/marginalien/marginal[@index='3611' and @letter='166' and @page='440' and @line='20'] -opus/marginalien/marginal[@index='3612' and @letter='166' and @page='440' and @line='24'] -opus/marginalien/marginal[@index='3613' and @letter='166' and @page='440' and @line='22'] -opus/marginalien/marginal[@index='3614' and @letter='167' and @page='441' and @line='2'] -opus/marginalien/marginal[@index='3615' and @letter='167' and @page='441' and @line='3'] -opus/marginalien/marginal[@index='3616' and @letter='167' and @page='441' and @line='9'] -opus/marginalien/marginal[@index='3617' and @letter='167' and @page='441' and @line='11'] -opus/marginalien/marginal[@index='3618' and @letter='167' and @page='441' and @line='12'] -opus/marginalien/marginal[@index='3619' and @letter='167' and @page='441' and @line='12'] -opus/marginalien/marginal[@index='361' and @letter='18' and @page='50' and @line='19'] -opus/marginalien/marginal[@index='3620' and @letter='167' and @page='441' and @line='14'] -opus/marginalien/marginal[@index='3621' and @letter='167' and @page='441' and @line='14'] -opus/marginalien/marginal[@index='3622' and @letter='167' and @page='441' and @line='15'] -opus/marginalien/marginal[@index='3623' and @letter='167' and @page='441' and @line='18'] -opus/marginalien/marginal[@index='3624' and @letter='167' and @page='441' and @line='21'] -opus/marginalien/marginal[@index='3625' and @letter='167' and @page='441' and @line='29'] -opus/marginalien/marginal[@index='3626' and @letter='167' and @page='441' and @line='30'] -opus/marginalien/marginal[@index='3627' and @letter='167' and @page='441' and @line='31'] -opus/marginalien/marginal[@index='3628' and @letter='167' and @page='441' and @line='34'] -opus/marginalien/marginal[@index='3629' and @letter='167' and @page='441' and @line='35'] -opus/marginalien/marginal[@index='362' and @letter='18' and @page='50' and @line='27'] -opus/marginalien/marginal[@index='3630' and @letter='167' and @page='441' and @line='36'] -opus/marginalien/marginal[@index='3631' and @letter='167' and @page='442' and @line='1'] -opus/marginalien/marginal[@index='3632' and @letter='167' and @page='442' and @line='2'] -opus/marginalien/marginal[@index='3633' and @letter='167' and @page='442' and @line='3'] -opus/marginalien/marginal[@index='3634' and @letter='167' and @page='442' and @line='7'] -opus/marginalien/marginal[@index='3635' and @letter='167' and @page='442' and @line='9'] -opus/marginalien/marginal[@index='3636' and @letter='167' and @page='442' and @line='11'] -opus/marginalien/marginal[@index='3637' and @letter='167' and @page='442' and @line='14'] -opus/marginalien/marginal[@index='3638' and @letter='167' and @page='442' and @line='16'] -opus/marginalien/marginal[@index='3639' and @letter='167' and @page='442' and @line='17'] -opus/marginalien/marginal[@index='363' and @letter='18' and @page='50' and @line='28'] -opus/marginalien/marginal[@index='3640' and @letter='167' and @page='442' and @line='20'] -opus/marginalien/marginal[@index='3641' and @letter='167' and @page='442' and @line='21'] -opus/marginalien/marginal[@index='3642' and @letter='167' and @page='442' and @line='28'] -opus/marginalien/marginal[@index='3643' and @letter='167' and @page='442' and @line='30'] -opus/marginalien/marginal[@index='3644' and @letter='167' and @page='442' and @line='32'] -opus/marginalien/marginal[@index='3645' and @letter='167' and @page='442' and @line='34'] -opus/marginalien/marginal[@index='3646' and @letter='167' and @page='442' and @line='34'] -opus/marginalien/marginal[@index='3647' and @letter='167' and @page='442' and @line='37'] -opus/marginalien/marginal[@index='3648' and @letter='167' and @page='443' and @line='5'] -opus/marginalien/marginal[@index='3649' and @letter='167' and @page='443' and @line='9'] -opus/marginalien/marginal[@index='364' and @letter='18' and @page='50' and @line='29'] -opus/marginalien/marginal[@index='3650' and @letter='167' and @page='443' and @line='9'] -opus/marginalien/marginal[@index='3651' and @letter='167' and @page='443' and @line='10'] -opus/marginalien/marginal[@index='3652' and @letter='167' and @page='443' and @line='12'] -opus/marginalien/marginal[@index='3653' and @letter='167' and @page='443' and @line='15'] -opus/marginalien/marginal[@index='3654' and @letter='167' and @page='443' and @line='17'] -opus/marginalien/marginal[@index='3655' and @letter='167' and @page='443' and @line='18'] -opus/marginalien/marginal[@index='3656' and @letter='167' and @page='443' and @line='20'] -opus/marginalien/marginal[@index='3657' and @letter='167' and @page='443' and @line='21'] -opus/marginalien/marginal[@index='3658' and @letter='167' and @page='443' and @line='33'] -opus/marginalien/marginal[@index='3659' and @letter='167' and @page='443' and @line='35'] -opus/marginalien/marginal[@index='365' and @letter='18' and @page='50' and @line='32'] -opus/marginalien/marginal[@index='3660' and @letter='167' and @page='443' and @line='35'] -opus/marginalien/marginal[@index='3661' and @letter='167' and @page='444' and @line='1'] -opus/marginalien/marginal[@index='3662' and @letter='167' and @page='444' and @line='11'] -opus/marginalien/marginal[@index='3663' and @letter='167' and @page='444' and @line='11'] -opus/marginalien/marginal[@index='3664' and @letter='168' and @page='444' and @line='13'] -opus/marginalien/marginal[@index='3665' and @letter='168' and @page='444' and @line='14'] -opus/marginalien/marginal[@index='3666' and @letter='168' and @page='444' and @line='18'] -opus/marginalien/marginal[@index='3667' and @letter='168' and @page='444' and @line='29'] -opus/marginalien/marginal[@index='3668' and @letter='168' and @page='445' and @line='3'] -opus/marginalien/marginal[@index='3669' and @letter='168' and @page='445' and @line='7'] -opus/marginalien/marginal[@index='366' and @letter='19' and @page='52' and @line='6'] -opus/marginalien/marginal[@index='3670' and @letter='168' and @page='445' and @line='25'] -opus/marginalien/marginal[@index='3671' and @letter='168' and @page='445' and @line='27'] -opus/marginalien/marginal[@index='3672' and @letter='168' and @page='445' and @line='28'] -opus/marginalien/marginal[@index='3673' and @letter='168' and @page='445' and @line='31'] -opus/marginalien/marginal[@index='3674' and @letter='168' and @page='445' and @line='33'] -opus/marginalien/marginal[@index='3675' and @letter='168' and @page='445' and @line='34'] -opus/marginalien/marginal[@index='3676' and @letter='168' and @page='445' and @line='37'] -opus/marginalien/marginal[@index='3677' and @letter='168' and @page='446' and @line='3'] -opus/marginalien/marginal[@index='3678' and @letter='169' and @page='446' and @line='9'] -opus/marginalien/marginal[@index='3679' and @letter='169' and @page='446' and @line='23'] -opus/marginalien/marginal[@index='367' and @letter='19' and @page='52' and @line='16'] -opus/marginalien/marginal[@index='3680' and @letter='169' and @page='446' and @line='25'] -opus/marginalien/marginal[@index='3681' and @letter='169' and @page='446' and @line='32'] -opus/marginalien/marginal[@index='3683' and @letter='169' and @page='447' and @line='18'] -opus/marginalien/marginal[@index='3684' and @letter='169' and @page='447' and @line='20'] -opus/marginalien/marginal[@index='3685' and @letter='169' and @page='447' and @line='34'] -opus/marginalien/marginal[@index='3686' and @letter='170' and @page='448' and @line='5'] -opus/marginalien/marginal[@index='3687' and @letter='170' and @page='448' and @line='6'] -opus/marginalien/marginal[@index='3688' and @letter='170' and @page='448' and @line='6'] -opus/marginalien/marginal[@index='3689' and @letter='170' and @page='448' and @line='17'] -opus/marginalien/marginal[@index='368' and @letter='19' and @page='52' and @line='18'] -opus/marginalien/marginal[@index='3690' and @letter='170' and @page='449' and @line='4'] -opus/marginalien/marginal[@index='3691' and @letter='170' and @page='449' and @line='7'] -opus/marginalien/marginal[@index='3692' and @letter='170' and @page='449' and @line='28'] -opus/marginalien/marginal[@index='3693' and @letter='170' and @page='449' and @line='29'] -opus/marginalien/marginal[@index='3694' and @letter='170' and @page='449' and @line='29'] -opus/marginalien/marginal[@index='3695' and @letter='170' and @page='449' and @line='29'] -opus/marginalien/marginal[@index='3696' and @letter='170' and @page='449' and @line='30'] -opus/marginalien/marginal[@index='3697' and @letter='170' and @page='449' and @line='30'] -opus/marginalien/marginal[@index='3698' and @letter='170' and @page='450' and @line='10'] -opus/marginalien/marginal[@index='3699' and @letter='170' and @page='450' and @line='12'] -opus/marginalien/marginal[@index='369' and @letter='19' and @page='52' and @line='18'] -opus/marginalien/marginal[@index='36' and @letter='3' and @page='6' and @line='20'] -opus/marginalien/marginal[@index='3700' and @letter='170' and @page='450' and @line='18'] -opus/marginalien/marginal[@index='3701' and @letter='170' and @page='450' and @line='19'] -opus/marginalien/marginal[@index='3702' and @letter='170' and @page='450' and @line='21'] -opus/marginalien/marginal[@index='3703' and @letter='170' and @page='450' and @line='23'] -opus/marginalien/marginal[@index='3704' and @letter='170' and @page='450' and @line='31'] -opus/marginalien/marginal[@index='3705' and @letter='170' and @page='450' and @line='33'] -opus/marginalien/marginal[@index='3706' and @letter='170' and @page='451' and @line='8'] -opus/marginalien/marginal[@index='3707' and @letter='170' and @page='451' and @line='16'] -opus/marginalien/marginal[@index='3708' and @letter='170' and @page='451' and @line='17'] -opus/marginalien/marginal[@index='3709' and @letter='170' and @page='451' and @line='19'] -opus/marginalien/marginal[@index='370' and @letter='19' and @page='52' and @line='23'] -opus/marginalien/marginal[@index='3710' and @letter='170' and @page='451' and @line='25'] -opus/marginalien/marginal[@index='3711' and @letter='170' and @page='451' and @line='25'] -opus/marginalien/marginal[@index='3712' and @letter='170' and @page='451' and @line='28'] -opus/marginalien/marginal[@index='3713' and @letter='170' and @page='451' and @line='31'] -opus/marginalien/marginal[@index='3714' and @letter='170' and @page='451' and @line='36'] -opus/marginalien/marginal[@index='3715' and @letter='170' and @page='452' and @line='1'] -opus/marginalien/marginal[@index='3716' and @letter='170' and @page='452' and @line='4'] -opus/marginalien/marginal[@index='3717' and @letter='170' and @page='452' and @line='7'] -opus/marginalien/marginal[@index='3718' and @letter='170' and @page='452' and @line='10'] -opus/marginalien/marginal[@index='3719' and @letter='170' and @page='452' and @line='11'] -opus/marginalien/marginal[@index='371' and @letter='19' and @page='52' and @line='26'] -opus/marginalien/marginal[@index='3720' and @letter='170' and @page='452' and @line='13'] -opus/marginalien/marginal[@index='3721' and @letter='170' and @page='452' and @line='13'] -opus/marginalien/marginal[@index='3722' and @letter='170' and @page='452' and @line='25'] -opus/marginalien/marginal[@index='3723' and @letter='170' and @page='452' and @line='26'] -opus/marginalien/marginal[@index='3724' and @letter='170' and @page='452' and @line='29'] -opus/marginalien/marginal[@index='3725' and @letter='170' and @page='452' and @line='33'] -opus/marginalien/marginal[@index='3726' and @letter='170' and @page='452' and @line='36'] -opus/marginalien/marginal[@index='3727' and @letter='170' and @page='453' and @line='8'] -opus/marginalien/marginal[@index='3728' and @letter='170' and @page='453' and @line='14'] -opus/marginalien/marginal[@index='3729' and @letter='171' and @page='453' and @line='21'] -opus/marginalien/marginal[@index='372' and @letter='19' and @page='52' and @line='26'] -opus/marginalien/marginal[@index='3730' and @letter='171' and @page='453' and @line='23'] -opus/marginalien/marginal[@index='3731' and @letter='171' and @page='453' and @line='24'] -opus/marginalien/marginal[@index='3732' and @letter='171' and @page='453' and @line='24'] -opus/marginalien/marginal[@index='3733' and @letter='171' and @page='453' and @line='25'] -opus/marginalien/marginal[@index='3734' and @letter='171' and @page='453' and @line='26'] -opus/marginalien/marginal[@index='3735' and @letter='171' and @page='453' and @line='28'] -opus/marginalien/marginal[@index='3736' and @letter='171' and @page='453' and @line='29'] -opus/marginalien/marginal[@index='3737' and @letter='171' and @page='453' and @line='31'] -opus/marginalien/marginal[@index='3738' and @letter='171' and @page='454' and @line='11'] -opus/marginalien/marginal[@index='3739' and @letter='172' and @page='454' and @line='16'] -opus/marginalien/marginal[@index='373' and @letter='19' and @page='53' and @line='1'] -opus/marginalien/marginal[@index='3740' and @letter='172' and @page='454' and @line='20'] -opus/marginalien/marginal[@index='3741' and @letter='172' and @page='454' and @line='24'] -opus/marginalien/marginal[@index='3743' and @letter='172' and @page='454' and @line='25'] -opus/marginalien/marginal[@index='3746' and @letter='172' and @page='454' and @line='27'] -opus/marginalien/marginal[@index='3749' and @letter='172' and @page='454' and @line='29'] -opus/marginalien/marginal[@index='374' and @letter='19' and @page='53' and @line='6'] -opus/marginalien/marginal[@index='3750' and @letter='172' and @page='454' and @line='32'] -opus/marginalien/marginal[@index='3754' and @letter='172' and @page='454' and @line='35'] -opus/marginalien/marginal[@index='3755' and @letter='172' and @page='455' and @line='1'] -opus/marginalien/marginal[@index='3757' and @letter='172' and @page='455' and @line='3'] -opus/marginalien/marginal[@index='3759' and @letter='172' and @page='455' and @line='5'] -opus/marginalien/marginal[@index='375' and @letter='19' and @page='53' and @line='25'] -opus/marginalien/marginal[@index='3761' and @letter='172' and @page='455' and @line='8'] -opus/marginalien/marginal[@index='3763' and @letter='172' and @page='455' and @line='10'] -opus/marginalien/marginal[@index='3765' and @letter='172' and @page='455' and @line='12'] -opus/marginalien/marginal[@index='3767' and @letter='172' and @page='455' and @line='13'] -opus/marginalien/marginal[@index='3768' and @letter='172' and @page='455' and @line='15'] -opus/marginalien/marginal[@index='3769' and @letter='172' and @page='455' and @line='17'] -opus/marginalien/marginal[@index='376' and @letter='19' and @page='53' and @line='33'] -opus/marginalien/marginal[@index='3770' and @letter='172' and @page='455' and @line='18'] -opus/marginalien/marginal[@index='3772' and @letter='172' and @page='455' and @line='19'] -opus/marginalien/marginal[@index='3774' and @letter='172' and @page='455' and @line='26'] -opus/marginalien/marginal[@index='3775' and @letter='172' and @page='455' and @line='31'] -opus/marginalien/marginal[@index='3776' and @letter='173' and @page='456' and @line='2'] -opus/marginalien/marginal[@index='3777' and @letter='173' and @page='456' and @line='4'] -opus/marginalien/marginal[@index='3778' and @letter='173' and @page='456' and @line='6'] -opus/marginalien/marginal[@index='3779' and @letter='173' and @page='456' and @line='6'] -opus/marginalien/marginal[@index='377' and @letter='19' and @page='54' and @line='19'] -opus/marginalien/marginal[@index='3780' and @letter='173' and @page='456' and @line='8'] -opus/marginalien/marginal[@index='3781' and @letter='173' and @page='456' and @line='12'] -opus/marginalien/marginal[@index='3782' and @letter='173' and @page='456' and @line='12'] -opus/marginalien/marginal[@index='3783' and @letter='173' and @page='456' and @line='15'] -opus/marginalien/marginal[@index='3784' and @letter='173' and @page='456' and @line='17'] -opus/marginalien/marginal[@index='3785' and @letter='173' and @page='456' and @line='18'] -opus/marginalien/marginal[@index='3786' and @letter='173' and @page='456' and @line='18'] -opus/marginalien/marginal[@index='3787' and @letter='173' and @page='456' and @line='19'] -opus/marginalien/marginal[@index='3788' and @letter='173' and @page='456' and @line='21'] -opus/marginalien/marginal[@index='3789' and @letter='173' and @page='456' and @line='31'] -opus/marginalien/marginal[@index='378' and @letter='19' and @page='54' and @line='24'] -opus/marginalien/marginal[@index='3790' and @letter='173' and @page='456' and @line='36'] -opus/marginalien/marginal[@index='3791' and @letter='173' and @page='457' and @line='3'] -opus/marginalien/marginal[@index='3792' and @letter='173' and @page='457' and @line='4'] -opus/marginalien/marginal[@index='3793' and @letter='173' and @page='457' and @line='5'] -opus/marginalien/marginal[@index='3794' and @letter='173' and @page='457' and @line='6'] -opus/marginalien/marginal[@index='3795' and @letter='173' and @page='457' and @line='8'] -opus/marginalien/marginal[@index='3796' and @letter='173' and @page='457' and @line='10'] -opus/marginalien/marginal[@index='3797' and @letter='173' and @page='457' and @line='10'] -opus/marginalien/marginal[@index='3798' and @letter='173' and @page='457' and @line='14'] -opus/marginalien/marginal[@index='3799' and @letter='173' and @page='457' and @line='18'] -opus/marginalien/marginal[@index='379' and @letter='19' and @page='54' and @line='25'] -opus/marginalien/marginal[@index='37' and @letter='3' and @page='7' and @line='16'] -opus/marginalien/marginal[@index='3800' and @letter='173' and @page='457' and @line='19'] -opus/marginalien/marginal[@index='3801' and @letter='173' and @page='457' and @line='22'] -opus/marginalien/marginal[@index='3802' and @letter='173' and @page='457' and @line='31'] -opus/marginalien/marginal[@index='3803' and @letter='173' and @page='458' and @line='1'] -opus/marginalien/marginal[@index='3804' and @letter='173' and @page='458' and @line='3'] -opus/marginalien/marginal[@index='3805' and @letter='173' and @page='458' and @line='5'] -opus/marginalien/marginal[@index='3806' and @letter='173' and @page='458' and @line='6'] -opus/marginalien/marginal[@index='3807' and @letter='173' and @page='458' and @line='9'] -opus/marginalien/marginal[@index='3808' and @letter='173' and @page='458' and @line='11'] -opus/marginalien/marginal[@index='3809' and @letter='173' and @page='458' and @line='13'] -opus/marginalien/marginal[@index='3810' and @letter='173' and @page='458' and @line='15'] -opus/marginalien/marginal[@index='3811' and @letter='173' and @page='458' and @line='19'] -opus/marginalien/marginal[@index='3812' and @letter='173' and @page='458' and @line='23'] -opus/marginalien/marginal[@index='3813' and @letter='173' and @page='458' and @line='25'] -opus/marginalien/marginal[@index='3814' and @letter='60' and @page='148' and @line='10'] -opus/marginalien/marginal[@index='3815' and @letter='63' and @page='158' and @line='6'] -opus/marginalien/marginal[@index='3816' and @letter='145' and @page='335' and @line='5'] -opus/marginalien/marginal[@index='3818' and @letter='2' and @page='3' and @line='25'] -opus/marginalien/marginal[@index='3819' and @letter='2' and @page='4' and @line='10'] -opus/marginalien/marginal[@index='381' and @letter='19' and @page='55' and @line='6'] -opus/marginalien/marginal[@index='3820' and @letter='2' and @page='4' and @line='12'] -opus/marginalien/marginal[@index='3821' and @letter='5' and @page='13' and @line='12'] -opus/marginalien/marginal[@index='3822' and @letter='5' and @page='13' and @line='16'] -opus/marginalien/marginal[@index='3823' and @letter='59' and @page='145' and @line='5'] -opus/marginalien/marginal[@index='3824' and @letter='105' and @page='229' and @line='16'] -opus/marginalien/marginal[@index='3825' and @letter='72' and @page='180' and @line='35'] -opus/marginalien/marginal[@index='3826' and @letter='72' and @page='180' and @line='36'] -opus/marginalien/marginal[@index='3827' and @letter='149' and @page='357' and @line='3'] -opus/marginalien/marginal[@index='3828' and @letter='150' and @page='358' and @line='17'] -opus/marginalien/marginal[@index='3829' and @letter='150' and @page='361' and @line='9'] -opus/marginalien/marginal[@index='382' and @letter='19' and @page='55' and @line='10'] -opus/marginalien/marginal[@index='3830' and @letter='152' and @page='368' and @line='37'] -opus/marginalien/marginal[@index='3831' and @letter='157' and @page='396' and @line='33'] -opus/marginalien/marginal[@index='3832' and @letter='158' and @page='402' and @line='17'] -opus/marginalien/marginal[@index='3833' and @letter='158' and @page='402' and @line='18'] -opus/marginalien/marginal[@index='3834' and @letter='158' and @page='402' and @line='18'] -opus/marginalien/marginal[@index='3835' and @letter='158' and @page='402' and @line='21'] -opus/marginalien/marginal[@index='3836' and @letter='127' and @page='273' and @line='29'] -opus/marginalien/marginal[@index='3837' and @letter='147' and @page='346' and @line='19'] -opus/marginalien/marginal[@index='3838' and @letter='156' and @page='393' and @line='20'] -opus/marginalien/marginal[@index='3839' and @letter='172' and @page='455' and @line='20'] -opus/marginalien/marginal[@index='383' and @letter='19' and @page='56' and @line='21'] -opus/marginalien/marginal[@index='3840' and @letter='72' and @page='180' and @line='6'] -opus/marginalien/marginal[@index='3841' and @letter='75' and @page='194' and @line='6'] -opus/marginalien/marginal[@index='3842' and @letter='166' and @page='439' and @line='30'] -opus/marginalien/marginal[@index='3843' and @letter='155' and @page='388' and @line='19'] -opus/marginalien/marginal[@index='3844' and @letter='157' and @page='396' and @line='14'] -opus/marginalien/marginal[@index='3845' and @letter='155' and @page='389' and @line='12'] -opus/marginalien/marginal[@index='3846' and @letter='155' and @page='389' and @line='23'] -opus/marginalien/marginal[@index='3847' and @letter='155' and @page='389' and @line='31'] -opus/marginalien/marginal[@index='3848' and @letter='155' and @page='390' and @line='4'] -opus/marginalien/marginal[@index='3849' and @letter='155' and @page='390' and @line='10'] -opus/marginalien/marginal[@index='384' and @letter='19' and @page='56' and @line='22'] -opus/marginalien/marginal[@index='3850' and @letter='155' and @page='390' and @line='23'] -opus/marginalien/marginal[@index='3851' and @letter='2' and @page='3' and @line='32'] -opus/marginalien/marginal[@index='3852' and @letter='2' and @page='3' and @line='32'] -opus/marginalien/marginal[@index='3853' and @letter='2' and @page='3' and @line='34'] -opus/marginalien/marginal[@index='3854' and @letter='8' and @page='22' and @line='12'] -opus/marginalien/marginal[@index='3855' and @letter='9' and @page='23' and @line='13'] -opus/marginalien/marginal[@index='3856' and @letter='10' and @page='28' and @line='15'] -opus/marginalien/marginal[@index='3857' and @letter='12' and @page='33' and @line='19'] -opus/marginalien/marginal[@index='3858' and @letter='15' and @page='39' and @line='30'] -opus/marginalien/marginal[@index='3859' and @letter='16' and @page='45' and @line='34'] -opus/marginalien/marginal[@index='385' and @letter='19' and @page='56' and @line='23'] -opus/marginalien/marginal[@index='3860' and @letter='21' and @page='59' and @line='1'] -opus/marginalien/marginal[@index='3861' and @letter='21' and @page='59' and @line='16'] -opus/marginalien/marginal[@index='3862' and @letter='22' and @page='60' and @line='23'] -opus/marginalien/marginal[@index='3863' and @letter='22' and @page='61' and @line='13'] -opus/marginalien/marginal[@index='3864' and @letter='22' and @page='61' and @line='33'] -opus/marginalien/marginal[@index='3865' and @letter='30' and @page='80' and @line='35'] -opus/marginalien/marginal[@index='3866' and @letter='31' and @page='82' and @line='31'] -opus/marginalien/marginal[@index='3867' and @letter='31' and @page='83' and @line='17'] -opus/marginalien/marginal[@index='3868' and @letter='32' and @page='84' and @line='7'] -opus/marginalien/marginal[@index='3869' and @letter='32' and @page='84' and @line='10'] -opus/marginalien/marginal[@index='386' and @letter='19' and @page='56' and @line='30'] -opus/marginalien/marginal[@index='3870' and @letter='43' and @page='108' and @line='8'] -opus/marginalien/marginal[@index='3871' and @letter='44' and @page='112' and @line='28'] -opus/marginalien/marginal[@index='3872' and @letter='45' and @page='114' and @line='24'] -opus/marginalien/marginal[@index='3873' and @letter='46' and @page='117' and @line='25'] -opus/marginalien/marginal[@index='3874' and @letter='46' and @page='117' and @line='32'] -opus/marginalien/marginal[@index='3875' and @letter='47' and @page='119' and @line='20'] -opus/marginalien/marginal[@index='3876' and @letter='46' and @page='116' and @line='18'] -opus/marginalien/marginal[@index='3877' and @letter='52' and @page='126' and @line='12'] -opus/marginalien/marginal[@index='3878' and @letter='53' and @page='132' and @line='13'] -opus/marginalien/marginal[@index='3879' and @letter='58' and @page='141' and @line='15'] -opus/marginalien/marginal[@index='387' and @letter='19' and @page='57' and @line='2'] -opus/marginalien/marginal[@index='3880' and @letter='59' and @page='145' and @line='14'] -opus/marginalien/marginal[@index='3881' and @letter='59' and @page='146' and @line='10'] -opus/marginalien/marginal[@index='3882' and @letter='59' and @page='146' and @line='10'] -opus/marginalien/marginal[@index='3883' and @letter='60' and @page='149' and @line='17'] -opus/marginalien/marginal[@index='3884' and @letter='61' and @page='152' and @line='19'] -opus/marginalien/marginal[@index='3885' and @letter='61' and @page='153' and @line='12'] -opus/marginalien/marginal[@index='3886' and @letter='62' and @page='156' and @line='17'] -opus/marginalien/marginal[@index='3887' and @letter='62' and @page='155' and @line='28'] -opus/marginalien/marginal[@index='3888' and @letter='63' and @page='156' and @line='31'] -opus/marginalien/marginal[@index='3889' and @letter='63' and @page='157' and @line='9'] -opus/marginalien/marginal[@index='388' and @letter='19' and @page='57' and @line='10'] -opus/marginalien/marginal[@index='3890' and @letter='63' and @page='157' and @line='9'] -opus/marginalien/marginal[@index='3891' and @letter='64' and @page='159' and @line='19'] -opus/marginalien/marginal[@index='3892' and @letter='64' and @page='160' and @line='5'] -opus/marginalien/marginal[@index='3893' and @letter='64' and @page='160' and @line='35'] -opus/marginalien/marginal[@index='3894' and @letter='64' and @page='161' and @line='34'] -opus/marginalien/marginal[@index='3895' and @letter='65' and @page='163' and @line='29'] -opus/marginalien/marginal[@index='3896' and @letter='66' and @page='164' and @line='9'] -opus/marginalien/marginal[@index='3897' and @letter='66' and @page='164' and @line='36'] -opus/marginalien/marginal[@index='3898' and @letter='67' and @page='165' and @line='9'] -opus/marginalien/marginal[@index='3899' and @letter='67' and @page='165' and @line='22'] -opus/marginalien/marginal[@index='389' and @letter='19' and @page='57' and @line='14'] -opus/marginalien/marginal[@index='38' and @letter='3' and @page='7' and @line='19'] -opus/marginalien/marginal[@index='3900' and @letter='67' and @page='165' and @line='8'] -opus/marginalien/marginal[@index='3901' and @letter='69' and @page='170' and @line='28'] -opus/marginalien/marginal[@index='3902' and @letter='72' and @page='181' and @line='3'] -opus/marginalien/marginal[@index='3903' and @letter='72' and @page='181' and @line='11'] -opus/marginalien/marginal[@index='3904' and @letter='72' and @page='183' and @line='23'] -opus/marginalien/marginal[@index='3905' and @letter='72' and @page='183' and @line='25'] -opus/marginalien/marginal[@index='3906' and @letter='72' and @page='183' and @line='29'] -opus/marginalien/marginal[@index='3907' and @letter='73' and @page='184' and @line='29'] -opus/marginalien/marginal[@index='3908' and @letter='105' and @page='227' and @line='18'] -opus/marginalien/marginal[@index='3909' and @letter='115' and @page='250' and @line='29'] -opus/marginalien/marginal[@index='390' and @letter='19' and @page='57' and @line='15'] -opus/marginalien/marginal[@index='3910' and @letter='115' and @page='251' and @line='30'] -opus/marginalien/marginal[@index='3911' and @letter='115' and @page='251' and @line='34'] -opus/marginalien/marginal[@index='3912' and @letter='115' and @page='251' and @line='37'] -opus/marginalien/marginal[@index='3913' and @letter='115' and @page='252' and @line='2'] -opus/marginalien/marginal[@index='3914' and @letter='115' and @page='252' and @line='3'] -opus/marginalien/marginal[@index='3915' and @letter='115' and @page='252' and @line='8'] -opus/marginalien/marginal[@index='3916' and @letter='115' and @page='252' and @line='10'] -opus/marginalien/marginal[@index='3917' and @letter='115' and @page='252' and @line='13'] -opus/marginalien/marginal[@index='3918' and @letter='116' and @page='253' and @line='3'] -opus/marginalien/marginal[@index='3919' and @letter='116' and @page='253' and @line='3'] -opus/marginalien/marginal[@index='391' and @letter='19' and @page='57' and @line='16'] -opus/marginalien/marginal[@index='3920' and @letter='116' and @page='253' and @line='4'] -opus/marginalien/marginal[@index='3921' and @letter='116' and @page='253' and @line='7'] -opus/marginalien/marginal[@index='3922' and @letter='116' and @page='253' and @line='7'] -opus/marginalien/marginal[@index='3923' and @letter='116' and @page='253' and @line='8'] -opus/marginalien/marginal[@index='3924' and @letter='116' and @page='253' and @line='8'] -opus/marginalien/marginal[@index='3925' and @letter='116' and @page='253' and @line='9'] -opus/marginalien/marginal[@index='3926' and @letter='116' and @page='253' and @line='14'] -opus/marginalien/marginal[@index='3927' and @letter='116' and @page='253' and @line='22'] -opus/marginalien/marginal[@index='3928' and @letter='116' and @page='253' and @line='24'] -opus/marginalien/marginal[@index='3929' and @letter='128' and @page='277' and @line='19'] -opus/marginalien/marginal[@index='392' and @letter='19' and @page='57' and @line='17'] -opus/marginalien/marginal[@index='3930' and @letter='139' and @page='308' and @line='15'] -opus/marginalien/marginal[@index='3931' and @letter='144' and @page='331' and @line='1'] -opus/marginalien/marginal[@index='3932' and @letter='144' and @page='332' and @line='31'] -opus/marginalien/marginal[@index='3933' and @letter='143' and @page='323' and @line='18'] -opus/marginalien/marginal[@index='3934' and @letter='4' and @page='12' and @line='20'] -opus/marginalien/marginal[@index='3935' and @letter='14' and @page='36' and @line='30'] -opus/marginalien/marginal[@index='3936' and @letter='10' and @page='27' and @line='5'] -opus/marginalien/marginal[@index='3937' and @letter='10' and @page='27' and @line='11'] -opus/marginalien/marginal[@index='3938' and @letter='11' and @page='31' and @line='30'] -opus/marginalien/marginal[@index='3939' and @letter='12' and @page='33' and @line='5'] -opus/marginalien/marginal[@index='393' and @letter='19' and @page='57' and @line='17'] -opus/marginalien/marginal[@index='3940' and @letter='23' and @page='63' and @line='33'] -opus/marginalien/marginal[@index='3941' and @letter='28' and @page='75' and @line='5'] -opus/marginalien/marginal[@index='3942' and @letter='29' and @page='77' and @line='10'] -opus/marginalien/marginal[@index='3943' and @letter='36' and @page='91' and @line='22'] -opus/marginalien/marginal[@index='3944' and @letter='33' and @page='86' and @line='12'] -opus/marginalien/marginal[@index='3950' and @letter='119' and @page='257' and @line='30'] -opus/marginalien/marginal[@index='3951' and @letter='121' and @page='262' and @line='27'] -opus/marginalien/marginal[@index='3952' and @letter='131' and @page='283' and @line='10'] -opus/marginalien/marginal[@index='3953' and @letter='127' and @page='273' and @line='33'] -opus/marginalien/marginal[@index='3954' and @letter='123' and @page='265' and @line='6'] -opus/marginalien/marginal[@index='3955' and @letter='63' and @page='158' and @line='11'] -opus/marginalien/marginal[@index='3957' and @letter='144' and @page='331' and @line='20'] -opus/marginalien/marginal[@index='3959' and @letter='149' and @page='356' and @line='34'] -opus/marginalien/marginal[@index='395' and @letter='19' and @page='58' and @line='15'] -opus/marginalien/marginal[@index='3960' and @letter='150' and @page='360' and @line='13'] -opus/marginalien/marginal[@index='3961' and @letter='156' and @page='392' and @line='8'] -opus/marginalien/marginal[@index='3962' and @letter='173' and @page='457' and @line='36'] -opus/marginalien/marginal[@index='3963' and @letter='145' and @page='335' and @line='19'] -opus/marginalien/marginal[@index='3964' and @letter='145' and @page='335' and @line='24'] -opus/marginalien/marginal[@index='3965' and @letter='154' and @page='385' and @line='11'] -opus/marginalien/marginal[@index='3966' and @letter='153' and @page='373' and @line='21'] -opus/marginalien/marginal[@index='3967' and @letter='153' and @page='378' and @line='32'] -opus/marginalien/marginal[@index='3968' and @letter='170' and @page='448' and @line='2'] -opus/marginalien/marginal[@index='3969' and @letter='153' and @page='380' and @line='34'] -opus/marginalien/marginal[@index='396' and @letter='20' and @page='58' and @line='18'] -opus/marginalien/marginal[@index='3970' and @letter='164' and @page='434' and @line='24'] -opus/marginalien/marginal[@index='3971' and @letter='150' and @page='358' and @line='1'] -opus/marginalien/marginal[@index='3972' and @letter='154' and @page='381' and @line='27'] -opus/marginalien/marginal[@index='3973' and @letter='156' and @page='393' and @line='6'] -opus/marginalien/marginal[@index='3974' and @letter='103' and @page='223' and @line='30'] -opus/marginalien/marginal[@index='3975' and @letter='103' and @page='223' and @line='30'] -opus/marginalien/marginal[@index='3976' and @letter='103' and @page='223' and @line='29'] -opus/marginalien/marginal[@index='3977' and @letter='119' and @page='259' and @line='6'] -opus/marginalien/marginal[@index='3978' and @letter='119' and @page='260' and @line='6'] -opus/marginalien/marginal[@index='3979' and @letter='167' and @page='442' and @line='17'] -opus/marginalien/marginal[@index='397' and @letter='20' and @page='58' and @line='23'] -opus/marginalien/marginal[@index='3980' and @letter='141' and @page='312' and @line='34'] -opus/marginalien/marginal[@index='3981' and @letter='10' and @page='24' and @line='37'] -opus/marginalien/marginal[@index='3982' and @letter='23' and @page='64' and @line='10'] -opus/marginalien/marginal[@index='3983' and @letter='27' and @page='74' and @line='1'] -opus/marginalien/marginal[@index='3984' and @letter='28' and @page='74' and @line='26'] -opus/marginalien/marginal[@index='3986' and @letter='31' and @page='82' and @line='2'] -opus/marginalien/marginal[@index='3987' and @letter='131' and @page='284' and @line='6'] -opus/marginalien/marginal[@index='3988' and @letter='28' and @page='74' and @line='27'] -opus/marginalien/marginal[@index='398' and @letter='21' and @page='59' and @line='6'] -opus/marginalien/marginal[@index='3990' and @letter='27' and @page='73' and @line='37'] -opus/marginalien/marginal[@index='3991' and @letter='30' and @page='80' and @line='34'] -opus/marginalien/marginal[@index='3992' and @letter='103' and @page='224' and @line='21'] -opus/marginalien/marginal[@index='3993' and @letter='105' and @page='232' and @line='8'] -opus/marginalien/marginal[@index='3994' and @letter='143' and @page='327' and @line='34'] -opus/marginalien/marginal[@index='3995' and @letter='157' and @page='400' and @line='9'] -opus/marginalien/marginal[@index='3996' and @letter='167' and @page='441' and @line='31'] -opus/marginalien/marginal[@index='3998' and @letter='167' and @page='441' and @line='12'] -opus/marginalien/marginal[@index='3999' and @letter='167' and @page='441' and @line='26'] -opus/marginalien/marginal[@index='399' and @letter='21' and @page='59' and @line='14'] -opus/marginalien/marginal[@index='39' and @letter='3' and @page='7' and @line='21'] -opus/marginalien/marginal[@index='3' and @letter='1' and @page='2' and @line='3'] -opus/marginalien/marginal[@index='4000' and @letter='55' and @page='137' and @line='3'] -opus/marginalien/marginal[@index='4001' and @letter='62' and @page='155' and @line='23'] -opus/marginalien/marginal[@index='4002' and @letter='160' and @page='408' and @line='8'] -opus/marginalien/marginal[@index='4003' and @letter='15' and @page='42' and @line='19'] -opus/marginalien/marginal[@index='4004' and @letter='103' and @page='224' and @line='1'] -opus/marginalien/marginal[@index='4005' and @letter='173' and @page='457' and @line='13'] -opus/marginalien/marginal[@index='4006' and @letter='7' and @page='16' and @line='11'] -opus/marginalien/marginal[@index='4007' and @letter='7' and @page='16' and @line='13'] -opus/marginalien/marginal[@index='4008' and @letter='7' and @page='17' and @line='8'] -opus/marginalien/marginal[@index='4009' and @letter='7' and @page='17' and @line='9'] -opus/marginalien/marginal[@index='400' and @letter='21' and @page='59' and @line='15'] -opus/marginalien/marginal[@index='4010' and @letter='8' and @page='20' and @line='3'] -opus/marginalien/marginal[@index='4011' and @letter='11' and @page='30' and @line='13'] -opus/marginalien/marginal[@index='4012' and @letter='11' and @page='31' and @line='26'] -opus/marginalien/marginal[@index='4013' and @letter='13' and @page='36' and @line='11'] -opus/marginalien/marginal[@index='4014' and @letter='18' and @page='49' and @line='21'] -opus/marginalien/marginal[@index='4015' and @letter='20' and @page='58' and @line='21'] -opus/marginalien/marginal[@index='4016' and @letter='20' and @page='58' and @line='21'] -opus/marginalien/marginal[@index='4017' and @letter='29' and @page='78' and @line='2'] -opus/marginalien/marginal[@index='4019' and @letter='40' and @page='100' and @line='5'] -opus/marginalien/marginal[@index='401' and @letter='21' and @page='59' and @line='19'] -opus/marginalien/marginal[@index='4020' and @letter='45' and @page='113' and @line='21'] -opus/marginalien/marginal[@index='4021' and @letter='46' and @page='116' and @line='18'] -opus/marginalien/marginal[@index='4022' and @letter='47' and @page='119' and @line='20'] -opus/marginalien/marginal[@index='4023' and @letter='49' and @page='123' and @line='1'] -opus/marginalien/marginal[@index='4024' and @letter='52' and @page='128' and @line='13'] -opus/marginalien/marginal[@index='4025' and @letter='64' and @page='160' and @line='33'] -opus/marginalien/marginal[@index='4026' and @letter='64' and @page='162' and @line='2'] -opus/marginalien/marginal[@index='4027' and @letter='66' and @page='164' and @line='25'] -opus/marginalien/marginal[@index='4028' and @letter='72' and @page='180' and @line='25'] -opus/marginalien/marginal[@index='4029' and @letter='72' and @page='183' and @line='22'] -opus/marginalien/marginal[@index='402' and @letter='21' and @page='59' and @line='20'] -opus/marginalien/marginal[@index='4030' and @letter='73' and @page='186' and @line='1'] -opus/marginalien/marginal[@index='4031' and @letter='74' and @page='188' and @line='9'] -opus/marginalien/marginal[@index='4032' and @letter='74' and @page='188' and @line='10'] -opus/marginalien/marginal[@index='4033' and @letter='74' and @page='188' and @line='11'] -opus/marginalien/marginal[@index='4034' and @letter='82' and @page='210' and @line='31'] -opus/marginalien/marginal[@index='4035' and @letter='98' and @page='219' and @line='21'] -opus/marginalien/marginal[@index='4037' and @letter='100' and @page='220' and @line='28'] -opus/marginalien/marginal[@index='4038' and @letter='103' and @page='223' and @line='34'] -opus/marginalien/marginal[@index='4039' and @letter='104' and @page='226' and @line='10'] -opus/marginalien/marginal[@index='403' and @letter='21' and @page='60' and @line='3'] -opus/marginalien/marginal[@index='4040' and @letter='106' and @page='234' and @line='21'] -opus/marginalien/marginal[@index='4041' and @letter='111' and @page='245' and @line='14'] -opus/marginalien/marginal[@index='4042' and @letter='112' and @page='246' and @line='20'] -opus/marginalien/marginal[@index='4043' and @letter='117' and @page='254' and @line='16'] -opus/marginalien/marginal[@index='4044' and @letter='121' and @page='262' and @line='15'] -opus/marginalien/marginal[@index='4045' and @letter='122' and @page='264' and @line='22'] -opus/marginalien/marginal[@index='4046' and @letter='122' and @page='264' and @line='25'] -opus/marginalien/marginal[@index='4047' and @letter='123' and @page='265' and @line='6'] -opus/marginalien/marginal[@index='4048' and @letter='139' and @page='309' and @line='19'] -opus/marginalien/marginal[@index='4049' and @letter='139' and @page='309' and @line='21'] -opus/marginalien/marginal[@index='404' and @letter='22' and @page='60' and @line='20'] -opus/marginalien/marginal[@index='4050' and @letter='145' and @page='333' and @line='11'] -opus/marginalien/marginal[@index='4051' and @letter='149' and @page='357' and @line='13'] -opus/marginalien/marginal[@index='4052' and @letter='149' and @page='357' and @line='15'] -opus/marginalien/marginal[@index='4053' and @letter='152' and @page='365' and @line='28'] -opus/marginalien/marginal[@index='4054' and @letter='155' and @page='386' and @line='32'] -opus/marginalien/marginal[@index='4055' and @letter='156' and @page='394' and @line='30'] -opus/marginalien/marginal[@index='4056' and @letter='159' and @page='404' and @line='1'] -opus/marginalien/marginal[@index='4057' and @letter='164' and @page='432' and @line='23'] -opus/marginalien/marginal[@index='4058' and @letter='164' and @page='434' and @line='17'] -opus/marginalien/marginal[@index='4059' and @letter='165' and @page='438' and @line='14'] -opus/marginalien/marginal[@index='405' and @letter='22' and @page='60' and @line='31'] -opus/marginalien/marginal[@index='4060' and @letter='167' and @page='442' and @line='6'] -opus/marginalien/marginal[@index='4061' and @letter='167' and @page='443' and @line='26'] -opus/marginalien/marginal[@index='4062' and @letter='167' and @page='443' and @line='27'] -opus/marginalien/marginal[@index='4063' and @letter='107' and @page='234' and @line='31'] -opus/marginalien/marginal[@index='4064' and @letter='107' and @page='236' and @line='11'] -opus/marginalien/marginal[@index='4065' and @letter='108' and @page='237' and @line='27'] -opus/marginalien/marginal[@index='4066' and @letter='108' and @page='238' and @line='24'] -opus/marginalien/marginal[@index='4067' and @letter='108' and @page='239' and @line='15'] -opus/marginalien/marginal[@index='4068' and @letter='108' and @page='240' and @line='7'] -opus/marginalien/marginal[@index='4069' and @letter='109' and @page='240' and @line='17'] -opus/marginalien/marginal[@index='406' and @letter='22' and @page='61' and @line='6'] -opus/marginalien/marginal[@index='4070' and @letter='109' and @page='240' and @line='19'] -opus/marginalien/marginal[@index='4071' and @letter='109' and @page='240' and @line='30'] -opus/marginalien/marginal[@index='4072' and @letter='109' and @page='241' and @line='12'] -opus/marginalien/marginal[@index='4073' and @letter='109' and @page='241' and @line='22'] -opus/marginalien/marginal[@index='4074' and @letter='3' and @page='6' and @line='2'] -opus/marginalien/marginal[@index='4075' and @letter='5' and @page='14' and @line='4'] -opus/marginalien/marginal[@index='4076' and @letter='6' and @page='14' and @line='19'] -opus/marginalien/marginal[@index='4077' and @letter='7' and @page='15' and @line='27'] -opus/marginalien/marginal[@index='4078' and @letter='7' and @page='16' and @line='35'] -opus/marginalien/marginal[@index='4079' and @letter='7' and @page='18' and @line='9'] -opus/marginalien/marginal[@index='407' and @letter='22' and @page='61' and @line='7'] -opus/marginalien/marginal[@index='4080' and @letter='7' and @page='19' and @line='5'] -opus/marginalien/marginal[@index='4081' and @letter='8' and @page='19' and @line='18'] -opus/marginalien/marginal[@index='4082' and @letter='8' and @page='19' and @line='18'] -opus/marginalien/marginal[@index='4083' and @letter='8' and @page='19' and @line='20'] -opus/marginalien/marginal[@index='4084' and @letter='8' and @page='20' and @line='4'] -opus/marginalien/marginal[@index='4085' and @letter='9' and @page='22' and @line='22'] -opus/marginalien/marginal[@index='4086' and @letter='9' and @page='23' and @line='20'] -opus/marginalien/marginal[@index='4087' and @letter='10' and @page='23' and @line='21'] -opus/marginalien/marginal[@index='4088' and @letter='10' and @page='27' and @line='24'] -opus/marginalien/marginal[@index='4089' and @letter='10' and @page='28' and @line='29'] -opus/marginalien/marginal[@index='408' and @letter='22' and @page='61' and @line='11'] -opus/marginalien/marginal[@index='4090' and @letter='10' and @page='29' and @line='11'] -opus/marginalien/marginal[@index='4091' and @letter='11' and @page='30' and @line='8'] -opus/marginalien/marginal[@index='4092' and @letter='11' and @page='30' and @line='32'] -opus/marginalien/marginal[@index='4093' and @letter='11' and @page='32' and @line='12'] -opus/marginalien/marginal[@index='4094' and @letter='11' and @page='32' and @line='19'] -opus/marginalien/marginal[@index='4095' and @letter='13' and @page='34' and @line='1'] -opus/marginalien/marginal[@index='4096' and @letter='13' and @page='34' and @line='20'] -opus/marginalien/marginal[@index='4097' and @letter='13' and @page='34' and @line='30'] -opus/marginalien/marginal[@index='4098' and @letter='13' and @page='34' and @line='31'] -opus/marginalien/marginal[@index='4099' and @letter='13' and @page='35' and @line='12'] -opus/marginalien/marginal[@index='409' and @letter='22' and @page='61' and @line='21'] -opus/marginalien/marginal[@index='40' and @letter='3' and @page='7' and @line='26'] -opus/marginalien/marginal[@index='4100' and @letter='14' and @page='36' and @line='25'] -opus/marginalien/marginal[@index='4101' and @letter='14' and @page='37' and @line='7'] -opus/marginalien/marginal[@index='4102' and @letter='14' and @page='38' and @line='6'] -opus/marginalien/marginal[@index='4103' and @letter='15' and @page='39' and @line='11'] -opus/marginalien/marginal[@index='4104' and @letter='16' and @page='46' and @line='13'] -opus/marginalien/marginal[@index='4105' and @letter='17' and @page='46' and @line='27'] -opus/marginalien/marginal[@index='4106' and @letter='103' and @page='223' and @line='30'] -opus/marginalien/marginal[@index='4107' and @letter='74' and @page='188' and @line='14'] -opus/marginalien/marginal[@index='4108' and @letter='74' and @page='188' and @line='15'] -opus/marginalien/marginal[@index='4109' and @letter='74' and @page='188' and @line='17'] -opus/marginalien/marginal[@index='410' and @letter='22' and @page='61' and @line='24'] -opus/marginalien/marginal[@index='4110' and @letter='18' and @page='50' and @line='19'] -opus/marginalien/marginal[@index='4111' and @letter='19' and @page='52' and @line='14'] -opus/marginalien/marginal[@index='4112' and @letter='19' and @page='57' and @line='33'] -opus/marginalien/marginal[@index='4113' and @letter='19' and @page='58' and @line='5'] -opus/marginalien/marginal[@index='4114' and @letter='21' and @page='59' and @line='3'] -opus/marginalien/marginal[@index='4115' and @letter='25' and @page='66' and @line='18'] -opus/marginalien/marginal[@index='4116' and @letter='25' and @page='67' and @line='22'] -opus/marginalien/marginal[@index='4117' and @letter='26' and @page='69' and @line='36'] -opus/marginalien/marginal[@index='4118' and @letter='28' and @page='74' and @line='16'] -opus/marginalien/marginal[@index='4119' and @letter='40' and @page='103' and @line='9'] -opus/marginalien/marginal[@index='411' and @letter='22' and @page='61' and @line='31'] -opus/marginalien/marginal[@index='4120' and @letter='25' and @page='67' and @line='29'] -opus/marginalien/marginal[@index='4121' and @letter='39' and @page='96' and @line='21'] -opus/marginalien/marginal[@index='4122' and @letter='40' and @page='100' and @line='1'] -opus/marginalien/marginal[@index='4123' and @letter='77' and @page='205' and @line='1'] -opus/marginalien/marginal[@index='4124' and @letter='78' and @page='205' and @line='12'] -opus/marginalien/marginal[@index='4126' and @letter='82' and @page='210' and @line='30'] -opus/marginalien/marginal[@index='4127' and @letter='84' and @page='212' and @line='32'] -opus/marginalien/marginal[@index='4128' and @letter='25' and @page='67' and @line='27'] -opus/marginalien/marginal[@index='4129' and @letter='28' and @page='74' and @line='23'] -opus/marginalien/marginal[@index='412' and @letter='22' and @page='61' and @line='34'] -opus/marginalien/marginal[@index='4130' and @letter='35' and @page='88' and @line='28'] -opus/marginalien/marginal[@index='4131' and @letter='39' and @page='99' and @line='30'] -opus/marginalien/marginal[@index='4132' and @letter='40' and @page='100' and @line='17'] -opus/marginalien/marginal[@index='4133' and @letter='40' and @page='100' and @line='36'] -opus/marginalien/marginal[@index='4134' and @letter='40' and @page='101' and @line='10'] -opus/marginalien/marginal[@index='4135' and @letter='41' and @page='103' and @line='25'] -opus/marginalien/marginal[@index='4136' and @letter='42' and @page='104' and @line='4'] -opus/marginalien/marginal[@index='4137' and @letter='42' and @page='104' and @line='15'] -opus/marginalien/marginal[@index='4138' and @letter='42' and @page='105' and @line='17'] -opus/marginalien/marginal[@index='4139' and @letter='42' and @page='105' and @line='26'] -opus/marginalien/marginal[@index='413' and @letter='22' and @page='61' and @line='37'] -opus/marginalien/marginal[@index='4140' and @letter='43' and @page='107' and @line='22'] -opus/marginalien/marginal[@index='4141' and @letter='19' and @page='56' and @line='24'] -opus/marginalien/marginal[@index='4142' and @letter='21' and @page='59' and @line='11'] -opus/marginalien/marginal[@index='4143' and @letter='22' and @page='60' and @line='24'] -opus/marginalien/marginal[@index='4144' and @letter='23' and @page='62' and @line='35'] -opus/marginalien/marginal[@index='4145' and @letter='25' and @page='66' and @line='12'] -opus/marginalien/marginal[@index='4147' and @letter='26' and @page='69' and @line='36'] -opus/marginalien/marginal[@index='4148' and @letter='27' and @page='72' and @line='34'] -opus/marginalien/marginal[@index='4149' and @letter='28' and @page='74' and @line='28'] -opus/marginalien/marginal[@index='414' and @letter='22' and @page='62' and @line='2'] -opus/marginalien/marginal[@index='4150' and @letter='29' and @page='76' and @line='27'] -opus/marginalien/marginal[@index='4151' and @letter='31' and @page='82' and @line='27'] -opus/marginalien/marginal[@index='4152' and @letter='35' and @page='88' and @line='1'] -opus/marginalien/marginal[@index='4153' and @letter='36' and @page='91' and @line='27'] -opus/marginalien/marginal[@index='4154' and @letter='38' and @page='95' and @line='15'] -opus/marginalien/marginal[@index='4155' and @letter='39' and @page='96' and @line='24'] -opus/marginalien/marginal[@index='4156' and @letter='40' and @page='100' and @line='35'] -opus/marginalien/marginal[@index='4157' and @letter='42' and @page='106' and @line='27'] -opus/marginalien/marginal[@index='4158' and @letter='43' and @page='110' and @line='2'] -opus/marginalien/marginal[@index='4159' and @letter='45' and @page='114' and @line='25'] -opus/marginalien/marginal[@index='415' and @letter='22' and @page='62' and @line='6'] -opus/marginalien/marginal[@index='4160' and @letter='46' and @page='115' and @line='17'] -opus/marginalien/marginal[@index='4161' and @letter='47' and @page='118' and @line='1'] -opus/marginalien/marginal[@index='4162' and @letter='50' and @page='124' and @line='3'] -opus/marginalien/marginal[@index='4163' and @letter='51' and @page='125' and @line='9'] -opus/marginalien/marginal[@index='4164' and @letter='52' and @page='126' and @line='10'] -opus/marginalien/marginal[@index='4165' and @letter='53' and @page='129' and @line='21'] -opus/marginalien/marginal[@index='4166' and @letter='57' and @page='139' and @line='34'] -opus/marginalien/marginal[@index='4167' and @letter='59' and @page='147' and @line='3'] -opus/marginalien/marginal[@index='4168' and @letter='60' and @page='147' and @line='14'] -opus/marginalien/marginal[@index='4169' and @letter='75' and @page='190' and @line='22'] -opus/marginalien/marginal[@index='416' and @letter='22' and @page='62' and @line='9'] -opus/marginalien/marginal[@index='4170' and @letter='83' and @page='212' and @line='17'] -opus/marginalien/marginal[@index='4171' and @letter='91' and @page='216' and @line='18'] -opus/marginalien/marginal[@index='4172' and @letter='43' and @page='107' and @line='25'] -opus/marginalien/marginal[@index='4173' and @letter='43' and @page='108' and @line='9'] -opus/marginalien/marginal[@index='4174' and @letter='43' and @page='109' and @line='18'] -opus/marginalien/marginal[@index='4175' and @letter='43' and @page='110' and @line='9'] -opus/marginalien/marginal[@index='4177' and @letter='44' and @page='111' and @line='25'] -opus/marginalien/marginal[@index='4178' and @letter='46' and @page='114' and @line='35'] -opus/marginalien/marginal[@index='4179' and @letter='46' and @page='115' and @line='30'] -opus/marginalien/marginal[@index='417' and @letter='22' and @page='62' and @line='20'] -opus/marginalien/marginal[@index='4180' and @letter='46' and @page='115' and @line='33'] -opus/marginalien/marginal[@index='4181' and @letter='47' and @page='119' and @line='21'] -opus/marginalien/marginal[@index='4182' and @letter='48' and @page='120' and @line='33'] -opus/marginalien/marginal[@index='4183' and @letter='50' and @page='123' and @line='30'] -opus/marginalien/marginal[@index='4184' and @letter='50' and @page='124' and @line='9'] -opus/marginalien/marginal[@index='4185' and @letter='52' and @page='126' and @line='8'] -opus/marginalien/marginal[@index='4186' and @letter='120' and @page='260' and @line='31'] -opus/marginalien/marginal[@index='4187' and @letter='123' and @page='264' and @line='34'] -opus/marginalien/marginal[@index='4188' and @letter='23' and @page='63' and @line='5'] -opus/marginalien/marginal[@index='4189' and @letter='53' and @page='129' and @line='18'] -opus/marginalien/marginal[@index='418' and @letter='22' and @page='62' and @line='21'] -opus/marginalien/marginal[@index='4190' and @letter='52' and @page='128' and @line='31'] -opus/marginalien/marginal[@index='4191' and @letter='53' and @page='129' and @line='4'] -opus/marginalien/marginal[@index='4192' and @letter='53' and @page='131' and @line='28'] -opus/marginalien/marginal[@index='4193' and @letter='54' and @page='133' and @line='24'] -opus/marginalien/marginal[@index='4194' and @letter='55' and @page='134' and @line='28'] -opus/marginalien/marginal[@index='4195' and @letter='55' and @page='137' and @line='7'] -opus/marginalien/marginal[@index='4196' and @letter='53' and @page='131' and @line='29'] -opus/marginalien/marginal[@index='4197' and @letter='56' and @page='138' and @line='30'] -opus/marginalien/marginal[@index='4198' and @letter='58' and @page='142' and @line='35'] -opus/marginalien/marginal[@index='4199' and @letter='63' and @page='157' and @line='21'] -opus/marginalien/marginal[@index='419' and @letter='22' and @page='62' and @line='24'] -opus/marginalien/marginal[@index='41' and @letter='3' and @page='7' and @line='27'] -opus/marginalien/marginal[@index='4200' and @letter='63' and @page='159' and @line='5'] -opus/marginalien/marginal[@index='4201' and @letter='64' and @page='162' and @line='11'] -opus/marginalien/marginal[@index='4202' and @letter='65' and @page='163' and @line='19'] -opus/marginalien/marginal[@index='4203' and @letter='66' and @page='164' and @line='25'] -opus/marginalien/marginal[@index='4204' and @letter='69' and @page='169' and @line='30'] -opus/marginalien/marginal[@index='4205' and @letter='70' and @page='173' and @line='20'] -opus/marginalien/marginal[@index='4206' and @letter='72' and @page='180' and @line='35'] -opus/marginalien/marginal[@index='4207' and @letter='72' and @page='180' and @line='35'] -opus/marginalien/marginal[@index='4208' and @letter='72' and @page='180' and @line='35'] -opus/marginalien/marginal[@index='4209' and @letter='72' and @page='183' and @line='29'] -opus/marginalien/marginal[@index='420' and @letter='22' and @page='62' and @line='28'] -opus/marginalien/marginal[@index='4210' and @letter='72' and @page='183' and @line='31'] -opus/marginalien/marginal[@index='4211' and @letter='72' and @page='183' and @line='32'] -opus/marginalien/marginal[@index='4212' and @letter='73' and @page='186' and @line='16'] -opus/marginalien/marginal[@index='4213' and @letter='74' and @page='189' and @line='21'] -opus/marginalien/marginal[@index='4214' and @letter='74' and @page='190' and @line='7'] -opus/marginalien/marginal[@index='4215' and @letter='74' and @page='190' and @line='7'] -opus/marginalien/marginal[@index='4216' and @letter='75' and @page='190' and @line='31'] -opus/marginalien/marginal[@index='4217' and @letter='75' and @page='195' and @line='17'] -opus/marginalien/marginal[@index='4218' and @letter='71' and @page='176' and @line='2'] -opus/marginalien/marginal[@index='4219' and @letter='5' and @page='13' and @line='18'] -opus/marginalien/marginal[@index='421' and @letter='23' and @page='63' and @line='8'] -opus/marginalien/marginal[@index='4220' and @letter='43' and @page='107' and @line='29'] -opus/marginalien/marginal[@index='4221' and @letter='123' and @page='265' and @line='6'] -opus/marginalien/marginal[@index='4222' and @letter='76' and @page='197' and @line='20'] -opus/marginalien/marginal[@index='4223' and @letter='76' and @page='199' and @line='2'] -opus/marginalien/marginal[@index='4224' and @letter='77' and @page='200' and @line='36'] -opus/marginalien/marginal[@index='4225' and @letter='77' and @page='202' and @line='35'] -opus/marginalien/marginal[@index='4226' and @letter='77' and @page='203' and @line='27'] -opus/marginalien/marginal[@index='4227' and @letter='77' and @page='204' and @line='24'] -opus/marginalien/marginal[@index='4228' and @letter='78' and @page='205' and @line='21'] -opus/marginalien/marginal[@index='4229' and @letter='78' and @page='207' and @line='19'] -opus/marginalien/marginal[@index='422' and @letter='23' and @page='63' and @line='10'] -opus/marginalien/marginal[@index='4230' and @letter='82' and @page='210' and @line='29'] -opus/marginalien/marginal[@index='4231' and @letter='82' and @page='211' and @line='26'] -opus/marginalien/marginal[@index='4232' and @letter='86' and @page='213' and @line='30'] -opus/marginalien/marginal[@index='4233' and @letter='103' and @page='225' and @line='1'] -opus/marginalien/marginal[@index='4234' and @letter='104' and @page='226' and @line='19'] -opus/marginalien/marginal[@index='4235' and @letter='104' and @page='226' and @line='19'] -opus/marginalien/marginal[@index='4236' and @letter='105' and @page='232' and @line='6'] -opus/marginalien/marginal[@index='4237' and @letter='105' and @page='232' and @line='18'] -opus/marginalien/marginal[@index='4238' and @letter='108' and @page='236' and @line='24'] -opus/marginalien/marginal[@index='4239' and @letter='108' and @page='236' and @line='26'] -opus/marginalien/marginal[@index='423' and @letter='23' and @page='63' and @line='33'] -opus/marginalien/marginal[@index='4240' and @letter='111' and @page='245' and @line='1'] -opus/marginalien/marginal[@index='4241' and @letter='111' and @page='245' and @line='6'] -opus/marginalien/marginal[@index='4242' and @letter='112' and @page='246' and @line='15'] -opus/marginalien/marginal[@index='4243' and @letter='112' and @page='246' and @line='37'] -opus/marginalien/marginal[@index='4244' and @letter='114' and @page='250' and @line='17'] -opus/marginalien/marginal[@index='4245' and @letter='115' and @page='252' and @line='37'] -opus/marginalien/marginal[@index='4246' and @letter='116' and @page='253' and @line='25'] -opus/marginalien/marginal[@index='4247' and @letter='116' and @page='253' and @line='30'] -opus/marginalien/marginal[@index='4248' and @letter='117' and @page='254' and @line='3'] -opus/marginalien/marginal[@index='4249' and @letter='117' and @page='255' and @line='13'] -opus/marginalien/marginal[@index='424' and @letter='23' and @page='64' and @line='13'] -opus/marginalien/marginal[@index='4250' and @letter='119' and @page='258' and @line='27'] -opus/marginalien/marginal[@index='4251' and @letter='127' and @page='272' and @line='27'] -opus/marginalien/marginal[@index='4252' and @letter='128' and @page='274' and @line='27'] -opus/marginalien/marginal[@index='4253' and @letter='129' and @page='280' and @line='19'] -opus/marginalien/marginal[@index='4254' and @letter='130' and @page='281' and @line='26'] -opus/marginalien/marginal[@index='4255' and @letter='131' and @page='284' and @line='22'] -opus/marginalien/marginal[@index='4256' and @letter='131' and @page='284' and @line='25'] -opus/marginalien/marginal[@index='4257' and @letter='132' and @page='284' and @line='26'] -opus/marginalien/marginal[@index='4258' and @letter='132' and @page='284' and @line='33'] -opus/marginalien/marginal[@index='4259' and @letter='157' and @page='396' and @line='27'] -opus/marginalien/marginal[@index='425' and @letter='23' and @page='64' and @line='14'] -opus/marginalien/marginal[@index='4260' and @letter='157' and @page='396' and @line='25'] -opus/marginalien/marginal[@index='4261' and @letter='150' and @page='358' and @line='34'] -opus/marginalien/marginal[@index='4262' and @letter='133' and @page='286' and @line='26'] -opus/marginalien/marginal[@index='4263' and @letter='134' and @page='287' and @line='9'] -opus/marginalien/marginal[@index='4264' and @letter='134' and @page='289' and @line='23'] -opus/marginalien/marginal[@index='4265' and @letter='135' and @page='289' and @line='29'] -opus/marginalien/marginal[@index='4266' and @letter='135' and @page='290' and @line='32'] -opus/marginalien/marginal[@index='4267' and @letter='135' and @page='290' and @line='32'] -opus/marginalien/marginal[@index='4268' and @letter='139' and @page='303' and @line='14'] -opus/marginalien/marginal[@index='4269' and @letter='139' and @page='307' and @line='9'] -opus/marginalien/marginal[@index='426' and @letter='23' and @page='64' and @line='22'] -opus/marginalien/marginal[@index='4270' and @letter='139' and @page='307' and @line='10'] -opus/marginalien/marginal[@index='4271' and @letter='139' and @page='307' and @line='11'] -opus/marginalien/marginal[@index='4272' and @letter='139' and @page='307' and @line='33'] -opus/marginalien/marginal[@index='4273' and @letter='139' and @page='309' and @line='21'] -opus/marginalien/marginal[@index='4274' and @letter='139' and @page='309' and @line='24'] -opus/marginalien/marginal[@index='4275' and @letter='143' and @page='315' and @line='30'] -opus/marginalien/marginal[@index='4276' and @letter='143' and @page='316' and @line='24'] -opus/marginalien/marginal[@index='4277' and @letter='143' and @page='318' and @line='21'] -opus/marginalien/marginal[@index='4278' and @letter='143' and @page='318' and @line='26'] -opus/marginalien/marginal[@index='4279' and @letter='143' and @page='326' and @line='29'] -opus/marginalien/marginal[@index='427' and @letter='25' and @page='66' and @line='15'] -opus/marginalien/marginal[@index='4280' and @letter='144' and @page='332' and @line='8'] -opus/marginalien/marginal[@index='4281' and @letter='145' and @page='333' and @line='4'] -opus/marginalien/marginal[@index='4282' and @letter='145' and @page='333' and @line='5'] -opus/marginalien/marginal[@index='4283' and @letter='145' and @page='333' and @line='6'] -opus/marginalien/marginal[@index='4284' and @letter='146' and @page='341' and @line='26'] -opus/marginalien/marginal[@index='4285' and @letter='147' and @page='347' and @line='32'] -opus/marginalien/marginal[@index='4286' and @letter='149' and @page='354' and @line='20'] -opus/marginalien/marginal[@index='4287' and @letter='150' and @page='357' and @line='31'] -opus/marginalien/marginal[@index='4288' and @letter='150' and @page='359' and @line='3'] -opus/marginalien/marginal[@index='4289' and @letter='150' and @page='360' and @line='22'] -opus/marginalien/marginal[@index='428' and @letter='25' and @page='67' and @line='22'] -opus/marginalien/marginal[@index='4290' and @letter='152' and @page='363' and @line='25'] -opus/marginalien/marginal[@index='4291' and @letter='152' and @page='366' and @line='29'] -opus/marginalien/marginal[@index='4292' and @letter='153' and @page='378' and @line='27'] -opus/marginalien/marginal[@index='4293' and @letter='154' and @page='381' and @line='17'] -opus/marginalien/marginal[@index='4294' and @letter='154' and @page='383' and @line='25'] -opus/marginalien/marginal[@index='4295' and @letter='155' and @page='386' and @line='31'] -opus/marginalien/marginal[@index='4296' and @letter='155' and @page='391' and @line='4'] -opus/marginalien/marginal[@index='4297' and @letter='156' and @page='392' and @line='19'] -opus/marginalien/marginal[@index='4298' and @letter='156' and @page='393' and @line='21'] -opus/marginalien/marginal[@index='4299' and @letter='156' and @page='394' and @line='18'] -opus/marginalien/marginal[@index='429' and @letter='25' and @page='67' and @line='25'] -opus/marginalien/marginal[@index='42' and @letter='3' and @page='7' and @line='29'] -opus/marginalien/marginal[@index='4300' and @letter='157' and @page='396' and @line='5'] -opus/marginalien/marginal[@index='4301' and @letter='157' and @page='396' and @line='5'] -opus/marginalien/marginal[@index='4302' and @letter='157' and @page='397' and @line='25'] -opus/marginalien/marginal[@index='4303' and @letter='157' and @page='398' and @line='20'] -opus/marginalien/marginal[@index='4304' and @letter='163' and @page='425' and @line='2'] -opus/marginalien/marginal[@index='4305' and @letter='164' and @page='432' and @line='1'] -opus/marginalien/marginal[@index='4306' and @letter='164' and @page='432' and @line='36'] -opus/marginalien/marginal[@index='4307' and @letter='165' and @page='438' and @line='16'] -opus/marginalien/marginal[@index='4308' and @letter='170' and @page='451' and @line='35'] -opus/marginalien/marginal[@index='4309' and @letter='172' and @page='455' and @line='28'] -opus/marginalien/marginal[@index='430' and @letter='25' and @page='67' and @line='25'] -opus/marginalien/marginal[@index='4310' and @letter='172' and @page='455' and @line='29'] -opus/marginalien/marginal[@index='4311' and @letter='173' and @page='457' and @line='14'] -opus/marginalien/marginal[@index='4312' and @letter='173' and @page='458' and @line='22'] -opus/marginalien/marginal[@index='4313' and @letter='151' and @page='363' and @line='23'] -opus/marginalien/marginal[@index='4314' and @letter='124' and @page='266' and @line='25'] -opus/marginalien/marginal[@index='4315' and @letter='144' and @page='331' and @line='30'] -opus/marginalien/marginal[@index='4316' and @letter='140' and @page='310' and @line='6'] -opus/marginalien/marginal[@index='4317' and @letter='140' and @page='312' and @line='8'] -opus/marginalien/marginal[@index='4318' and @letter='142' and @page='314' and @line='21'] -opus/marginalien/marginal[@index='4319' and @letter='148' and @page='348' and @line='25'] -opus/marginalien/marginal[@index='431' and @letter='25' and @page='67' and @line='28'] -opus/marginalien/marginal[@index='4320' and @letter='153' and @page='378' and @line='31'] -opus/marginalien/marginal[@index='432' and @letter='25' and @page='68' and @line='5'] -opus/marginalien/marginal[@index='433' and @letter='25' and @page='68' and @line='5'] -opus/marginalien/marginal[@index='434' and @letter='25' and @page='68' and @line='8'] -opus/marginalien/marginal[@index='435' and @letter='25' and @page='68' and @line='13'] -opus/marginalien/marginal[@index='436' and @letter='25' and @page='68' and @line='15'] -opus/marginalien/marginal[@index='437' and @letter='25' and @page='68' and @line='17'] -opus/marginalien/marginal[@index='438' and @letter='25' and @page='68' and @line='19'] -opus/marginalien/marginal[@index='439' and @letter='25' and @page='68' and @line='25'] -opus/marginalien/marginal[@index='43' and @letter='3' and @page='7' and @line='30'] -opus/marginalien/marginal[@index='4400' and @letter='156' and @page='395' and @line='16'] -opus/marginalien/marginal[@index='440' and @letter='25' and @page='68' and @line='29'] -opus/marginalien/marginal[@index='441' and @letter='25' and @page='68' and @line='32'] -opus/marginalien/marginal[@index='442' and @letter='26' and @page='69' and @line='30'] -opus/marginalien/marginal[@index='443' and @letter='26' and @page='69' and @line='35'] -opus/marginalien/marginal[@index='444' and @letter='26' and @page='70' and @line='8'] -opus/marginalien/marginal[@index='445' and @letter='26' and @page='70' and @line='11'] -opus/marginalien/marginal[@index='446' and @letter='26' and @page='70' and @line='12'] -opus/marginalien/marginal[@index='447' and @letter='26' and @page='71' and @line='7'] -opus/marginalien/marginal[@index='4484' and @letter='179' and @page='13' and @line='5'] -opus/marginalien/marginal[@index='4485' and @letter='179' and @page='12' and @line='6'] -opus/marginalien/marginal[@index='4486' and @letter='179' and @page='11' and @line='15'] -opus/marginalien/marginal[@index='4487' and @letter='179' and @page='10' and @line='31'] -opus/marginalien/marginal[@index='4488' and @letter='178' and @page='10' and @line='11'] -opus/marginalien/marginal[@index='4489' and @letter='178' and @page='10' and @line='10'] -opus/marginalien/marginal[@index='448' and @letter='26' and @page='71' and @line='15'] -opus/marginalien/marginal[@index='4490' and @letter='178' and @page='9' and @line='31'] -opus/marginalien/marginal[@index='4491' and @letter='178' and @page='9' and @line='25'] -opus/marginalien/marginal[@index='4492' and @letter='178' and @page='9' and @line='11'] -opus/marginalien/marginal[@index='4493' and @letter='178' and @page='9' and @line='10'] -opus/marginalien/marginal[@index='4494' and @letter='178' and @page='7' and @line='15'] -opus/marginalien/marginal[@index='4495' and @letter='176' and @page='6' and @line='23'] -opus/marginalien/marginal[@index='4496' and @letter='176' and @page='6' and @line='2'] -opus/marginalien/marginal[@index='4497' and @letter='176' and @page='5' and @line='9'] -opus/marginalien/marginal[@index='4498' and @letter='182' and @page='23' and @line='7'] -opus/marginalien/marginal[@index='4499' and @letter='175' and @page='2' and @line='15'] -opus/marginalien/marginal[@index='449' and @letter='26' and @page='71' and @line='24'] -opus/marginalien/marginal[@index='44' and @letter='3' and @page='7' and @line='33'] -opus/marginalien/marginal[@index='4500' and @letter='174' and @page='1' and @line='3'] -opus/marginalien/marginal[@index='4501' and @letter='174' and @page='1' and @line='3'] -opus/marginalien/marginal[@index='4502' and @letter='174' and @page='1' and @line='6'] -opus/marginalien/marginal[@index='4503' and @letter='174' and @page='1' and @line='12'] -opus/marginalien/marginal[@index='4504' and @letter='174' and @page='1' and @line='13'] -opus/marginalien/marginal[@index='4505' and @letter='174' and @page='1' and @line='13'] -opus/marginalien/marginal[@index='4506' and @letter='174' and @page='1' and @line='14'] -opus/marginalien/marginal[@index='4507' and @letter='174' and @page='1' and @line='15'] -opus/marginalien/marginal[@index='4508' and @letter='174' and @page='1' and @line='17'] -opus/marginalien/marginal[@index='4509' and @letter='174' and @page='1' and @line='18'] -opus/marginalien/marginal[@index='450' and @letter='26' and @page='71' and @line='32'] -opus/marginalien/marginal[@index='4510' and @letter='174' and @page='1' and @line='19'] -opus/marginalien/marginal[@index='4511' and @letter='174' and @page='1' and @line='22'] -opus/marginalien/marginal[@index='4512' and @letter='174' and @page='2' and @line='1'] -opus/marginalien/marginal[@index='4513' and @letter='174' and @page='2' and @line='2'] -opus/marginalien/marginal[@index='4514' and @letter='174' and @page='2' and @line='4'] -opus/marginalien/marginal[@index='4515' and @letter='174' and @page='2' and @line='6'] -opus/marginalien/marginal[@index='4516' and @letter='174' and @page='2' and @line='7'] -opus/marginalien/marginal[@index='4517' and @letter='174' and @page='2' and @line='9'] -opus/marginalien/marginal[@index='4518' and @letter='174' and @page='2' and @line='11'] -opus/marginalien/marginal[@index='4519' and @letter='176' and @page='6' and @line='10'] -opus/marginalien/marginal[@index='451' and @letter='26' and @page='71' and @line='33'] -opus/marginalien/marginal[@index='4520' and @letter='178' and @page='9' and @line='1'] -opus/marginalien/marginal[@index='4521' and @letter='175' and @page='2' and @line='20'] -opus/marginalien/marginal[@index='4522' and @letter='175' and @page='2' and @line='22'] -opus/marginalien/marginal[@index='4523' and @letter='175' and @page='2' and @line='22'] -opus/marginalien/marginal[@index='4524' and @letter='175' and @page='2' and @line='24'] -opus/marginalien/marginal[@index='4525' and @letter='175' and @page='2' and @line='24'] -opus/marginalien/marginal[@index='4526' and @letter='175' and @page='2' and @line='26'] -opus/marginalien/marginal[@index='4527' and @letter='175' and @page='3' and @line='4'] -opus/marginalien/marginal[@index='4528' and @letter='175' and @page='3' and @line='6'] -opus/marginalien/marginal[@index='4529' and @letter='175' and @page='3' and @line='6'] -opus/marginalien/marginal[@index='452' and @letter='26' and @page='71' and @line='34'] -opus/marginalien/marginal[@index='4530' and @letter='175' and @page='3' and @line='7'] -opus/marginalien/marginal[@index='4531' and @letter='176' and @page='3' and @line='12'] -opus/marginalien/marginal[@index='4532' and @letter='176' and @page='3' and @line='13'] -opus/marginalien/marginal[@index='4533' and @letter='176' and @page='3' and @line='13'] -opus/marginalien/marginal[@index='4534' and @letter='176' and @page='3' and @line='14'] -opus/marginalien/marginal[@index='4535' and @letter='176' and @page='3' and @line='18'] -opus/marginalien/marginal[@index='4536' and @letter='176' and @page='3' and @line='19'] -opus/marginalien/marginal[@index='4538' and @letter='176' and @page='3' and @line='21'] -opus/marginalien/marginal[@index='4539' and @letter='176' and @page='3' and @line='28'] -opus/marginalien/marginal[@index='453' and @letter='26' and @page='71' and @line='35'] -opus/marginalien/marginal[@index='4540' and @letter='176' and @page='4' and @line='4'] -opus/marginalien/marginal[@index='4541' and @letter='176' and @page='4' and @line='5'] -opus/marginalien/marginal[@index='4542' and @letter='176' and @page='4' and @line='5'] -opus/marginalien/marginal[@index='4543' and @letter='176' and @page='4' and @line='11'] -opus/marginalien/marginal[@index='4544' and @letter='176' and @page='4' and @line='17'] -opus/marginalien/marginal[@index='4545' and @letter='176' and @page='4' and @line='22'] -opus/marginalien/marginal[@index='4546' and @letter='176' and @page='4' and @line='22'] -opus/marginalien/marginal[@index='4547' and @letter='176' and @page='4' and @line='29'] -opus/marginalien/marginal[@index='4548' and @letter='176' and @page='4' and @line='30'] -opus/marginalien/marginal[@index='4549' and @letter='176' and @page='4' and @line='31'] -opus/marginalien/marginal[@index='454' and @letter='26' and @page='72' and @line='20'] -opus/marginalien/marginal[@index='4550' and @letter='176' and @page='4' and @line='33'] -opus/marginalien/marginal[@index='4552' and @letter='176' and @page='5' and @line='6'] -opus/marginalien/marginal[@index='4553' and @letter='176' and @page='5' and @line='7'] -opus/marginalien/marginal[@index='4554' and @letter='176' and @page='5' and @line='8'] -opus/marginalien/marginal[@index='4555' and @letter='176' and @page='5' and @line='15'] -opus/marginalien/marginal[@index='4556' and @letter='176' and @page='5' and @line='21'] -opus/marginalien/marginal[@index='4557' and @letter='176' and @page='5' and @line='21'] -opus/marginalien/marginal[@index='4558' and @letter='176' and @page='5' and @line='22'] -opus/marginalien/marginal[@index='4559' and @letter='176' and @page='5' and @line='24'] -opus/marginalien/marginal[@index='455' and @letter='26' and @page='72' and @line='20'] -opus/marginalien/marginal[@index='4560' and @letter='176' and @page='5' and @line='25'] -opus/marginalien/marginal[@index='4561' and @letter='176' and @page='5' and @line='25'] -opus/marginalien/marginal[@index='4562' and @letter='183' and @page='24' and @line='26'] -opus/marginalien/marginal[@index='4563' and @letter='176' and @page='5' and @line='31'] -opus/marginalien/marginal[@index='4564' and @letter='176' and @page='5' and @line='35'] -opus/marginalien/marginal[@index='4565' and @letter='176' and @page='5' and @line='36'] -opus/marginalien/marginal[@index='4566' and @letter='176' and @page='6' and @line='6'] -opus/marginalien/marginal[@index='4567' and @letter='176' and @page='6' and @line='7'] -opus/marginalien/marginal[@index='4568' and @letter='177' and @page='6' and @line='29'] -opus/marginalien/marginal[@index='4569' and @letter='177' and @page='6' and @line='29'] -opus/marginalien/marginal[@index='456' and @letter='26' and @page='72' and @line='21'] -opus/marginalien/marginal[@index='4570' and @letter='177' and @page='6' and @line='31'] -opus/marginalien/marginal[@index='4571' and @letter='177' and @page='6' and @line='31'] -opus/marginalien/marginal[@index='4572' and @letter='177' and @page='7' and @line='8'] -opus/marginalien/marginal[@index='4573' and @letter='185' and @page='30' and @line='8'] -opus/marginalien/marginal[@index='4574' and @letter='178' and @page='7' and @line='25'] -opus/marginalien/marginal[@index='4576' and @letter='178' and @page='7' and @line='26'] -opus/marginalien/marginal[@index='4578' and @letter='178' and @page='8' and @line='5'] -opus/marginalien/marginal[@index='4579' and @letter='178' and @page='8' and @line='16'] -opus/marginalien/marginal[@index='457' and @letter='26' and @page='72' and @line='22'] -opus/marginalien/marginal[@index='4580' and @letter='178' and @page='8' and @line='19'] -opus/marginalien/marginal[@index='4581' and @letter='178' and @page='8' and @line='34'] -opus/marginalien/marginal[@index='4582' and @letter='178' and @page='9' and @line='2'] -opus/marginalien/marginal[@index='4583' and @letter='178' and @page='9' and @line='9'] -opus/marginalien/marginal[@index='4584' and @letter='178' and @page='9' and @line='13'] -opus/marginalien/marginal[@index='4585' and @letter='178' and @page='9' and @line='14'] -opus/marginalien/marginal[@index='4586' and @letter='178' and @page='9' and @line='14'] -opus/marginalien/marginal[@index='4587' and @letter='178' and @page='9' and @line='15'] -opus/marginalien/marginal[@index='4588' and @letter='178' and @page='9' and @line='16'] -opus/marginalien/marginal[@index='4589' and @letter='178' and @page='9' and @line='16'] -opus/marginalien/marginal[@index='458' and @letter='26' and @page='72' and @line='22'] -opus/marginalien/marginal[@index='4590' and @letter='178' and @page='9' and @line='17'] -opus/marginalien/marginal[@index='4591' and @letter='178' and @page='9' and @line='4'] -opus/marginalien/marginal[@index='4592' and @letter='178' and @page='9' and @line='19'] -opus/marginalien/marginal[@index='4593' and @letter='178' and @page='9' and @line='20'] -opus/marginalien/marginal[@index='4594' and @letter='178' and @page='9' and @line='22'] -opus/marginalien/marginal[@index='4595' and @letter='178' and @page='9' and @line='22'] -opus/marginalien/marginal[@index='4596' and @letter='178' and @page='9' and @line='22'] -opus/marginalien/marginal[@index='4597' and @letter='178' and @page='9' and @line='23'] -opus/marginalien/marginal[@index='4598' and @letter='178' and @page='9' and @line='26'] -opus/marginalien/marginal[@index='4599' and @letter='178' and @page='9' and @line='27'] -opus/marginalien/marginal[@index='459' and @letter='26' and @page='72' and @line='22'] -opus/marginalien/marginal[@index='45' and @letter='3' and @page='7' and @line='34'] -opus/marginalien/marginal[@index='4600' and @letter='178' and @page='9' and @line='30'] -opus/marginalien/marginal[@index='4601' and @letter='178' and @page='9' and @line='34'] -opus/marginalien/marginal[@index='4602' and @letter='178' and @page='9' and @line='35'] -opus/marginalien/marginal[@index='4603' and @letter='178' and @page='9' and @line='36'] -opus/marginalien/marginal[@index='4604' and @letter='179' and @page='15' and @line='9'] -opus/marginalien/marginal[@index='4605' and @letter='178' and @page='10' and @line='6'] -opus/marginalien/marginal[@index='4606' and @letter='178' and @page='10' and @line='10'] -opus/marginalien/marginal[@index='4607' and @letter='178' and @page='10' and @line='11'] -opus/marginalien/marginal[@index='4608' and @letter='178' and @page='10' and @line='13'] -opus/marginalien/marginal[@index='4609' and @letter='179' and @page='10' and @line='26'] -opus/marginalien/marginal[@index='460' and @letter='26' and @page='72' and @line='23'] -opus/marginalien/marginal[@index='4610' and @letter='179' and @page='10' and @line='27'] -opus/marginalien/marginal[@index='4611' and @letter='179' and @page='10' and @line='28'] -opus/marginalien/marginal[@index='4612' and @letter='179' and @page='10' and @line='29'] -opus/marginalien/marginal[@index='4613' and @letter='179' and @page='10' and @line='30'] -opus/marginalien/marginal[@index='4614' and @letter='179' and @page='11' and @line='3'] -opus/marginalien/marginal[@index='4615' and @letter='185' and @page='30' and @line='10'] -opus/marginalien/marginal[@index='4616' and @letter='179' and @page='11' and @line='5'] -opus/marginalien/marginal[@index='4617' and @letter='179' and @page='11' and @line='12'] -opus/marginalien/marginal[@index='4618' and @letter='179' and @page='11' and @line='14'] -opus/marginalien/marginal[@index='4619' and @letter='179' and @page='11' and @line='16'] -opus/marginalien/marginal[@index='461' and @letter='26' and @page='72' and @line='23'] -opus/marginalien/marginal[@index='4620' and @letter='179' and @page='11' and @line='24'] -opus/marginalien/marginal[@index='4621' and @letter='179' and @page='12' and @line='12'] -opus/marginalien/marginal[@index='4622' and @letter='179' and @page='12' and @line='12'] -opus/marginalien/marginal[@index='4623' and @letter='179' and @page='12' and @line='13'] -opus/marginalien/marginal[@index='4624' and @letter='179' and @page='12' and @line='13'] -opus/marginalien/marginal[@index='4625' and @letter='179' and @page='12' and @line='15'] -opus/marginalien/marginal[@index='4626' and @letter='179' and @page='12' and @line='16'] -opus/marginalien/marginal[@index='4627' and @letter='182' and @page='23' and @line='5'] -opus/marginalien/marginal[@index='4628' and @letter='179' and @page='12' and @line='20'] -opus/marginalien/marginal[@index='4629' and @letter='179' and @page='13' and @line='20'] -opus/marginalien/marginal[@index='462' and @letter='26' and @page='72' and @line='24'] -opus/marginalien/marginal[@index='4630' and @letter='179' and @page='12' and @line='26'] -opus/marginalien/marginal[@index='4631' and @letter='179' and @page='12' and @line='27'] -opus/marginalien/marginal[@index='4632' and @letter='179' and @page='12' and @line='31'] -opus/marginalien/marginal[@index='4633' and @letter='179' and @page='12' and @line='32'] -opus/marginalien/marginal[@index='4634' and @letter='179' and @page='12' and @line='35'] -opus/marginalien/marginal[@index='4636' and @letter='179' and @page='13' and @line='16'] -opus/marginalien/marginal[@index='4637' and @letter='179' and @page='13' and @line='19'] -opus/marginalien/marginal[@index='4639' and @letter='179' and @page='15' and @line='33'] -opus/marginalien/marginal[@index='463' and @letter='26' and @page='72' and @line='26'] -opus/marginalien/marginal[@index='4640' and @letter='179' and @page='15' and @line='34'] -opus/marginalien/marginal[@index='4641' and @letter='179' and @page='15' and @line='34'] -opus/marginalien/marginal[@index='4642' and @letter='179' and @page='15' and @line='34'] -opus/marginalien/marginal[@index='4643' and @letter='179' and @page='16' and @line='1'] -opus/marginalien/marginal[@index='4644' and @letter='179' and @page='16' and @line='1'] -opus/marginalien/marginal[@index='4645' and @letter='179' and @page='16' and @line='2'] -opus/marginalien/marginal[@index='4646' and @letter='180' and @page='16' and @line='4'] -opus/marginalien/marginal[@index='4647' and @letter='180' and @page='16' and @line='6'] -opus/marginalien/marginal[@index='4648' and @letter='180' and @page='16' and @line='12'] -opus/marginalien/marginal[@index='4649' and @letter='180' and @page='16' and @line='18'] -opus/marginalien/marginal[@index='464' and @letter='27' and @page='72' and @line='32'] -opus/marginalien/marginal[@index='4650' and @letter='180' and @page='17' and @line='3'] -opus/marginalien/marginal[@index='4651' and @letter='180' and @page='17' and @line='4'] -opus/marginalien/marginal[@index='4652' and @letter='180' and @page='17' and @line='6'] -opus/marginalien/marginal[@index='4653' and @letter='180' and @page='17' and @line='10'] -opus/marginalien/marginal[@index='4654' and @letter='180' and @page='17' and @line='19'] -opus/marginalien/marginal[@index='4655' and @letter='180' and @page='17' and @line='21'] -opus/marginalien/marginal[@index='4656' and @letter='180' and @page='17' and @line='24'] -opus/marginalien/marginal[@index='4657' and @letter='180' and @page='17' and @line='25'] -opus/marginalien/marginal[@index='4658' and @letter='180' and @page='17' and @line='26'] -opus/marginalien/marginal[@index='4659' and @letter='180' and @page='17' and @line='34'] -opus/marginalien/marginal[@index='465' and @letter='27' and @page='72' and @line='34'] -opus/marginalien/marginal[@index='4660' and @letter='180' and @page='17' and @line='37'] -opus/marginalien/marginal[@index='4661' and @letter='180' and @page='18' and @line='3'] -opus/marginalien/marginal[@index='4662' and @letter='181' and @page='18' and @line='8'] -opus/marginalien/marginal[@index='4663' and @letter='181' and @page='18' and @line='8'] -opus/marginalien/marginal[@index='4664' and @letter='181' and @page='18' and @line='9'] -opus/marginalien/marginal[@index='4665' and @letter='181' and @page='18' and @line='10'] -opus/marginalien/marginal[@index='4666' and @letter='181' and @page='18' and @line='22'] -opus/marginalien/marginal[@index='4667' and @letter='181' and @page='18' and @line='23'] -opus/marginalien/marginal[@index='4668' and @letter='181' and @page='18' and @line='26'] -opus/marginalien/marginal[@index='4669' and @letter='181' and @page='18' and @line='26'] -opus/marginalien/marginal[@index='466' and @letter='27' and @page='73' and @line='1'] -opus/marginalien/marginal[@index='4670' and @letter='181' and @page='18' and @line='27'] -opus/marginalien/marginal[@index='4671' and @letter='181' and @page='18' and @line='29'] -opus/marginalien/marginal[@index='4672' and @letter='181' and @page='18' and @line='32'] -opus/marginalien/marginal[@index='4673' and @letter='185' and @page='30' and @line='15'] -opus/marginalien/marginal[@index='4674' and @letter='181' and @page='19' and @line='4'] -opus/marginalien/marginal[@index='4675' and @letter='181' and @page='19' and @line='7'] -opus/marginalien/marginal[@index='4676' and @letter='181' and @page='19' and @line='8'] -opus/marginalien/marginal[@index='4677' and @letter='181' and @page='19' and @line='10'] -opus/marginalien/marginal[@index='4678' and @letter='181' and @page='19' and @line='14'] -opus/marginalien/marginal[@index='4679' and @letter='182' and @page='19' and @line='21'] -opus/marginalien/marginal[@index='467' and @letter='27' and @page='73' and @line='3'] -opus/marginalien/marginal[@index='4680' and @letter='185' and @page='30' and @line='29'] -opus/marginalien/marginal[@index='4681' and @letter='185' and @page='30' and @line='21'] -opus/marginalien/marginal[@index='4682' and @letter='185' and @page='30' and @line='25'] -opus/marginalien/marginal[@index='4683' and @letter='185' and @page='30' and @line='30'] -opus/marginalien/marginal[@index='4684' and @letter='182' and @page='20' and @line='3'] -opus/marginalien/marginal[@index='4685' and @letter='182' and @page='20' and @line='3'] -opus/marginalien/marginal[@index='4686' and @letter='182' and @page='20' and @line='18'] -opus/marginalien/marginal[@index='4687' and @letter='182' and @page='20' and @line='24'] -opus/marginalien/marginal[@index='4688' and @letter='182' and @page='23' and @line='13'] -opus/marginalien/marginal[@index='4689' and @letter='182' and @page='20' and @line='30'] -opus/marginalien/marginal[@index='468' and @letter='27' and @page='73' and @line='7'] -opus/marginalien/marginal[@index='4690' and @letter='182' and @page='21' and @line='3'] -opus/marginalien/marginal[@index='4691' and @letter='182' and @page='21' and @line='16'] -opus/marginalien/marginal[@index='4692' and @letter='182' and @page='21' and @line='17'] -opus/marginalien/marginal[@index='4693' and @letter='182' and @page='21' and @line='18'] -opus/marginalien/marginal[@index='4694' and @letter='182' and @page='21' and @line='20'] -opus/marginalien/marginal[@index='4695' and @letter='182' and @page='21' and @line='21'] -opus/marginalien/marginal[@index='4696' and @letter='182' and @page='23' and @line='12'] -opus/marginalien/marginal[@index='4697' and @letter='182' and @page='21' and @line='27'] -opus/marginalien/marginal[@index='4698' and @letter='182' and @page='21' and @line='32'] -opus/marginalien/marginal[@index='4699' and @letter='182' and @page='22' and @line='2'] -opus/marginalien/marginal[@index='469' and @letter='27' and @page='73' and @line='7'] -opus/marginalien/marginal[@index='46' and @letter='3' and @page='7' and @line='35'] -opus/marginalien/marginal[@index='4700' and @letter='182' and @page='22' and @line='2'] -opus/marginalien/marginal[@index='4701' and @letter='182' and @page='23' and @line='1'] -opus/marginalien/marginal[@index='4702' and @letter='182' and @page='22' and @line='3'] -opus/marginalien/marginal[@index='4703' and @letter='182' and @page='22' and @line='8'] -opus/marginalien/marginal[@index='4704' and @letter='182' and @page='22' and @line='9'] -opus/marginalien/marginal[@index='4705' and @letter='182' and @page='22' and @line='11'] -opus/marginalien/marginal[@index='4706' and @letter='182' and @page='22' and @line='12'] -opus/marginalien/marginal[@index='4707' and @letter='182' and @page='22' and @line='14'] -opus/marginalien/marginal[@index='4708' and @letter='182' and @page='22' and @line='28'] -opus/marginalien/marginal[@index='4709' and @letter='182' and @page='22' and @line='30'] -opus/marginalien/marginal[@index='470' and @letter='27' and @page='73' and @line='10'] -opus/marginalien/marginal[@index='4710' and @letter='182' and @page='22' and @line='30'] -opus/marginalien/marginal[@index='4711' and @letter='182' and @page='22' and @line='34'] -opus/marginalien/marginal[@index='4712' and @letter='182' and @page='22' and @line='36'] -opus/marginalien/marginal[@index='4713' and @letter='182' and @page='22' and @line='37'] -opus/marginalien/marginal[@index='4714' and @letter='182' and @page='23' and @line='4'] -opus/marginalien/marginal[@index='4715' and @letter='182' and @page='23' and @line='5'] -opus/marginalien/marginal[@index='4716' and @letter='182' and @page='23' and @line='5'] -opus/marginalien/marginal[@index='4717' and @letter='182' and @page='23' and @line='6'] -opus/marginalien/marginal[@index='4719' and @letter='182' and @page='23' and @line='11'] -opus/marginalien/marginal[@index='471' and @letter='27' and @page='73' and @line='11'] -opus/marginalien/marginal[@index='4720' and @letter='182' and @page='23' and @line='15'] -opus/marginalien/marginal[@index='4721' and @letter='182' and @page='23' and @line='16'] -opus/marginalien/marginal[@index='4722' and @letter='182' and @page='23' and @line='19'] -opus/marginalien/marginal[@index='4723' and @letter='182' and @page='23' and @line='20'] -opus/marginalien/marginal[@index='4724' and @letter='182' and @page='23' and @line='23'] -opus/marginalien/marginal[@index='4725' and @letter='182' and @page='23' and @line='24'] -opus/marginalien/marginal[@index='4726' and @letter='182' and @page='23' and @line='26'] -opus/marginalien/marginal[@index='4727' and @letter='184' and @page='27' and @line='17'] -opus/marginalien/marginal[@index='4728' and @letter='182' and @page='23' and @line='28'] -opus/marginalien/marginal[@index='4729' and @letter='182' and @page='23' and @line='30'] -opus/marginalien/marginal[@index='472' and @letter='27' and @page='73' and @line='28'] -opus/marginalien/marginal[@index='4730' and @letter='182' and @page='23' and @line='37'] -opus/marginalien/marginal[@index='4731' and @letter='182' and @page='24' and @line='1'] -opus/marginalien/marginal[@index='4732' and @letter='182' and @page='24' and @line='7'] -opus/marginalien/marginal[@index='4733' and @letter='182' and @page='24' and @line='9'] -opus/marginalien/marginal[@index='4734' and @letter='182' and @page='24' and @line='9'] -opus/marginalien/marginal[@index='4735' and @letter='182' and @page='24' and @line='11'] -opus/marginalien/marginal[@index='4736' and @letter='183' and @page='24' and @line='20'] -opus/marginalien/marginal[@index='4737' and @letter='183' and @page='24' and @line='21'] -opus/marginalien/marginal[@index='4738' and @letter='183' and @page='24' and @line='22'] -opus/marginalien/marginal[@index='4739' and @letter='183' and @page='24' and @line='28'] -opus/marginalien/marginal[@index='473' and @letter='27' and @page='73' and @line='29'] -opus/marginalien/marginal[@index='4740' and @letter='183' and @page='24' and @line='28'] -opus/marginalien/marginal[@index='4741' and @letter='183' and @page='24' and @line='29'] -opus/marginalien/marginal[@index='4742' and @letter='183' and @page='24' and @line='31'] -opus/marginalien/marginal[@index='4743' and @letter='183' and @page='24' and @line='31'] -opus/marginalien/marginal[@index='4744' and @letter='183' and @page='24' and @line='32'] -opus/marginalien/marginal[@index='4745' and @letter='183' and @page='25' and @line='1'] -opus/marginalien/marginal[@index='4746' and @letter='183' and @page='25' and @line='5'] -opus/marginalien/marginal[@index='4747' and @letter='183' and @page='25' and @line='6'] -opus/marginalien/marginal[@index='4748' and @letter='183' and @page='25' and @line='10'] -opus/marginalien/marginal[@index='4749' and @letter='183' and @page='25' and @line='13'] -opus/marginalien/marginal[@index='474' and @letter='27' and @page='73' and @line='33'] -opus/marginalien/marginal[@index='4750' and @letter='183' and @page='25' and @line='22'] -opus/marginalien/marginal[@index='4751' and @letter='183' and @page='25' and @line='24'] -opus/marginalien/marginal[@index='4752' and @letter='183' and @page='25' and @line='24'] -opus/marginalien/marginal[@index='4753' and @letter='183' and @page='25' and @line='25'] -opus/marginalien/marginal[@index='4754' and @letter='183' and @page='25' and @line='25'] -opus/marginalien/marginal[@index='4755' and @letter='183' and @page='25' and @line='28'] -opus/marginalien/marginal[@index='4756' and @letter='183' and @page='25' and @line='29'] -opus/marginalien/marginal[@index='4757' and @letter='183' and @page='25' and @line='29'] -opus/marginalien/marginal[@index='4758' and @letter='183' and @page='25' and @line='29'] -opus/marginalien/marginal[@index='4759' and @letter='183' and @page='25' and @line='31'] -opus/marginalien/marginal[@index='475' and @letter='27' and @page='74' and @line='3'] -opus/marginalien/marginal[@index='4760' and @letter='183' and @page='25' and @line='31'] -opus/marginalien/marginal[@index='4761' and @letter='183' and @page='25' and @line='32'] -opus/marginalien/marginal[@index='4762' and @letter='183' and @page='26' and @line='8'] -opus/marginalien/marginal[@index='4763' and @letter='183' and @page='26' and @line='12'] -opus/marginalien/marginal[@index='4764' and @letter='184' and @page='27' and @line='12'] -opus/marginalien/marginal[@index='4765' and @letter='184' and @page='26' and @line='19'] -opus/marginalien/marginal[@index='4766' and @letter='184' and @page='26' and @line='20'] -opus/marginalien/marginal[@index='4767' and @letter='184' and @page='26' and @line='26'] -opus/marginalien/marginal[@index='4768' and @letter='184' and @page='26' and @line='32'] -opus/marginalien/marginal[@index='4769' and @letter='184' and @page='27' and @line='3'] -opus/marginalien/marginal[@index='476' and @letter='27' and @page='74' and @line='12'] -opus/marginalien/marginal[@index='4770' and @letter='184' and @page='27' and @line='4'] -opus/marginalien/marginal[@index='4771' and @letter='184' and @page='27' and @line='5'] -opus/marginalien/marginal[@index='4772' and @letter='184' and @page='27' and @line='5'] -opus/marginalien/marginal[@index='4773' and @letter='184' and @page='27' and @line='6'] -opus/marginalien/marginal[@index='4774' and @letter='184' and @page='27' and @line='10'] -opus/marginalien/marginal[@index='4775' and @letter='184' and @page='27' and @line='10'] -opus/marginalien/marginal[@index='4776' and @letter='184' and @page='27' and @line='11'] -opus/marginalien/marginal[@index='4777' and @letter='184' and @page='27' and @line='12'] -opus/marginalien/marginal[@index='4778' and @letter='184' and @page='27' and @line='15'] -opus/marginalien/marginal[@index='4779' and @letter='184' and @page='27' and @line='25'] -opus/marginalien/marginal[@index='477' and @letter='27' and @page='74' and @line='13'] -opus/marginalien/marginal[@index='4780' and @letter='184' and @page='27' and @line='30'] -opus/marginalien/marginal[@index='4782' and @letter='184' and @page='28' and @line='6'] -opus/marginalien/marginal[@index='4783' and @letter='184' and @page='28' and @line='8'] -opus/marginalien/marginal[@index='4784' and @letter='184' and @page='28' and @line='16'] -opus/marginalien/marginal[@index='4785' and @letter='184' and @page='28' and @line='24'] -opus/marginalien/marginal[@index='4786' and @letter='184' and @page='28' and @line='27'] -opus/marginalien/marginal[@index='4787' and @letter='184' and @page='28' and @line='28'] -opus/marginalien/marginal[@index='4788' and @letter='184' and @page='28' and @line='32'] -opus/marginalien/marginal[@index='4789' and @letter='184' and @page='29' and @line='3'] -opus/marginalien/marginal[@index='478' and @letter='28' and @page='74' and @line='19'] -opus/marginalien/marginal[@index='4790' and @letter='184' and @page='29' and @line='5'] -opus/marginalien/marginal[@index='4792' and @letter='184' and @page='29' and @line='9'] -opus/marginalien/marginal[@index='4793' and @letter='184' and @page='29' and @line='10'] -opus/marginalien/marginal[@index='4794' and @letter='184' and @page='29' and @line='21'] -opus/marginalien/marginal[@index='4795' and @letter='184' and @page='29' and @line='29'] -opus/marginalien/marginal[@index='4796' and @letter='184' and @page='29' and @line='32'] -opus/marginalien/marginal[@index='4797' and @letter='184' and @page='29' and @line='36'] -opus/marginalien/marginal[@index='4798' and @letter='185' and @page='30' and @line='2'] -opus/marginalien/marginal[@index='4799' and @letter='185' and @page='30' and @line='6'] -opus/marginalien/marginal[@index='479' and @letter='28' and @page='74' and @line='22'] -opus/marginalien/marginal[@index='47' and @letter='3' and @page='7' and @line='36'] -opus/marginalien/marginal[@index='4800' and @letter='185' and @page='32' and @line='1'] -opus/marginalien/marginal[@index='4801' and @letter='185' and @page='32' and @line='3'] -opus/marginalien/marginal[@index='4802' and @letter='185' and @page='32' and @line='3'] -opus/marginalien/marginal[@index='4803' and @letter='186' and @page='32' and @line='8'] -opus/marginalien/marginal[@index='4804' and @letter='186' and @page='32' and @line='10'] -opus/marginalien/marginal[@index='4805' and @letter='186' and @page='32' and @line='19'] -opus/marginalien/marginal[@index='4806' and @letter='186' and @page='32' and @line='20'] -opus/marginalien/marginal[@index='4807' and @letter='186' and @page='32' and @line='23'] -opus/marginalien/marginal[@index='4808' and @letter='186' and @page='32' and @line='24'] -opus/marginalien/marginal[@index='4809' and @letter='186' and @page='32' and @line='28'] -opus/marginalien/marginal[@index='480' and @letter='28' and @page='74' and @line='25'] -opus/marginalien/marginal[@index='4810' and @letter='186' and @page='32' and @line='32'] -opus/marginalien/marginal[@index='4811' and @letter='186' and @page='33' and @line='2'] -opus/marginalien/marginal[@index='4812' and @letter='186' and @page='33' and @line='6'] -opus/marginalien/marginal[@index='4813' and @letter='186' and @page='33' and @line='15'] -opus/marginalien/marginal[@index='4814' and @letter='186' and @page='33' and @line='16'] -opus/marginalien/marginal[@index='4815' and @letter='186' and @page='33' and @line='16'] -opus/marginalien/marginal[@index='4816' and @letter='186' and @page='33' and @line='17'] -opus/marginalien/marginal[@index='4817' and @letter='186' and @page='33' and @line='17'] -opus/marginalien/marginal[@index='4818' and @letter='186' and @page='33' and @line='17'] -opus/marginalien/marginal[@index='4819' and @letter='186' and @page='33' and @line='17'] -opus/marginalien/marginal[@index='481' and @letter='28' and @page='74' and @line='29'] -opus/marginalien/marginal[@index='4820' and @letter='186' and @page='33' and @line='17'] -opus/marginalien/marginal[@index='4821' and @letter='186' and @page='33' and @line='18'] -opus/marginalien/marginal[@index='4822' and @letter='186' and @page='33' and @line='18'] -opus/marginalien/marginal[@index='4823' and @letter='186' and @page='33' and @line='19'] -opus/marginalien/marginal[@index='4824' and @letter='187' and @page='33' and @line='29'] -opus/marginalien/marginal[@index='4825' and @letter='187' and @page='33' and @line='29'] -opus/marginalien/marginal[@index='4826' and @letter='187' and @page='33' and @line='29'] -opus/marginalien/marginal[@index='4827' and @letter='187' and @page='33' and @line='30'] -opus/marginalien/marginal[@index='482' and @letter='28' and @page='75' and @line='3'] -opus/marginalien/marginal[@index='4830' and @letter='187' and @page='34' and @line='1'] -opus/marginalien/marginal[@index='4831' and @letter='187' and @page='34' and @line='3'] -opus/marginalien/marginal[@index='4832' and @letter='187' and @page='34' and @line='4'] -opus/marginalien/marginal[@index='4833' and @letter='187' and @page='34' and @line='5'] -opus/marginalien/marginal[@index='4834' and @letter='187' and @page='34' and @line='7'] -opus/marginalien/marginal[@index='4835' and @letter='187' and @page='34' and @line='11'] -opus/marginalien/marginal[@index='4836' and @letter='187' and @page='34' and @line='13'] -opus/marginalien/marginal[@index='4837' and @letter='187' and @page='34' and @line='16'] -opus/marginalien/marginal[@index='4838' and @letter='187' and @page='34' and @line='21'] -opus/marginalien/marginal[@index='4839' and @letter='187' and @page='34' and @line='24'] -opus/marginalien/marginal[@index='483' and @letter='28' and @page='75' and @line='7'] -opus/marginalien/marginal[@index='4840' and @letter='187' and @page='34' and @line='24'] -opus/marginalien/marginal[@index='4841' and @letter='187' and @page='34' and @line='30'] -opus/marginalien/marginal[@index='4842' and @letter='187' and @page='34' and @line='30'] -opus/marginalien/marginal[@index='4843' and @letter='187' and @page='34' and @line='31'] -opus/marginalien/marginal[@index='4844' and @letter='187' and @page='34' and @line='32'] -opus/marginalien/marginal[@index='4845' and @letter='187' and @page='34' and @line='33'] -opus/marginalien/marginal[@index='4846' and @letter='187' and @page='34' and @line='35'] -opus/marginalien/marginal[@index='4847' and @letter='187' and @page='34' and @line='36'] -opus/marginalien/marginal[@index='4848' and @letter='187' and @page='34' and @line='36'] -opus/marginalien/marginal[@index='4849' and @letter='187' and @page='34' and @line='37'] -opus/marginalien/marginal[@index='484' and @letter='28' and @page='75' and @line='35'] -opus/marginalien/marginal[@index='4850' and @letter='187' and @page='35' and @line='3'] -opus/marginalien/marginal[@index='4851' and @letter='187' and @page='35' and @line='4'] -opus/marginalien/marginal[@index='4852' and @letter='187' and @page='35' and @line='5'] -opus/marginalien/marginal[@index='4853' and @letter='187' and @page='35' and @line='11'] -opus/marginalien/marginal[@index='4854' and @letter='187' and @page='35' and @line='17'] -opus/marginalien/marginal[@index='4855' and @letter='187' and @page='35' and @line='24'] -opus/marginalien/marginal[@index='4856' and @letter='187' and @page='35' and @line='28'] -opus/marginalien/marginal[@index='4857' and @letter='187' and @page='35' and @line='29'] -opus/marginalien/marginal[@index='4858' and @letter='188' and @page='35' and @line='31'] -opus/marginalien/marginal[@index='4859' and @letter='188' and @page='35' and @line='33'] -opus/marginalien/marginal[@index='485' and @letter='28' and @page='76' and @line='9'] -opus/marginalien/marginal[@index='4860' and @letter='188' and @page='36' and @line='3'] -opus/marginalien/marginal[@index='4861' and @letter='188' and @page='36' and @line='3'] -opus/marginalien/marginal[@index='4862' and @letter='188' and @page='36' and @line='3'] -opus/marginalien/marginal[@index='4863' and @letter='188' and @page='36' and @line='5'] -opus/marginalien/marginal[@index='4864' and @letter='188' and @page='36' and @line='5'] -opus/marginalien/marginal[@index='4865' and @letter='188' and @page='36' and @line='9'] -opus/marginalien/marginal[@index='4866' and @letter='188' and @page='36' and @line='18'] -opus/marginalien/marginal[@index='4867' and @letter='188' and @page='36' and @line='20'] -opus/marginalien/marginal[@index='4868' and @letter='188' and @page='36' and @line='28'] -opus/marginalien/marginal[@index='4869' and @letter='189' and @page='37' and @line='6'] -opus/marginalien/marginal[@index='486' and @letter='28' and @page='76' and @line='10'] -opus/marginalien/marginal[@index='4870' and @letter='189' and @page='37' and @line='8'] -opus/marginalien/marginal[@index='4871' and @letter='189' and @page='37' and @line='17'] -opus/marginalien/marginal[@index='4872' and @letter='189' and @page='37' and @line='18'] -opus/marginalien/marginal[@index='4873' and @letter='189' and @page='37' and @line='19'] -opus/marginalien/marginal[@index='4874' and @letter='189' and @page='37' and @line='20'] -opus/marginalien/marginal[@index='4875' and @letter='189' and @page='37' and @line='22'] -opus/marginalien/marginal[@index='4876' and @letter='189' and @page='37' and @line='23'] -opus/marginalien/marginal[@index='4877' and @letter='189' and @page='37' and @line='24'] -opus/marginalien/marginal[@index='4878' and @letter='189' and @page='37' and @line='25'] -opus/marginalien/marginal[@index='4879' and @letter='189' and @page='37' and @line='26'] -opus/marginalien/marginal[@index='487' and @letter='29' and @page='76' and @line='26'] -opus/marginalien/marginal[@index='4880' and @letter='190' and @page='38' and @line='1'] -opus/marginalien/marginal[@index='4881' and @letter='190' and @page='38' and @line='3'] -opus/marginalien/marginal[@index='4882' and @letter='190' and @page='38' and @line='6'] -opus/marginalien/marginal[@index='4883' and @letter='190' and @page='38' and @line='8'] -opus/marginalien/marginal[@index='4884' and @letter='190' and @page='38' and @line='32'] -opus/marginalien/marginal[@index='4885' and @letter='190' and @page='39' and @line='2'] -opus/marginalien/marginal[@index='4886' and @letter='190' and @page='39' and @line='10'] -opus/marginalien/marginal[@index='4887' and @letter='190' and @page='39' and @line='11'] -opus/marginalien/marginal[@index='4888' and @letter='190' and @page='39' and @line='14'] -opus/marginalien/marginal[@index='4889' and @letter='190' and @page='39' and @line='15'] -opus/marginalien/marginal[@index='488' and @letter='29' and @page='76' and @line='33'] -opus/marginalien/marginal[@index='4890' and @letter='190' and @page='39' and @line='17'] -opus/marginalien/marginal[@index='4891' and @letter='191' and @page='39' and @line='21'] -opus/marginalien/marginal[@index='4892' and @letter='191' and @page='39' and @line='22'] -opus/marginalien/marginal[@index='4893' and @letter='191' and @page='39' and @line='23'] -opus/marginalien/marginal[@index='4894' and @letter='191' and @page='39' and @line='24'] -opus/marginalien/marginal[@index='4895' and @letter='191' and @page='39' and @line='26'] -opus/marginalien/marginal[@index='4897' and @letter='191' and @page='39' and @line='34'] -opus/marginalien/marginal[@index='4899' and @letter='191' and @page='40' and @line='2'] -opus/marginalien/marginal[@index='489' and @letter='29' and @page='76' and @line='34'] -opus/marginalien/marginal[@index='48' and @letter='3' and @page='8' and @line='1'] -opus/marginalien/marginal[@index='4900' and @letter='191' and @page='40' and @line='4'] -opus/marginalien/marginal[@index='4901' and @letter='191' and @page='40' and @line='5'] -opus/marginalien/marginal[@index='4902' and @letter='191' and @page='40' and @line='7'] -opus/marginalien/marginal[@index='4903' and @letter='191' and @page='40' and @line='8'] -opus/marginalien/marginal[@index='4904' and @letter='191' and @page='40' and @line='12'] -opus/marginalien/marginal[@index='4905' and @letter='192' and @page='40' and @line='17'] -opus/marginalien/marginal[@index='4906' and @letter='192' and @page='40' and @line='23'] -opus/marginalien/marginal[@index='4907' and @letter='192' and @page='40' and @line='25'] -opus/marginalien/marginal[@index='4908' and @letter='192' and @page='40' and @line='29'] -opus/marginalien/marginal[@index='4909' and @letter='192' and @page='40' and @line='29'] -opus/marginalien/marginal[@index='490' and @letter='29' and @page='77' and @line='2'] -opus/marginalien/marginal[@index='4910' and @letter='192' and @page='40' and @line='33'] -opus/marginalien/marginal[@index='4911' and @letter='192' and @page='40' and @line='33'] -opus/marginalien/marginal[@index='4912' and @letter='192' and @page='40' and @line='34'] -opus/marginalien/marginal[@index='4913' and @letter='192' and @page='41' and @line='1'] -opus/marginalien/marginal[@index='4914' and @letter='192' and @page='41' and @line='5'] -opus/marginalien/marginal[@index='4915' and @letter='193' and @page='42' and @line='12'] -opus/marginalien/marginal[@index='4916' and @letter='193' and @page='42' and @line='29'] -opus/marginalien/marginal[@index='4917' and @letter='193' and @page='42' and @line='35'] -opus/marginalien/marginal[@index='4918' and @letter='193' and @page='42' and @line='35'] -opus/marginalien/marginal[@index='4919' and @letter='193' and @page='42' and @line='37'] -opus/marginalien/marginal[@index='491' and @letter='29' and @page='77' and @line='4'] -opus/marginalien/marginal[@index='4920' and @letter='193' and @page='43' and @line='4'] -opus/marginalien/marginal[@index='4921' and @letter='193' and @page='43' and @line='8'] -opus/marginalien/marginal[@index='4922' and @letter='193' and @page='43' and @line='10'] -opus/marginalien/marginal[@index='4923' and @letter='193' and @page='43' and @line='24'] -opus/marginalien/marginal[@index='4924' and @letter='193' and @page='43' and @line='29'] -opus/marginalien/marginal[@index='4926' and @letter='194' and @page='44' and @line='8'] -opus/marginalien/marginal[@index='4928' and @letter='194' and @page='44' and @line='18'] -opus/marginalien/marginal[@index='4929' and @letter='194' and @page='44' and @line='21'] -opus/marginalien/marginal[@index='492' and @letter='29' and @page='77' and @line='5'] -opus/marginalien/marginal[@index='4930' and @letter='194' and @page='44' and @line='21'] -opus/marginalien/marginal[@index='4931' and @letter='194' and @page='44' and @line='22'] -opus/marginalien/marginal[@index='4932' and @letter='194' and @page='44' and @line='27'] -opus/marginalien/marginal[@index='4933' and @letter='194' and @page='44' and @line='31'] -opus/marginalien/marginal[@index='4934' and @letter='194' and @page='44' and @line='33'] -opus/marginalien/marginal[@index='4935' and @letter='194' and @page='44' and @line='34'] -opus/marginalien/marginal[@index='4936' and @letter='194' and @page='44' and @line='34'] -opus/marginalien/marginal[@index='4937' and @letter='194' and @page='44' and @line='34'] -opus/marginalien/marginal[@index='4938' and @letter='194' and @page='45' and @line='1'] -opus/marginalien/marginal[@index='4939' and @letter='194' and @page='45' and @line='2'] -opus/marginalien/marginal[@index='493' and @letter='29' and @page='77' and @line='10'] -opus/marginalien/marginal[@index='4940' and @letter='194' and @page='45' and @line='2'] -opus/marginalien/marginal[@index='4941' and @letter='194' and @page='45' and @line='3'] -opus/marginalien/marginal[@index='4942' and @letter='194' and @page='45' and @line='4'] -opus/marginalien/marginal[@index='4943' and @letter='194' and @page='45' and @line='4'] -opus/marginalien/marginal[@index='4944' and @letter='194' and @page='45' and @line='7'] -opus/marginalien/marginal[@index='4945' and @letter='194' and @page='45' and @line='7'] -opus/marginalien/marginal[@index='4946' and @letter='194' and @page='45' and @line='8'] -opus/marginalien/marginal[@index='4947' and @letter='194' and @page='45' and @line='8'] -opus/marginalien/marginal[@index='4948' and @letter='194' and @page='45' and @line='9'] -opus/marginalien/marginal[@index='4949' and @letter='194' and @page='45' and @line='10'] -opus/marginalien/marginal[@index='494' and @letter='29' and @page='77' and @line='20'] -opus/marginalien/marginal[@index='4950' and @letter='194' and @page='45' and @line='13'] -opus/marginalien/marginal[@index='4951' and @letter='194' and @page='45' and @line='15'] -opus/marginalien/marginal[@index='4952' and @letter='194' and @page='45' and @line='15'] -opus/marginalien/marginal[@index='4954' and @letter='194' and @page='45' and @line='17'] -opus/marginalien/marginal[@index='4955' and @letter='194' and @page='45' and @line='19'] -opus/marginalien/marginal[@index='4956' and @letter='194' and @page='45' and @line='20'] -opus/marginalien/marginal[@index='4957' and @letter='194' and @page='45' and @line='21'] -opus/marginalien/marginal[@index='4958' and @letter='194' and @page='45' and @line='24'] -opus/marginalien/marginal[@index='495' and @letter='29' and @page='77' and @line='29'] -opus/marginalien/marginal[@index='4960' and @letter='194' and @page='45' and @line='26'] -opus/marginalien/marginal[@index='4961' and @letter='194' and @page='45' and @line='27'] -opus/marginalien/marginal[@index='4963' and @letter='194' and @page='45' and @line='35'] -opus/marginalien/marginal[@index='4964' and @letter='195' and @page='46' and @line='2'] -opus/marginalien/marginal[@index='4965' and @letter='195' and @page='46' and @line='12'] -opus/marginalien/marginal[@index='4967' and @letter='195' and @page='46' and @line='16'] -opus/marginalien/marginal[@index='4968' and @letter='195' and @page='46' and @line='19'] -opus/marginalien/marginal[@index='4969' and @letter='195' and @page='46' and @line='20'] -opus/marginalien/marginal[@index='496' and @letter='29' and @page='77' and @line='29'] -opus/marginalien/marginal[@index='4970' and @letter='195' and @page='46' and @line='21'] -opus/marginalien/marginal[@index='4971' and @letter='195' and @page='46' and @line='26'] -opus/marginalien/marginal[@index='4972' and @letter='195' and @page='46' and @line='27'] -opus/marginalien/marginal[@index='4973' and @letter='196' and @page='47' and @line='8'] -opus/marginalien/marginal[@index='4974' and @letter='196' and @page='47' and @line='8'] -opus/marginalien/marginal[@index='4975' and @letter='196' and @page='47' and @line='10'] -opus/marginalien/marginal[@index='4976' and @letter='196' and @page='47' and @line='12'] -opus/marginalien/marginal[@index='4977' and @letter='196' and @page='47' and @line='15'] -opus/marginalien/marginal[@index='4978' and @letter='196' and @page='47' and @line='17'] -opus/marginalien/marginal[@index='4979' and @letter='196' and @page='47' and @line='30'] -opus/marginalien/marginal[@index='497' and @letter='29' and @page='77' and @line='31'] -opus/marginalien/marginal[@index='4980' and @letter='196' and @page='48' and @line='19'] -opus/marginalien/marginal[@index='4981' and @letter='196' and @page='48' and @line='23'] -opus/marginalien/marginal[@index='4982' and @letter='196' and @page='48' and @line='27'] -opus/marginalien/marginal[@index='4983' and @letter='197' and @page='48' and @line='32'] -opus/marginalien/marginal[@index='4984' and @letter='197' and @page='49' and @line='1'] -opus/marginalien/marginal[@index='4985' and @letter='197' and @page='49' and @line='7'] -opus/marginalien/marginal[@index='4986' and @letter='197' and @page='49' and @line='9'] -opus/marginalien/marginal[@index='4987' and @letter='197' and @page='49' and @line='11'] -opus/marginalien/marginal[@index='4988' and @letter='197' and @page='49' and @line='12'] -opus/marginalien/marginal[@index='4989' and @letter='197' and @page='49' and @line='13'] -opus/marginalien/marginal[@index='498' and @letter='29' and @page='78' and @line='10'] -opus/marginalien/marginal[@index='4990' and @letter='197' and @page='49' and @line='13'] -opus/marginalien/marginal[@index='4991' and @letter='197' and @page='49' and @line='14'] -opus/marginalien/marginal[@index='4993' and @letter='197' and @page='49' and @line='21'] -opus/marginalien/marginal[@index='4994' and @letter='197' and @page='49' and @line='23'] -opus/marginalien/marginal[@index='4995' and @letter='197' and @page='49' and @line='26'] -opus/marginalien/marginal[@index='4996' and @letter='197' and @page='49' and @line='28'] -opus/marginalien/marginal[@index='4997' and @letter='197' and @page='49' and @line='33'] -opus/marginalien/marginal[@index='4998' and @letter='197' and @page='49' and @line='36'] -opus/marginalien/marginal[@index='4999' and @letter='197' and @page='49' and @line='36'] -opus/marginalien/marginal[@index='499' and @letter='29' and @page='78' and @line='11'] -opus/marginalien/marginal[@index='49' and @letter='3' and @page='8' and @line='3'] -opus/marginalien/marginal[@index='4' and @letter='1' and @page='2' and @line='7'] -opus/marginalien/marginal[@index='5000' and @letter='197' and @page='50' and @line='1'] -opus/marginalien/marginal[@index='5001' and @letter='197' and @page='50' and @line='1'] -opus/marginalien/marginal[@index='5002' and @letter='197' and @page='50' and @line='5'] -opus/marginalien/marginal[@index='5003' and @letter='197' and @page='50' and @line='8'] -opus/marginalien/marginal[@index='5004' and @letter='197' and @page='50' and @line='9'] -opus/marginalien/marginal[@index='5005' and @letter='197' and @page='50' and @line='9'] -opus/marginalien/marginal[@index='5006' and @letter='197' and @page='50' and @line='12'] -opus/marginalien/marginal[@index='5007' and @letter='197' and @page='50' and @line='12'] -opus/marginalien/marginal[@index='5008' and @letter='197' and @page='50' and @line='19'] -opus/marginalien/marginal[@index='5009' and @letter='197' and @page='50' and @line='21'] -opus/marginalien/marginal[@index='500' and @letter='29' and @page='78' and @line='12'] -opus/marginalien/marginal[@index='5010' and @letter='197' and @page='50' and @line='26'] -opus/marginalien/marginal[@index='5011' and @letter='197' and @page='50' and @line='26'] -opus/marginalien/marginal[@index='5012' and @letter='197' and @page='50' and @line='35'] -opus/marginalien/marginal[@index='5013' and @letter='197' and @page='50' and @line='36'] -opus/marginalien/marginal[@index='5014' and @letter='197' and @page='51' and @line='4'] -opus/marginalien/marginal[@index='5015' and @letter='197' and @page='51' and @line='8'] -opus/marginalien/marginal[@index='5016' and @letter='197' and @page='51' and @line='15'] -opus/marginalien/marginal[@index='5017' and @letter='197' and @page='51' and @line='15'] -opus/marginalien/marginal[@index='5018' and @letter='197' and @page='51' and @line='17'] -opus/marginalien/marginal[@index='5019' and @letter='197' and @page='51' and @line='20'] -opus/marginalien/marginal[@index='5020' and @letter='197' and @page='51' and @line='21'] -opus/marginalien/marginal[@index='5021' and @letter='197' and @page='51' and @line='24'] -opus/marginalien/marginal[@index='5022' and @letter='197' and @page='51' and @line='25'] -opus/marginalien/marginal[@index='5023' and @letter='197' and @page='51' and @line='29'] -opus/marginalien/marginal[@index='5024' and @letter='197' and @page='51' and @line='33'] -opus/marginalien/marginal[@index='5025' and @letter='197' and @page='51' and @line='33'] -opus/marginalien/marginal[@index='5026' and @letter='197' and @page='51' and @line='34'] -opus/marginalien/marginal[@index='5027' and @letter='197' and @page='52' and @line='3'] -opus/marginalien/marginal[@index='5028' and @letter='197' and @page='52' and @line='8'] -opus/marginalien/marginal[@index='5029' and @letter='197' and @page='52' and @line='10'] -opus/marginalien/marginal[@index='502' and @letter='29' and @page='78' and @line='34'] -opus/marginalien/marginal[@index='5030' and @letter='197' and @page='52' and @line='9'] -opus/marginalien/marginal[@index='5031' and @letter='197' and @page='52' and @line='14'] -opus/marginalien/marginal[@index='5032' and @letter='197' and @page='52' and @line='16'] -opus/marginalien/marginal[@index='5033' and @letter='197' and @page='52' and @line='18'] -opus/marginalien/marginal[@index='5034' and @letter='197' and @page='52' and @line='19'] -opus/marginalien/marginal[@index='5035' and @letter='197' and @page='52' and @line='21'] -opus/marginalien/marginal[@index='5036' and @letter='198' and @page='53' and @line='7'] -opus/marginalien/marginal[@index='5038' and @letter='198' and @page='53' and @line='19'] -opus/marginalien/marginal[@index='5039' and @letter='198' and @page='53' and @line='22'] -opus/marginalien/marginal[@index='503' and @letter='30' and @page='79' and @line='2'] -opus/marginalien/marginal[@index='5040' and @letter='198' and @page='53' and @line='23'] -opus/marginalien/marginal[@index='5042' and @letter='198' and @page='53' and @line='30'] -opus/marginalien/marginal[@index='5043' and @letter='198' and @page='53' and @line='32'] -opus/marginalien/marginal[@index='5044' and @letter='198' and @page='53' and @line='36'] -opus/marginalien/marginal[@index='5045' and @letter='198' and @page='54' and @line='1'] -opus/marginalien/marginal[@index='5046' and @letter='198' and @page='54' and @line='16'] -opus/marginalien/marginal[@index='5047' and @letter='198' and @page='54' and @line='16'] -opus/marginalien/marginal[@index='5048' and @letter='198' and @page='54' and @line='19'] -opus/marginalien/marginal[@index='5049' and @letter='198' and @page='54' and @line='23'] -opus/marginalien/marginal[@index='504' and @letter='30' and @page='79' and @line='32'] -opus/marginalien/marginal[@index='5050' and @letter='198' and @page='54' and @line='27'] -opus/marginalien/marginal[@index='5051' and @letter='198' and @page='54' and @line='31'] -opus/marginalien/marginal[@index='5052' and @letter='198' and @page='54' and @line='33'] -opus/marginalien/marginal[@index='5053' and @letter='199' and @page='57' and @line='3'] -opus/marginalien/marginal[@index='5055' and @letter='199' and @page='57' and @line='29'] -opus/marginalien/marginal[@index='5056' and @letter='200' and @page='57' and @line='32'] -opus/marginalien/marginal[@index='5057' and @letter='200' and @page='57' and @line='32'] -opus/marginalien/marginal[@index='5058' and @letter='200' and @page='58' and @line='1'] -opus/marginalien/marginal[@index='5059' and @letter='200' and @page='58' and @line='8'] -opus/marginalien/marginal[@index='505' and @letter='30' and @page='80' and @line='1'] -opus/marginalien/marginal[@index='5060' and @letter='200' and @page='58' and @line='10'] -opus/marginalien/marginal[@index='5061' and @letter='200' and @page='58' and @line='13'] -opus/marginalien/marginal[@index='5062' and @letter='200' and @page='58' and @line='18'] -opus/marginalien/marginal[@index='5063' and @letter='200' and @page='58' and @line='22'] -opus/marginalien/marginal[@index='5064' and @letter='200' and @page='58' and @line='25'] -opus/marginalien/marginal[@index='5065' and @letter='200' and @page='58' and @line='29'] -opus/marginalien/marginal[@index='5066' and @letter='200' and @page='58' and @line='30'] -opus/marginalien/marginal[@index='5067' and @letter='200' and @page='58' and @line='37'] -opus/marginalien/marginal[@index='5068' and @letter='200' and @page='59' and @line='3'] -opus/marginalien/marginal[@index='5069' and @letter='200' and @page='59' and @line='5'] -opus/marginalien/marginal[@index='506' and @letter='30' and @page='80' and @line='24'] -opus/marginalien/marginal[@index='5071' and @letter='200' and @page='59' and @line='10'] -opus/marginalien/marginal[@index='5072' and @letter='200' and @page='59' and @line='12'] -opus/marginalien/marginal[@index='5073' and @letter='200' and @page='59' and @line='14'] -opus/marginalien/marginal[@index='5074' and @letter='200' and @page='59' and @line='16'] -opus/marginalien/marginal[@index='5075' and @letter='200' and @page='59' and @line='16'] -opus/marginalien/marginal[@index='5076' and @letter='200' and @page='59' and @line='17'] -opus/marginalien/marginal[@index='5078' and @letter='200' and @page='59' and @line='18'] -opus/marginalien/marginal[@index='5079' and @letter='200' and @page='59' and @line='20'] -opus/marginalien/marginal[@index='507' and @letter='30' and @page='80' and @line='35'] -opus/marginalien/marginal[@index='5080' and @letter='200' and @page='59' and @line='21'] -opus/marginalien/marginal[@index='5081' and @letter='200' and @page='59' and @line='25'] -opus/marginalien/marginal[@index='5082' and @letter='200' and @page='59' and @line='27'] -opus/marginalien/marginal[@index='5083' and @letter='200' and @page='59' and @line='28'] -opus/marginalien/marginal[@index='5084' and @letter='200' and @page='59' and @line='28'] -opus/marginalien/marginal[@index='5085' and @letter='200' and @page='59' and @line='29'] -opus/marginalien/marginal[@index='5086' and @letter='201' and @page='59' and @line='33'] -opus/marginalien/marginal[@index='5087' and @letter='201' and @page='60' and @line='4'] -opus/marginalien/marginal[@index='5089' and @letter='201' and @page='60' and @line='11'] -opus/marginalien/marginal[@index='508' and @letter='30' and @page='81' and @line='14'] -opus/marginalien/marginal[@index='5090' and @letter='201' and @page='60' and @line='16'] -opus/marginalien/marginal[@index='5091' and @letter='201' and @page='60' and @line='30'] -opus/marginalien/marginal[@index='5092' and @letter='201' and @page='60' and @line='32'] -opus/marginalien/marginal[@index='5093' and @letter='201' and @page='60' and @line='37'] -opus/marginalien/marginal[@index='5094' and @letter='201' and @page='61' and @line='5'] -opus/marginalien/marginal[@index='5095' and @letter='201' and @page='61' and @line='6'] -opus/marginalien/marginal[@index='5096' and @letter='201' and @page='61' and @line='6'] -opus/marginalien/marginal[@index='5098' and @letter='201' and @page='61' and @line='9'] -opus/marginalien/marginal[@index='5099' and @letter='201' and @page='61' and @line='10'] -opus/marginalien/marginal[@index='509' and @letter='30' and @page='81' and @line='21'] -opus/marginalien/marginal[@index='50' and @letter='3' and @page='8' and @line='4'] -opus/marginalien/marginal[@index='5100' and @letter='201' and @page='61' and @line='18'] -opus/marginalien/marginal[@index='5101' and @letter='201' and @page='61' and @line='19'] -opus/marginalien/marginal[@index='5102' and @letter='201' and @page='61' and @line='21'] -opus/marginalien/marginal[@index='5103' and @letter='201' and @page='61' and @line='25'] -opus/marginalien/marginal[@index='5104' and @letter='201' and @page='61' and @line='27'] -opus/marginalien/marginal[@index='5105' and @letter='201' and @page='61' and @line='28'] -opus/marginalien/marginal[@index='5106' and @letter='202' and @page='61' and @line='34'] -opus/marginalien/marginal[@index='5107' and @letter='202' and @page='62' and @line='1'] -opus/marginalien/marginal[@index='5108' and @letter='202' and @page='62' and @line='4'] -opus/marginalien/marginal[@index='5109' and @letter='202' and @page='62' and @line='5'] -opus/marginalien/marginal[@index='510' and @letter='31' and @page='81' and @line='24'] -opus/marginalien/marginal[@index='5110' and @letter='202' and @page='62' and @line='6'] -opus/marginalien/marginal[@index='5111' and @letter='202' and @page='62' and @line='8'] -opus/marginalien/marginal[@index='5112' and @letter='202' and @page='62' and @line='11'] -opus/marginalien/marginal[@index='5113' and @letter='202' and @page='62' and @line='15'] -opus/marginalien/marginal[@index='5114' and @letter='202' and @page='62' and @line='23'] -opus/marginalien/marginal[@index='5115' and @letter='202' and @page='62' and @line='26'] -opus/marginalien/marginal[@index='5116' and @letter='202' and @page='62' and @line='29'] -opus/marginalien/marginal[@index='5117' and @letter='202' and @page='63' and @line='2'] -opus/marginalien/marginal[@index='5118' and @letter='202' and @page='63' and @line='5'] -opus/marginalien/marginal[@index='5119' and @letter='202' and @page='63' and @line='7'] -opus/marginalien/marginal[@index='511' and @letter='31' and @page='81' and @line='29'] -opus/marginalien/marginal[@index='5120' and @letter='202' and @page='63' and @line='10'] -opus/marginalien/marginal[@index='5121' and @letter='202' and @page='63' and @line='10'] -opus/marginalien/marginal[@index='5122' and @letter='202' and @page='63' and @line='12'] -opus/marginalien/marginal[@index='5123' and @letter='202' and @page='63' and @line='12'] -opus/marginalien/marginal[@index='5124' and @letter='202' and @page='63' and @line='15'] -opus/marginalien/marginal[@index='5125' and @letter='202' and @page='63' and @line='16'] -opus/marginalien/marginal[@index='5126' and @letter='202' and @page='63' and @line='16'] -opus/marginalien/marginal[@index='5127' and @letter='202' and @page='63' and @line='16'] -opus/marginalien/marginal[@index='5128' and @letter='202' and @page='63' and @line='17'] -opus/marginalien/marginal[@index='5129' and @letter='202' and @page='63' and @line='17'] -opus/marginalien/marginal[@index='512' and @letter='31' and @page='82' and @line='8'] -opus/marginalien/marginal[@index='5130' and @letter='202' and @page='63' and @line='17'] -opus/marginalien/marginal[@index='5131' and @letter='202' and @page='63' and @line='18'] -opus/marginalien/marginal[@index='5132' and @letter='202' and @page='63' and @line='21'] -opus/marginalien/marginal[@index='5133' and @letter='202' and @page='63' and @line='21'] -opus/marginalien/marginal[@index='5134' and @letter='202' and @page='63' and @line='21'] -opus/marginalien/marginal[@index='5135' and @letter='202' and @page='63' and @line='23'] -opus/marginalien/marginal[@index='5136' and @letter='202' and @page='63' and @line='24'] -opus/marginalien/marginal[@index='5137' and @letter='202' and @page='63' and @line='24'] -opus/marginalien/marginal[@index='5138' and @letter='202' and @page='63' and @line='27'] -opus/marginalien/marginal[@index='5139' and @letter='202' and @page='63' and @line='29'] -opus/marginalien/marginal[@index='513' and @letter='31' and @page='82' and @line='11'] -opus/marginalien/marginal[@index='5140' and @letter='202' and @page='63' and @line='32'] -opus/marginalien/marginal[@index='5141' and @letter='202' and @page='63' and @line='35'] -opus/marginalien/marginal[@index='5142' and @letter='202' and @page='64' and @line='6'] -opus/marginalien/marginal[@index='5143' and @letter='202' and @page='64' and @line='7'] -opus/marginalien/marginal[@index='5144' and @letter='202' and @page='64' and @line='7'] -opus/marginalien/marginal[@index='5145' and @letter='202' and @page='64' and @line='14'] -opus/marginalien/marginal[@index='5146' and @letter='202' and @page='64' and @line='31'] -opus/marginalien/marginal[@index='5148' and @letter='202' and @page='64' and @line='31'] -opus/marginalien/marginal[@index='5149' and @letter='202' and @page='64' and @line='32'] -opus/marginalien/marginal[@index='514' and @letter='31' and @page='82' and @line='25'] -opus/marginalien/marginal[@index='5150' and @letter='202' and @page='65' and @line='1'] -opus/marginalien/marginal[@index='5151' and @letter='202' and @page='65' and @line='11'] -opus/marginalien/marginal[@index='5152' and @letter='202' and @page='65' and @line='26'] -opus/marginalien/marginal[@index='5153' and @letter='202' and @page='65' and @line='28'] -opus/marginalien/marginal[@index='5154' and @letter='202' and @page='65' and @line='29'] -opus/marginalien/marginal[@index='5155' and @letter='202' and @page='65' and @line='33'] -opus/marginalien/marginal[@index='5156' and @letter='202' and @page='65' and @line='35'] -opus/marginalien/marginal[@index='5157' and @letter='202' and @page='65' and @line='37'] -opus/marginalien/marginal[@index='5158' and @letter='202' and @page='66' and @line='1'] -opus/marginalien/marginal[@index='5159' and @letter='202' and @page='66' and @line='3'] -opus/marginalien/marginal[@index='515' and @letter='31' and @page='82' and @line='31'] -opus/marginalien/marginal[@index='5160' and @letter='202' and @page='66' and @line='8'] -opus/marginalien/marginal[@index='5161' and @letter='202' and @page='66' and @line='9'] -opus/marginalien/marginal[@index='5162' and @letter='202' and @page='66' and @line='9'] -opus/marginalien/marginal[@index='5163' and @letter='202' and @page='66' and @line='11'] -opus/marginalien/marginal[@index='5164' and @letter='202' and @page='66' and @line='13'] -opus/marginalien/marginal[@index='5166' and @letter='202' and @page='66' and @line='20'] -opus/marginalien/marginal[@index='5167' and @letter='202' and @page='66' and @line='23'] -opus/marginalien/marginal[@index='5168' and @letter='202' and @page='66' and @line='27'] -opus/marginalien/marginal[@index='5169' and @letter='202' and @page='66' and @line='30'] -opus/marginalien/marginal[@index='516' and @letter='31' and @page='82' and @line='33'] -opus/marginalien/marginal[@index='5170' and @letter='202' and @page='66' and @line='35'] -opus/marginalien/marginal[@index='5171' and @letter='202' and @page='67' and @line='4'] -opus/marginalien/marginal[@index='5172' and @letter='202' and @page='67' and @line='5'] -opus/marginalien/marginal[@index='5173' and @letter='202' and @page='67' and @line='7'] -opus/marginalien/marginal[@index='5174' and @letter='202' and @page='67' and @line='8'] -opus/marginalien/marginal[@index='5175' and @letter='202' and @page='67' and @line='15'] -opus/marginalien/marginal[@index='5176' and @letter='202' and @page='67' and @line='16'] -opus/marginalien/marginal[@index='5177' and @letter='202' and @page='67' and @line='17'] -opus/marginalien/marginal[@index='5178' and @letter='202' and @page='67' and @line='19'] -opus/marginalien/marginal[@index='517' and @letter='31' and @page='82' and @line='37'] -opus/marginalien/marginal[@index='5181' and @letter='202' and @page='67' and @line='21'] -opus/marginalien/marginal[@index='5182' and @letter='202' and @page='67' and @line='24'] -opus/marginalien/marginal[@index='5183' and @letter='202' and @page='67' and @line='33'] -opus/marginalien/marginal[@index='5185' and @letter='202' and @page='67' and @line='34'] -opus/marginalien/marginal[@index='5186' and @letter='202' and @page='67' and @line='35'] -opus/marginalien/marginal[@index='5187' and @letter='202' and @page='68' and @line='4'] -opus/marginalien/marginal[@index='5188' and @letter='202' and @page='68' and @line='9'] -opus/marginalien/marginal[@index='5189' and @letter='202' and @page='68' and @line='10'] -opus/marginalien/marginal[@index='518' and @letter='31' and @page='83' and @line='1'] -opus/marginalien/marginal[@index='5190' and @letter='202' and @page='68' and @line='11'] -opus/marginalien/marginal[@index='5191' and @letter='202' and @page='68' and @line='15'] -opus/marginalien/marginal[@index='5192' and @letter='202' and @page='68' and @line='16'] -opus/marginalien/marginal[@index='5193' and @letter='202' and @page='68' and @line='19'] -opus/marginalien/marginal[@index='5194' and @letter='202' and @page='68' and @line='20'] -opus/marginalien/marginal[@index='5195' and @letter='203' and @page='68' and @line='24'] -opus/marginalien/marginal[@index='5196' and @letter='203' and @page='68' and @line='26'] -opus/marginalien/marginal[@index='5197' and @letter='203' and @page='69' and @line='1'] -opus/marginalien/marginal[@index='5198' and @letter='203' and @page='69' and @line='2'] -opus/marginalien/marginal[@index='5199' and @letter='203' and @page='69' and @line='2'] -opus/marginalien/marginal[@index='519' and @letter='31' and @page='83' and @line='2'] -opus/marginalien/marginal[@index='51' and @letter='3' and @page='8' and @line='9'] -opus/marginalien/marginal[@index='5200' and @letter='203' and @page='69' and @line='6'] -opus/marginalien/marginal[@index='5201' and @letter='203' and @page='69' and @line='23'] -opus/marginalien/marginal[@index='5202' and @letter='203' and @page='69' and @line='9'] -opus/marginalien/marginal[@index='5203' and @letter='203' and @page='69' and @line='11'] -opus/marginalien/marginal[@index='5204' and @letter='203' and @page='69' and @line='11'] -opus/marginalien/marginal[@index='5205' and @letter='203' and @page='69' and @line='15'] -opus/marginalien/marginal[@index='5206' and @letter='203' and @page='70' and @line='20'] -opus/marginalien/marginal[@index='5207' and @letter='203' and @page='70' and @line='21'] -opus/marginalien/marginal[@index='5208' and @letter='203' and @page='70' and @line='27'] -opus/marginalien/marginal[@index='5209' and @letter='203' and @page='70' and @line='29'] -opus/marginalien/marginal[@index='520' and @letter='31' and @page='83' and @line='3'] -opus/marginalien/marginal[@index='5210' and @letter='203' and @page='70' and @line='33'] -opus/marginalien/marginal[@index='5211' and @letter='203' and @page='70' and @line='36'] -opus/marginalien/marginal[@index='5212' and @letter='203' and @page='71' and @line='5'] -opus/marginalien/marginal[@index='5213' and @letter='203' and @page='71' and @line='12'] -opus/marginalien/marginal[@index='5215' and @letter='203' and @page='71' and @line='16'] -opus/marginalien/marginal[@index='5216' and @letter='203' and @page='71' and @line='18'] -opus/marginalien/marginal[@index='5217' and @letter='203' and @page='71' and @line='19'] -opus/marginalien/marginal[@index='5218' and @letter='203' and @page='71' and @line='20'] -opus/marginalien/marginal[@index='5219' and @letter='203' and @page='71' and @line='24'] -opus/marginalien/marginal[@index='521' and @letter='31' and @page='83' and @line='4'] -opus/marginalien/marginal[@index='5220' and @letter='203' and @page='71' and @line='26'] -opus/marginalien/marginal[@index='5221' and @letter='203' and @page='71' and @line='27'] -opus/marginalien/marginal[@index='5222' and @letter='203' and @page='71' and @line='30'] -opus/marginalien/marginal[@index='5223' and @letter='203' and @page='71' and @line='36'] -opus/marginalien/marginal[@index='5224' and @letter='203' and @page='72' and @line='3'] -opus/marginalien/marginal[@index='5225' and @letter='203' and @page='72' and @line='4'] -opus/marginalien/marginal[@index='5226' and @letter='203' and @page='72' and @line='7'] -opus/marginalien/marginal[@index='5227' and @letter='203' and @page='72' and @line='10'] -opus/marginalien/marginal[@index='5228' and @letter='203' and @page='72' and @line='12'] -opus/marginalien/marginal[@index='5229' and @letter='203' and @page='72' and @line='12'] -opus/marginalien/marginal[@index='522' and @letter='31' and @page='83' and @line='5'] -opus/marginalien/marginal[@index='5230' and @letter='203' and @page='72' and @line='13'] -opus/marginalien/marginal[@index='5231' and @letter='203' and @page='72' and @line='15'] -opus/marginalien/marginal[@index='5232' and @letter='203' and @page='72' and @line='16'] -opus/marginalien/marginal[@index='5233' and @letter='203' and @page='72' and @line='17'] -opus/marginalien/marginal[@index='5234' and @letter='203' and @page='72' and @line='27'] -opus/marginalien/marginal[@index='5235' and @letter='203' and @page='72' and @line='28'] -opus/marginalien/marginal[@index='5236' and @letter='203' and @page='72' and @line='33'] -opus/marginalien/marginal[@index='5237' and @letter='203' and @page='72' and @line='33'] -opus/marginalien/marginal[@index='5238' and @letter='203' and @page='72' and @line='36'] -opus/marginalien/marginal[@index='5239' and @letter='203' and @page='73' and @line='1'] -opus/marginalien/marginal[@index='523' and @letter='32' and @page='83' and @line='29'] -opus/marginalien/marginal[@index='5240' and @letter='203' and @page='73' and @line='3'] -opus/marginalien/marginal[@index='5241' and @letter='203' and @page='73' and @line='5'] -opus/marginalien/marginal[@index='5242' and @letter='203' and @page='73' and @line='8'] -opus/marginalien/marginal[@index='5243' and @letter='203' and @page='73' and @line='20'] -opus/marginalien/marginal[@index='5244' and @letter='203' and @page='73' and @line='24'] -opus/marginalien/marginal[@index='5245' and @letter='203' and @page='73' and @line='28'] -opus/marginalien/marginal[@index='5246' and @letter='203' and @page='73' and @line='33'] -opus/marginalien/marginal[@index='5247' and @letter='203' and @page='73' and @line='36'] -opus/marginalien/marginal[@index='5248' and @letter='203' and @page='74' and @line='7'] -opus/marginalien/marginal[@index='5249' and @letter='203' and @page='74' and @line='9'] -opus/marginalien/marginal[@index='524' and @letter='32' and @page='83' and @line='34'] -opus/marginalien/marginal[@index='5250' and @letter='203' and @page='74' and @line='10'] -opus/marginalien/marginal[@index='5251' and @letter='203' and @page='74' and @line='16'] -opus/marginalien/marginal[@index='5252' and @letter='203' and @page='74' and @line='19'] -opus/marginalien/marginal[@index='5253' and @letter='203' and @page='74' and @line='20'] -opus/marginalien/marginal[@index='5254' and @letter='203' and @page='74' and @line='23'] -opus/marginalien/marginal[@index='5256' and @letter='203' and @page='74' and @line='26'] -opus/marginalien/marginal[@index='5257' and @letter='203' and @page='74' and @line='26'] -opus/marginalien/marginal[@index='5258' and @letter='203' and @page='74' and @line='26'] -opus/marginalien/marginal[@index='5259' and @letter='203' and @page='74' and @line='27'] -opus/marginalien/marginal[@index='525' and @letter='32' and @page='84' and @line='12'] -opus/marginalien/marginal[@index='5260' and @letter='206' and @page='88' and @line='32'] -opus/marginalien/marginal[@index='5261' and @letter='207' and @page='89' and @line='3'] -opus/marginalien/marginal[@index='5262' and @letter='207' and @page='89' and @line='4'] -opus/marginalien/marginal[@index='5263' and @letter='207' and @page='89' and @line='5'] -opus/marginalien/marginal[@index='5264' and @letter='207' and @page='89' and @line='6'] -opus/marginalien/marginal[@index='5265' and @letter='207' and @page='89' and @line='6'] -opus/marginalien/marginal[@index='5266' and @letter='207' and @page='89' and @line='16'] -opus/marginalien/marginal[@index='5267' and @letter='207' and @page='89' and @line='22'] -opus/marginalien/marginal[@index='5268' and @letter='207' and @page='89' and @line='26'] -opus/marginalien/marginal[@index='5269' and @letter='207' and @page='89' and @line='26'] -opus/marginalien/marginal[@index='526' and @letter='32' and @page='84' and @line='26'] -opus/marginalien/marginal[@index='5270' and @letter='207' and @page='89' and @line='27'] -opus/marginalien/marginal[@index='5271' and @letter='207' and @page='89' and @line='28'] -opus/marginalien/marginal[@index='5272' and @letter='207' and @page='89' and @line='29'] -opus/marginalien/marginal[@index='5273' and @letter='207' and @page='89' and @line='32'] -opus/marginalien/marginal[@index='5274' and @letter='207' and @page='89' and @line='34'] -opus/marginalien/marginal[@index='5275' and @letter='207' and @page='89' and @line='35'] -opus/marginalien/marginal[@index='5276' and @letter='207' and @page='90' and @line='2'] -opus/marginalien/marginal[@index='5277' and @letter='207' and @page='90' and @line='4'] -opus/marginalien/marginal[@index='5278' and @letter='207' and @page='90' and @line='6'] -opus/marginalien/marginal[@index='5279' and @letter='207' and @page='90' and @line='7'] -opus/marginalien/marginal[@index='527' and @letter='32' and @page='84' and @line='28'] -opus/marginalien/marginal[@index='5280' and @letter='207' and @page='90' and @line='9'] -opus/marginalien/marginal[@index='5281' and @letter='207' and @page='90' and @line='10'] -opus/marginalien/marginal[@index='5282' and @letter='207' and @page='90' and @line='15'] -opus/marginalien/marginal[@index='5283' and @letter='207' and @page='90' and @line='16'] -opus/marginalien/marginal[@index='5284' and @letter='207' and @page='90' and @line='16'] -opus/marginalien/marginal[@index='5285' and @letter='207' and @page='90' and @line='18'] -opus/marginalien/marginal[@index='5286' and @letter='207' and @page='90' and @line='21'] -opus/marginalien/marginal[@index='5287' and @letter='207' and @page='90' and @line='25'] -opus/marginalien/marginal[@index='5288' and @letter='207' and @page='90' and @line='36'] -opus/marginalien/marginal[@index='5289' and @letter='207' and @page='91' and @line='3'] -opus/marginalien/marginal[@index='528' and @letter='32' and @page='85' and @line='13'] -opus/marginalien/marginal[@index='5290' and @letter='207' and @page='91' and @line='10'] -opus/marginalien/marginal[@index='5291' and @letter='207' and @page='91' and @line='18'] -opus/marginalien/marginal[@index='5292' and @letter='207' and @page='91' and @line='31'] -opus/marginalien/marginal[@index='5293' and @letter='207' and @page='91' and @line='33'] -opus/marginalien/marginal[@index='5294' and @letter='207' and @page='91' and @line='34'] -opus/marginalien/marginal[@index='5295' and @letter='207' and @page='91' and @line='36'] -opus/marginalien/marginal[@index='5296' and @letter='207' and @page='92' and @line='7'] -opus/marginalien/marginal[@index='5297' and @letter='207' and @page='92' and @line='20'] -opus/marginalien/marginal[@index='529' and @letter='32' and @page='85' and @line='17'] -opus/marginalien/marginal[@index='52' and @letter='3' and @page='8' and @line='10'] -opus/marginalien/marginal[@index='5300' and @letter='207' and @page='92' and @line='23'] -opus/marginalien/marginal[@index='5301' and @letter='207' and @page='92' and @line='26'] -opus/marginalien/marginal[@index='5302' and @letter='207' and @page='92' and @line='26'] -opus/marginalien/marginal[@index='5303' and @letter='207' and @page='92' and @line='30'] -opus/marginalien/marginal[@index='5304' and @letter='207' and @page='92' and @line='33'] -opus/marginalien/marginal[@index='5305' and @letter='207' and @page='92' and @line='34'] -opus/marginalien/marginal[@index='5306' and @letter='207' and @page='93' and @line='6'] -opus/marginalien/marginal[@index='5307' and @letter='208' and @page='93' and @line='14'] -opus/marginalien/marginal[@index='5308' and @letter='208' and @page='93' and @line='18'] -opus/marginalien/marginal[@index='5309' and @letter='208' and @page='93' and @line='19'] -opus/marginalien/marginal[@index='530' and @letter='32' and @page='85' and @line='18'] -opus/marginalien/marginal[@index='5310' and @letter='208' and @page='93' and @line='23'] -opus/marginalien/marginal[@index='5311' and @letter='208' and @page='93' and @line='26'] -opus/marginalien/marginal[@index='5312' and @letter='208' and @page='93' and @line='27'] -opus/marginalien/marginal[@index='5313' and @letter='208' and @page='93' and @line='28'] -opus/marginalien/marginal[@index='5314' and @letter='208' and @page='93' and @line='30'] -opus/marginalien/marginal[@index='5315' and @letter='208' and @page='93' and @line='30'] -opus/marginalien/marginal[@index='5316' and @letter='208' and @page='93' and @line='34'] -opus/marginalien/marginal[@index='5317' and @letter='208' and @page='93' and @line='35'] -opus/marginalien/marginal[@index='5318' and @letter='208' and @page='94' and @line='1'] -opus/marginalien/marginal[@index='5319' and @letter='208' and @page='94' and @line='2'] -opus/marginalien/marginal[@index='531' and @letter='32' and @page='85' and @line='19'] -opus/marginalien/marginal[@index='5321' and @letter='208' and @page='94' and @line='3'] -opus/marginalien/marginal[@index='5322' and @letter='208' and @page='94' and @line='9'] -opus/marginalien/marginal[@index='5323' and @letter='208' and @page='94' and @line='12'] -opus/marginalien/marginal[@index='5324' and @letter='208' and @page='94' and @line='14'] -opus/marginalien/marginal[@index='5325' and @letter='208' and @page='94' and @line='19'] -opus/marginalien/marginal[@index='5326' and @letter='208' and @page='94' and @line='21'] -opus/marginalien/marginal[@index='5327' and @letter='208' and @page='94' and @line='28'] -opus/marginalien/marginal[@index='5328' and @letter='208' and @page='94' and @line='34'] -opus/marginalien/marginal[@index='5329' and @letter='208' and @page='95' and @line='5'] -opus/marginalien/marginal[@index='532' and @letter='32' and @page='85' and @line='21'] -opus/marginalien/marginal[@index='5330' and @letter='208' and @page='95' and @line='6'] -opus/marginalien/marginal[@index='5331' and @letter='208' and @page='95' and @line='19'] -opus/marginalien/marginal[@index='5332' and @letter='208' and @page='95' and @line='22'] -opus/marginalien/marginal[@index='5333' and @letter='208' and @page='95' and @line='35'] -opus/marginalien/marginal[@index='5334' and @letter='208' and @page='96' and @line='3'] -opus/marginalien/marginal[@index='5335' and @letter='208' and @page='96' and @line='9'] -opus/marginalien/marginal[@index='5336' and @letter='208' and @page='96' and @line='15'] -opus/marginalien/marginal[@index='5337' and @letter='208' and @page='96' and @line='15'] -opus/marginalien/marginal[@index='5338' and @letter='208' and @page='96' and @line='21'] -opus/marginalien/marginal[@index='5339' and @letter='208' and @page='96' and @line='21'] -opus/marginalien/marginal[@index='533' and @letter='33' and @page='85' and @line='24'] -opus/marginalien/marginal[@index='5340' and @letter='208' and @page='96' and @line='23'] -opus/marginalien/marginal[@index='5341' and @letter='208' and @page='96' and @line='27'] -opus/marginalien/marginal[@index='5342' and @letter='208' and @page='96' and @line='29'] -opus/marginalien/marginal[@index='5343' and @letter='208' and @page='96' and @line='32'] -opus/marginalien/marginal[@index='5344' and @letter='209' and @page='97' and @line='4'] -opus/marginalien/marginal[@index='5345' and @letter='209' and @page='97' and @line='5'] -opus/marginalien/marginal[@index='5346' and @letter='209' and @page='97' and @line='6'] -opus/marginalien/marginal[@index='5347' and @letter='209' and @page='97' and @line='7'] -opus/marginalien/marginal[@index='5348' and @letter='209' and @page='97' and @line='7'] -opus/marginalien/marginal[@index='5349' and @letter='209' and @page='97' and @line='8'] -opus/marginalien/marginal[@index='534' and @letter='33' and @page='85' and @line='26'] -opus/marginalien/marginal[@index='5350' and @letter='209' and @page='97' and @line='9'] -opus/marginalien/marginal[@index='5351' and @letter='209' and @page='97' and @line='10'] -opus/marginalien/marginal[@index='5352' and @letter='209' and @page='97' and @line='13'] -opus/marginalien/marginal[@index='5353' and @letter='209' and @page='97' and @line='17'] -opus/marginalien/marginal[@index='5354' and @letter='209' and @page='97' and @line='17'] -opus/marginalien/marginal[@index='5355' and @letter='209' and @page='97' and @line='21'] -opus/marginalien/marginal[@index='5356' and @letter='209' and @page='97' and @line='22'] -opus/marginalien/marginal[@index='5357' and @letter='209' and @page='97' and @line='24'] -opus/marginalien/marginal[@index='5358' and @letter='209' and @page='97' and @line='31'] -opus/marginalien/marginal[@index='5359' and @letter='209' and @page='98' and @line='2'] -opus/marginalien/marginal[@index='535' and @letter='33' and @page='86' and @line='8'] -opus/marginalien/marginal[@index='5360' and @letter='209' and @page='98' and @line='9'] -opus/marginalien/marginal[@index='5361' and @letter='209' and @page='98' and @line='14'] -opus/marginalien/marginal[@index='5362' and @letter='209' and @page='98' and @line='17'] -opus/marginalien/marginal[@index='5363' and @letter='209' and @page='98' and @line='17'] -opus/marginalien/marginal[@index='5364' and @letter='209' and @page='98' and @line='21'] -opus/marginalien/marginal[@index='5365' and @letter='209' and @page='98' and @line='24'] -opus/marginalien/marginal[@index='5366' and @letter='209' and @page='98' and @line='25'] -opus/marginalien/marginal[@index='5367' and @letter='209' and @page='98' and @line='26'] -opus/marginalien/marginal[@index='5368' and @letter='209' and @page='98' and @line='29'] -opus/marginalien/marginal[@index='5369' and @letter='209' and @page='98' and @line='32'] -opus/marginalien/marginal[@index='536' and @letter='33' and @page='86' and @line='11'] -opus/marginalien/marginal[@index='5370' and @letter='209' and @page='99' and @line='9'] -opus/marginalien/marginal[@index='5371' and @letter='209' and @page='99' and @line='16'] -opus/marginalien/marginal[@index='5372' and @letter='209' and @page='99' and @line='21'] -opus/marginalien/marginal[@index='5373' and @letter='209' and @page='99' and @line='27'] -opus/marginalien/marginal[@index='5374' and @letter='209' and @page='99' and @line='29'] -opus/marginalien/marginal[@index='5375' and @letter='209' and @page='99' and @line='36'] -opus/marginalien/marginal[@index='5376' and @letter='209' and @page='100' and @line='2'] -opus/marginalien/marginal[@index='5377' and @letter='209' and @page='100' and @line='5'] -opus/marginalien/marginal[@index='5378' and @letter='209' and @page='100' and @line='9'] -opus/marginalien/marginal[@index='5379' and @letter='209' and @page='100' and @line='12'] -opus/marginalien/marginal[@index='537' and @letter='33' and @page='86' and @line='17'] -opus/marginalien/marginal[@index='5380' and @letter='209' and @page='100' and @line='13'] -opus/marginalien/marginal[@index='5381' and @letter='209' and @page='100' and @line='20'] -opus/marginalien/marginal[@index='5382' and @letter='209' and @page='100' and @line='26'] -opus/marginalien/marginal[@index='5383' and @letter='209' and @page='100' and @line='26'] -opus/marginalien/marginal[@index='5384' and @letter='209' and @page='100' and @line='28'] -opus/marginalien/marginal[@index='5385' and @letter='209' and @page='100' and @line='29'] -opus/marginalien/marginal[@index='5387' and @letter='209' and @page='100' and @line='30'] -opus/marginalien/marginal[@index='5389' and @letter='209' and @page='100' and @line='34'] -opus/marginalien/marginal[@index='538' and @letter='34' and @page='86' and @line='24'] -opus/marginalien/marginal[@index='5390' and @letter='209' and @page='100' and @line='34'] -opus/marginalien/marginal[@index='5391' and @letter='210' and @page='101' and @line='6'] -opus/marginalien/marginal[@index='5392' and @letter='210' and @page='101' and @line='8'] -opus/marginalien/marginal[@index='5393' and @letter='210' and @page='101' and @line='16'] -opus/marginalien/marginal[@index='5394' and @letter='210' and @page='101' and @line='18'] -opus/marginalien/marginal[@index='5395' and @letter='210' and @page='101' and @line='18'] -opus/marginalien/marginal[@index='5396' and @letter='210' and @page='101' and @line='18'] -opus/marginalien/marginal[@index='5397' and @letter='210' and @page='101' and @line='34'] -opus/marginalien/marginal[@index='5398' and @letter='210' and @page='101' and @line='34'] -opus/marginalien/marginal[@index='5399' and @letter='210' and @page='101' and @line='35'] -opus/marginalien/marginal[@index='539' and @letter='34' and @page='87' and @line='21'] -opus/marginalien/marginal[@index='53' and @letter='3' and @page='8' and @line='11'] -opus/marginalien/marginal[@index='5400' and @letter='210' and @page='102' and @line='1'] -opus/marginalien/marginal[@index='5401' and @letter='210' and @page='102' and @line='1'] -opus/marginalien/marginal[@index='5402' and @letter='210' and @page='102' and @line='5'] -opus/marginalien/marginal[@index='5403' and @letter='210' and @page='102' and @line='8'] -opus/marginalien/marginal[@index='5404' and @letter='210' and @page='102' and @line='9'] -opus/marginalien/marginal[@index='5405' and @letter='210' and @page='102' and @line='12'] -opus/marginalien/marginal[@index='5406' and @letter='210' and @page='102' and @line='16'] -opus/marginalien/marginal[@index='5407' and @letter='210' and @page='102' and @line='17'] -opus/marginalien/marginal[@index='5408' and @letter='210' and @page='102' and @line='30'] -opus/marginalien/marginal[@index='5409' and @letter='211' and @page='103' and @line='1'] -opus/marginalien/marginal[@index='540' and @letter='35' and @page='87' and @line='34'] -opus/marginalien/marginal[@index='5410' and @letter='211' and @page='103' and @line='3'] -opus/marginalien/marginal[@index='5411' and @letter='212' and @page='103' and @line='10'] -opus/marginalien/marginal[@index='5412' and @letter='212' and @page='103' and @line='11'] -opus/marginalien/marginal[@index='5413' and @letter='212' and @page='103' and @line='13'] -opus/marginalien/marginal[@index='5414' and @letter='212' and @page='103' and @line='17'] -opus/marginalien/marginal[@index='5415' and @letter='212' and @page='103' and @line='18'] -opus/marginalien/marginal[@index='5416' and @letter='212' and @page='103' and @line='19'] -opus/marginalien/marginal[@index='5418' and @letter='212' and @page='103' and @line='30'] -opus/marginalien/marginal[@index='5419' and @letter='212' and @page='103' and @line='35'] -opus/marginalien/marginal[@index='541' and @letter='35' and @page='88' and @line='3'] -opus/marginalien/marginal[@index='5420' and @letter='212' and @page='104' and @line='3'] -opus/marginalien/marginal[@index='5421' and @letter='212' and @page='104' and @line='6'] -opus/marginalien/marginal[@index='5422' and @letter='212' and @page='104' and @line='9'] -opus/marginalien/marginal[@index='5423' and @letter='212' and @page='104' and @line='12'] -opus/marginalien/marginal[@index='5424' and @letter='212' and @page='104' and @line='21'] -opus/marginalien/marginal[@index='5425' and @letter='212' and @page='104' and @line='31'] -opus/marginalien/marginal[@index='5426' and @letter='212' and @page='104' and @line='33'] -opus/marginalien/marginal[@index='5427' and @letter='212' and @page='105' and @line='2'] -opus/marginalien/marginal[@index='5428' and @letter='212' and @page='105' and @line='2'] -opus/marginalien/marginal[@index='5429' and @letter='212' and @page='105' and @line='4'] -opus/marginalien/marginal[@index='542' and @letter='35' and @page='88' and @line='10'] -opus/marginalien/marginal[@index='5430' and @letter='212' and @page='105' and @line='10'] -opus/marginalien/marginal[@index='5431' and @letter='212' and @page='105' and @line='17'] -opus/marginalien/marginal[@index='5432' and @letter='212' and @page='105' and @line='26'] -opus/marginalien/marginal[@index='5433' and @letter='212' and @page='105' and @line='29'] -opus/marginalien/marginal[@index='5434' and @letter='212' and @page='106' and @line='3'] -opus/marginalien/marginal[@index='5435' and @letter='212' and @page='106' and @line='21'] -opus/marginalien/marginal[@index='5436' and @letter='212' and @page='106' and @line='24'] -opus/marginalien/marginal[@index='5437' and @letter='212' and @page='106' and @line='27'] -opus/marginalien/marginal[@index='5439' and @letter='212' and @page='106' and @line='29'] -opus/marginalien/marginal[@index='543' and @letter='35' and @page='88' and @line='12'] -opus/marginalien/marginal[@index='5440' and @letter='212' and @page='106' and @line='33'] -opus/marginalien/marginal[@index='5441' and @letter='212' and @page='106' and @line='36'] -opus/marginalien/marginal[@index='5442' and @letter='212' and @page='107' and @line='3'] -opus/marginalien/marginal[@index='5443' and @letter='212' and @page='107' and @line='4'] -opus/marginalien/marginal[@index='5444' and @letter='212' and @page='107' and @line='6'] -opus/marginalien/marginal[@index='5446' and @letter='212' and @page='107' and @line='13'] -opus/marginalien/marginal[@index='5448' and @letter='212' and @page='107' and @line='19'] -opus/marginalien/marginal[@index='5449' and @letter='212' and @page='107' and @line='28'] -opus/marginalien/marginal[@index='544' and @letter='35' and @page='88' and @line='12'] -opus/marginalien/marginal[@index='5450' and @letter='212' and @page='107' and @line='29'] -opus/marginalien/marginal[@index='5451' and @letter='212' and @page='107' and @line='30'] -opus/marginalien/marginal[@index='5452' and @letter='212' and @page='107' and @line='32'] -opus/marginalien/marginal[@index='5453' and @letter='212' and @page='107' and @line='36'] -opus/marginalien/marginal[@index='5454' and @letter='212' and @page='107' and @line='37'] -opus/marginalien/marginal[@index='5455' and @letter='212' and @page='107' and @line='37'] -opus/marginalien/marginal[@index='5456' and @letter='212' and @page='108' and @line='1'] -opus/marginalien/marginal[@index='5457' and @letter='212' and @page='108' and @line='4'] -opus/marginalien/marginal[@index='5458' and @letter='212' and @page='108' and @line='6'] -opus/marginalien/marginal[@index='5459' and @letter='212' and @page='108' and @line='7'] -opus/marginalien/marginal[@index='545' and @letter='35' and @page='88' and @line='14'] -opus/marginalien/marginal[@index='5460' and @letter='212' and @page='108' and @line='8'] -opus/marginalien/marginal[@index='5461' and @letter='212' and @page='108' and @line='10'] -opus/marginalien/marginal[@index='5462' and @letter='212' and @page='108' and @line='13'] -opus/marginalien/marginal[@index='5464' and @letter='212' and @page='108' and @line='13'] -opus/marginalien/marginal[@index='5465' and @letter='212' and @page='108' and @line='16'] -opus/marginalien/marginal[@index='5466' and @letter='212' and @page='108' and @line='21'] -opus/marginalien/marginal[@index='5467' and @letter='212' and @page='108' and @line='27'] -opus/marginalien/marginal[@index='5468' and @letter='212' and @page='108' and @line='29'] -opus/marginalien/marginal[@index='5469' and @letter='212' and @page='108' and @line='29'] -opus/marginalien/marginal[@index='546' and @letter='35' and @page='88' and @line='18'] -opus/marginalien/marginal[@index='5470' and @letter='212' and @page='108' and @line='30'] -opus/marginalien/marginal[@index='5471' and @letter='212' and @page='108' and @line='32'] -opus/marginalien/marginal[@index='5472' and @letter='212' and @page='108' and @line='37'] -opus/marginalien/marginal[@index='5473' and @letter='212' and @page='108' and @line='37'] -opus/marginalien/marginal[@index='5475' and @letter='212' and @page='109' and @line='3'] -opus/marginalien/marginal[@index='5476' and @letter='212' and @page='109' and @line='4'] -opus/marginalien/marginal[@index='5477' and @letter='212' and @page='109' and @line='7'] -opus/marginalien/marginal[@index='5478' and @letter='212' and @page='109' and @line='10'] -opus/marginalien/marginal[@index='5479' and @letter='212' and @page='109' and @line='12'] -opus/marginalien/marginal[@index='547' and @letter='35' and @page='88' and @line='21'] -opus/marginalien/marginal[@index='5480' and @letter='213' and @page='109' and @line='17'] -opus/marginalien/marginal[@index='5481' and @letter='213' and @page='109' and @line='17'] -opus/marginalien/marginal[@index='5482' and @letter='213' and @page='109' and @line='19'] -opus/marginalien/marginal[@index='5483' and @letter='213' and @page='109' and @line='21'] -opus/marginalien/marginal[@index='5484' and @letter='213' and @page='109' and @line='21'] -opus/marginalien/marginal[@index='5485' and @letter='213' and @page='109' and @line='22'] -opus/marginalien/marginal[@index='5486' and @letter='213' and @page='109' and @line='22'] -opus/marginalien/marginal[@index='5487' and @letter='213' and @page='109' and @line='23'] -opus/marginalien/marginal[@index='5488' and @letter='213' and @page='109' and @line='23'] -opus/marginalien/marginal[@index='5489' and @letter='213' and @page='109' and @line='24'] -opus/marginalien/marginal[@index='548' and @letter='35' and @page='88' and @line='23'] -opus/marginalien/marginal[@index='5490' and @letter='213' and @page='109' and @line='26'] -opus/marginalien/marginal[@index='5491' and @letter='213' and @page='109' and @line='28'] -opus/marginalien/marginal[@index='5492' and @letter='213' and @page='109' and @line='29'] -opus/marginalien/marginal[@index='5493' and @letter='213' and @page='110' and @line='2'] -opus/marginalien/marginal[@index='5494' and @letter='213' and @page='110' and @line='4'] -opus/marginalien/marginal[@index='5495' and @letter='213' and @page='110' and @line='6'] -opus/marginalien/marginal[@index='5496' and @letter='213' and @page='110' and @line='7'] -opus/marginalien/marginal[@index='5497' and @letter='213' and @page='110' and @line='10'] -opus/marginalien/marginal[@index='5498' and @letter='213' and @page='110' and @line='12'] -opus/marginalien/marginal[@index='5499' and @letter='213' and @page='110' and @line='12'] -opus/marginalien/marginal[@index='549' and @letter='35' and @page='88' and @line='28'] -opus/marginalien/marginal[@index='5500' and @letter='213' and @page='110' and @line='14'] -opus/marginalien/marginal[@index='5501' and @letter='213' and @page='110' and @line='15'] -opus/marginalien/marginal[@index='5502' and @letter='213' and @page='110' and @line='16'] -opus/marginalien/marginal[@index='5503' and @letter='213' and @page='110' and @line='17'] -opus/marginalien/marginal[@index='5504' and @letter='213' and @page='110' and @line='19'] -opus/marginalien/marginal[@index='5505' and @letter='213' and @page='110' and @line='21'] -opus/marginalien/marginal[@index='5506' and @letter='213' and @page='110' and @line='22'] -opus/marginalien/marginal[@index='5507' and @letter='213' and @page='110' and @line='23'] -opus/marginalien/marginal[@index='5508' and @letter='213' and @page='110' and @line='24'] -opus/marginalien/marginal[@index='5509' and @letter='213' and @page='110' and @line='25'] -opus/marginalien/marginal[@index='550' and @letter='35' and @page='89' and @line='7'] -opus/marginalien/marginal[@index='5510' and @letter='213' and @page='110' and @line='28'] -opus/marginalien/marginal[@index='5511' and @letter='213' and @page='110' and @line='34'] -opus/marginalien/marginal[@index='5512' and @letter='214' and @page='111' and @line='8'] -opus/marginalien/marginal[@index='5513' and @letter='214' and @page='111' and @line='11'] -opus/marginalien/marginal[@index='5514' and @letter='214' and @page='111' and @line='13'] -opus/marginalien/marginal[@index='5516' and @letter='214' and @page='111' and @line='25'] -opus/marginalien/marginal[@index='5517' and @letter='214' and @page='111' and @line='32'] -opus/marginalien/marginal[@index='5518' and @letter='214' and @page='111' and @line='34'] -opus/marginalien/marginal[@index='5519' and @letter='214' and @page='112' and @line='1'] -opus/marginalien/marginal[@index='551' and @letter='35' and @page='89' and @line='7'] -opus/marginalien/marginal[@index='5520' and @letter='214' and @page='112' and @line='4'] -opus/marginalien/marginal[@index='5522' and @letter='214' and @page='112' and @line='10'] -opus/marginalien/marginal[@index='5523' and @letter='214' and @page='112' and @line='16'] -opus/marginalien/marginal[@index='5524' and @letter='214' and @page='112' and @line='29'] -opus/marginalien/marginal[@index='5525' and @letter='214' and @page='113' and @line='1'] -opus/marginalien/marginal[@index='5526' and @letter='214' and @page='113' and @line='6'] -opus/marginalien/marginal[@index='5527' and @letter='214' and @page='113' and @line='8'] -opus/marginalien/marginal[@index='5528' and @letter='214' and @page='113' and @line='13'] -opus/marginalien/marginal[@index='5529' and @letter='214' and @page='113' and @line='14'] -opus/marginalien/marginal[@index='552' and @letter='35' and @page='89' and @line='18'] -opus/marginalien/marginal[@index='5530' and @letter='214' and @page='113' and @line='17'] -opus/marginalien/marginal[@index='5531' and @letter='214' and @page='113' and @line='22'] -opus/marginalien/marginal[@index='5532' and @letter='214' and @page='113' and @line='32'] -opus/marginalien/marginal[@index='5533' and @letter='214' and @page='113' and @line='36'] -opus/marginalien/marginal[@index='5534' and @letter='214' and @page='114' and @line='13'] -opus/marginalien/marginal[@index='5535' and @letter='214' and @page='114' and @line='31'] -opus/marginalien/marginal[@index='5537' and @letter='214' and @page='114' and @line='31'] -opus/marginalien/marginal[@index='5538' and @letter='214' and @page='114' and @line='32'] -opus/marginalien/marginal[@index='5539' and @letter='214' and @page='114' and @line='34'] -opus/marginalien/marginal[@index='553' and @letter='35' and @page='89' and @line='26'] -opus/marginalien/marginal[@index='5540' and @letter='214' and @page='114' and @line='36'] -opus/marginalien/marginal[@index='5541' and @letter='214' and @page='115' and @line='1'] -opus/marginalien/marginal[@index='5542' and @letter='214' and @page='115' and @line='3'] -opus/marginalien/marginal[@index='5543' and @letter='214' and @page='115' and @line='9'] -opus/marginalien/marginal[@index='5544' and @letter='214' and @page='115' and @line='10'] -opus/marginalien/marginal[@index='5546' and @letter='214' and @page='115' and @line='18'] -opus/marginalien/marginal[@index='5547' and @letter='214' and @page='115' and @line='24'] -opus/marginalien/marginal[@index='5548' and @letter='214' and @page='115' and @line='26'] -opus/marginalien/marginal[@index='5549' and @letter='214' and @page='115' and @line='31'] -opus/marginalien/marginal[@index='554' and @letter='35' and @page='89' and @line='30'] -opus/marginalien/marginal[@index='5550' and @letter='214' and @page='115' and @line='31'] -opus/marginalien/marginal[@index='5551' and @letter='214' and @page='115' and @line='35'] -opus/marginalien/marginal[@index='5552' and @letter='214' and @page='116' and @line='1'] -opus/marginalien/marginal[@index='5553' and @letter='214' and @page='116' and @line='2'] -opus/marginalien/marginal[@index='5554' and @letter='214' and @page='116' and @line='4'] -opus/marginalien/marginal[@index='5555' and @letter='214' and @page='116' and @line='4'] -opus/marginalien/marginal[@index='5556' and @letter='214' and @page='116' and @line='9'] -opus/marginalien/marginal[@index='5557' and @letter='214' and @page='116' and @line='19'] -opus/marginalien/marginal[@index='5558' and @letter='215' and @page='116' and @line='27'] -opus/marginalien/marginal[@index='5559' and @letter='215' and @page='116' and @line='31'] -opus/marginalien/marginal[@index='555' and @letter='35' and @page='90' and @line='6'] -opus/marginalien/marginal[@index='5560' and @letter='215' and @page='116' and @line='31'] -opus/marginalien/marginal[@index='5561' and @letter='215' and @page='116' and @line='31'] -opus/marginalien/marginal[@index='5562' and @letter='215' and @page='116' and @line='31'] -opus/marginalien/marginal[@index='5563' and @letter='215' and @page='116' and @line='32'] -opus/marginalien/marginal[@index='5565' and @letter='215' and @page='117' and @line='1'] -opus/marginalien/marginal[@index='5566' and @letter='215' and @page='117' and @line='3'] -opus/marginalien/marginal[@index='5567' and @letter='215' and @page='117' and @line='3'] -opus/marginalien/marginal[@index='5568' and @letter='215' and @page='117' and @line='6'] -opus/marginalien/marginal[@index='5569' and @letter='215' and @page='117' and @line='9'] -opus/marginalien/marginal[@index='556' and @letter='35' and @page='90' and @line='14'] -opus/marginalien/marginal[@index='5570' and @letter='215' and @page='117' and @line='9'] -opus/marginalien/marginal[@index='5571' and @letter='215' and @page='117' and @line='10'] -opus/marginalien/marginal[@index='5572' and @letter='215' and @page='117' and @line='10'] -opus/marginalien/marginal[@index='5573' and @letter='215' and @page='117' and @line='14'] -opus/marginalien/marginal[@index='5574' and @letter='215' and @page='117' and @line='18'] -opus/marginalien/marginal[@index='5575' and @letter='215' and @page='117' and @line='29'] -opus/marginalien/marginal[@index='5576' and @letter='215' and @page='117' and @line='31'] -opus/marginalien/marginal[@index='5577' and @letter='215' and @page='117' and @line='31'] -opus/marginalien/marginal[@index='5578' and @letter='215' and @page='117' and @line='36'] -opus/marginalien/marginal[@index='5579' and @letter='215' and @page='118' and @line='2'] -opus/marginalien/marginal[@index='557' and @letter='35' and @page='90' and @line='19'] -opus/marginalien/marginal[@index='5580' and @letter='215' and @page='118' and @line='3'] -opus/marginalien/marginal[@index='5582' and @letter='215' and @page='118' and @line='7'] -opus/marginalien/marginal[@index='5583' and @letter='215' and @page='118' and @line='8'] -opus/marginalien/marginal[@index='5584' and @letter='215' and @page='118' and @line='8'] -opus/marginalien/marginal[@index='5585' and @letter='215' and @page='118' and @line='9'] -opus/marginalien/marginal[@index='5587' and @letter='215' and @page='118' and @line='12'] -opus/marginalien/marginal[@index='5588' and @letter='215' and @page='118' and @line='13'] -opus/marginalien/marginal[@index='5589' and @letter='215' and @page='118' and @line='13'] -opus/marginalien/marginal[@index='558' and @letter='35' and @page='90' and @line='21'] -opus/marginalien/marginal[@index='5590' and @letter='215' and @page='118' and @line='15'] -opus/marginalien/marginal[@index='5591' and @letter='215' and @page='118' and @line='16'] -opus/marginalien/marginal[@index='5593' and @letter='215' and @page='118' and @line='24'] -opus/marginalien/marginal[@index='5595' and @letter='215' and @page='118' and @line='27'] -opus/marginalien/marginal[@index='5596' and @letter='215' and @page='118' and @line='27'] -opus/marginalien/marginal[@index='5597' and @letter='215' and @page='118' and @line='33'] -opus/marginalien/marginal[@index='5598' and @letter='215' and @page='118' and @line='36'] -opus/marginalien/marginal[@index='5599' and @letter='215' and @page='118' and @line='36'] -opus/marginalien/marginal[@index='559' and @letter='35' and @page='90' and @line='23'] -opus/marginalien/marginal[@index='5600' and @letter='215' and @page='119' and @line='4'] -opus/marginalien/marginal[@index='5601' and @letter='215' and @page='119' and @line='4'] -opus/marginalien/marginal[@index='5602' and @letter='215' and @page='119' and @line='5'] -opus/marginalien/marginal[@index='5603' and @letter='215' and @page='119' and @line='5'] -opus/marginalien/marginal[@index='5604' and @letter='215' and @page='119' and @line='7'] -opus/marginalien/marginal[@index='5605' and @letter='215' and @page='119' and @line='8'] -opus/marginalien/marginal[@index='5606' and @letter='215' and @page='119' and @line='13'] -opus/marginalien/marginal[@index='5607' and @letter='215' and @page='119' and @line='15'] -opus/marginalien/marginal[@index='5608' and @letter='215' and @page='119' and @line='16'] -opus/marginalien/marginal[@index='5609' and @letter='215' and @page='119' and @line='20'] -opus/marginalien/marginal[@index='560' and @letter='35' and @page='90' and @line='24'] -opus/marginalien/marginal[@index='5610' and @letter='215' and @page='119' and @line='21'] -opus/marginalien/marginal[@index='5611' and @letter='215' and @page='119' and @line='24'] -opus/marginalien/marginal[@index='5612' and @letter='215' and @page='119' and @line='29'] -opus/marginalien/marginal[@index='5613' and @letter='215' and @page='119' and @line='30'] -opus/marginalien/marginal[@index='5614' and @letter='215' and @page='119' and @line='32'] -opus/marginalien/marginal[@index='5615' and @letter='215' and @page='119' and @line='34'] -opus/marginalien/marginal[@index='5616' and @letter='215' and @page='119' and @line='34'] -opus/marginalien/marginal[@index='5617' and @letter='215' and @page='120' and @line='1'] -opus/marginalien/marginal[@index='5618' and @letter='215' and @page='120' and @line='4'] -opus/marginalien/marginal[@index='5619' and @letter='215' and @page='120' and @line='4'] -opus/marginalien/marginal[@index='561' and @letter='35' and @page='90' and @line='24'] -opus/marginalien/marginal[@index='5620' and @letter='215' and @page='120' and @line='5'] -opus/marginalien/marginal[@index='5621' and @letter='215' and @page='120' and @line='6'] -opus/marginalien/marginal[@index='5622' and @letter='215' and @page='120' and @line='6'] -opus/marginalien/marginal[@index='5623' and @letter='215' and @page='120' and @line='7'] -opus/marginalien/marginal[@index='5624' and @letter='215' and @page='120' and @line='7'] -opus/marginalien/marginal[@index='5625' and @letter='215' and @page='120' and @line='9'] -opus/marginalien/marginal[@index='5626' and @letter='215' and @page='120' and @line='10'] -opus/marginalien/marginal[@index='5627' and @letter='215' and @page='120' and @line='11'] -opus/marginalien/marginal[@index='5628' and @letter='215' and @page='120' and @line='13'] -opus/marginalien/marginal[@index='5629' and @letter='215' and @page='120' and @line='17'] -opus/marginalien/marginal[@index='562' and @letter='35' and @page='90' and @line='33'] -opus/marginalien/marginal[@index='5630' and @letter='215' and @page='120' and @line='18'] -opus/marginalien/marginal[@index='5631' and @letter='215' and @page='120' and @line='22'] -opus/marginalien/marginal[@index='5632' and @letter='215' and @page='120' and @line='22'] -opus/marginalien/marginal[@index='5633' and @letter='215' and @page='120' and @line='24'] -opus/marginalien/marginal[@index='5634' and @letter='215' and @page='120' and @line='26'] -opus/marginalien/marginal[@index='5635' and @letter='215' and @page='120' and @line='26'] -opus/marginalien/marginal[@index='5636' and @letter='215' and @page='120' and @line='27'] -opus/marginalien/marginal[@index='5637' and @letter='215' and @page='120' and @line='27'] -opus/marginalien/marginal[@index='5638' and @letter='215' and @page='120' and @line='27'] -opus/marginalien/marginal[@index='5639' and @letter='215' and @page='120' and @line='28'] -opus/marginalien/marginal[@index='563' and @letter='35' and @page='90' and @line='34'] -opus/marginalien/marginal[@index='5640' and @letter='215' and @page='120' and @line='29'] -opus/marginalien/marginal[@index='5641' and @letter='215' and @page='120' and @line='29'] -opus/marginalien/marginal[@index='5642' and @letter='215' and @page='120' and @line='29'] -opus/marginalien/marginal[@index='5643' and @letter='215' and @page='120' and @line='31'] -opus/marginalien/marginal[@index='5644' and @letter='215' and @page='120' and @line='31'] -opus/marginalien/marginal[@index='5645' and @letter='215' and @page='120' and @line='32'] -opus/marginalien/marginal[@index='5646' and @letter='215' and @page='120' and @line='32'] -opus/marginalien/marginal[@index='5647' and @letter='215' and @page='120' and @line='34'] -opus/marginalien/marginal[@index='5648' and @letter='215' and @page='120' and @line='34'] -opus/marginalien/marginal[@index='564' and @letter='35' and @page='91' and @line='1'] -opus/marginalien/marginal[@index='5650' and @letter='215' and @page='121' and @line='7'] -opus/marginalien/marginal[@index='5651' and @letter='215' and @page='121' and @line='17'] -opus/marginalien/marginal[@index='5652' and @letter='215' and @page='121' and @line='18'] -opus/marginalien/marginal[@index='5653' and @letter='216' and @page='121' and @line='25'] -opus/marginalien/marginal[@index='5654' and @letter='216' and @page='121' and @line='26'] -opus/marginalien/marginal[@index='5655' and @letter='216' and @page='121' and @line='28'] -opus/marginalien/marginal[@index='5656' and @letter='216' and @page='121' and @line='29'] -opus/marginalien/marginal[@index='5657' and @letter='216' and @page='121' and @line='29'] -opus/marginalien/marginal[@index='5658' and @letter='216' and @page='121' and @line='30'] -opus/marginalien/marginal[@index='5659' and @letter='216' and @page='121' and @line='31'] -opus/marginalien/marginal[@index='565' and @letter='35' and @page='91' and @line='3'] -opus/marginalien/marginal[@index='5660' and @letter='216' and @page='121' and @line='31'] -opus/marginalien/marginal[@index='5661' and @letter='216' and @page='121' and @line='32'] -opus/marginalien/marginal[@index='5662' and @letter='216' and @page='121' and @line='33'] -opus/marginalien/marginal[@index='5663' and @letter='216' and @page='121' and @line='34'] -opus/marginalien/marginal[@index='5664' and @letter='216' and @page='122' and @line='2'] -opus/marginalien/marginal[@index='5665' and @letter='216' and @page='122' and @line='3'] -opus/marginalien/marginal[@index='5666' and @letter='216' and @page='122' and @line='8'] -opus/marginalien/marginal[@index='5667' and @letter='216' and @page='122' and @line='11'] -opus/marginalien/marginal[@index='5668' and @letter='216' and @page='122' and @line='12'] -opus/marginalien/marginal[@index='5669' and @letter='216' and @page='122' and @line='15'] -opus/marginalien/marginal[@index='566' and @letter='35' and @page='91' and @line='6'] -opus/marginalien/marginal[@index='5670' and @letter='216' and @page='122' and @line='18'] -opus/marginalien/marginal[@index='5671' and @letter='216' and @page='122' and @line='20'] -opus/marginalien/marginal[@index='5672' and @letter='216' and @page='122' and @line='32'] -opus/marginalien/marginal[@index='5673' and @letter='216' and @page='122' and @line='33'] -opus/marginalien/marginal[@index='5674' and @letter='216' and @page='122' and @line='34'] -opus/marginalien/marginal[@index='5675' and @letter='216' and @page='122' and @line='35'] -opus/marginalien/marginal[@index='5676' and @letter='216' and @page='122' and @line='37'] -opus/marginalien/marginal[@index='5677' and @letter='216' and @page='123' and @line='2'] -opus/marginalien/marginal[@index='5678' and @letter='216' and @page='123' and @line='3'] -opus/marginalien/marginal[@index='5679' and @letter='216' and @page='123' and @line='3'] -opus/marginalien/marginal[@index='567' and @letter='35' and @page='91' and @line='6'] -opus/marginalien/marginal[@index='5681' and @letter='216' and @page='123' and @line='4'] -opus/marginalien/marginal[@index='5682' and @letter='216' and @page='123' and @line='5'] -opus/marginalien/marginal[@index='5683' and @letter='216' and @page='123' and @line='5'] -opus/marginalien/marginal[@index='5684' and @letter='216' and @page='123' and @line='6'] -opus/marginalien/marginal[@index='5685' and @letter='216' and @page='123' and @line='8'] -opus/marginalien/marginal[@index='5686' and @letter='216' and @page='123' and @line='10'] -opus/marginalien/marginal[@index='5687' and @letter='216' and @page='123' and @line='11'] -opus/marginalien/marginal[@index='5688' and @letter='216' and @page='123' and @line='13'] -opus/marginalien/marginal[@index='5689' and @letter='216' and @page='123' and @line='13'] -opus/marginalien/marginal[@index='568' and @letter='35' and @page='91' and @line='8'] -opus/marginalien/marginal[@index='5690' and @letter='216' and @page='123' and @line='14'] -opus/marginalien/marginal[@index='5691' and @letter='216' and @page='123' and @line='18'] -opus/marginalien/marginal[@index='5692' and @letter='216' and @page='123' and @line='18'] -opus/marginalien/marginal[@index='5693' and @letter='216' and @page='123' and @line='19'] -opus/marginalien/marginal[@index='5694' and @letter='217' and @page='123' and @line='26'] -opus/marginalien/marginal[@index='5695' and @letter='217' and @page='123' and @line='28'] -opus/marginalien/marginal[@index='5696' and @letter='217' and @page='123' and @line='30'] -opus/marginalien/marginal[@index='5697' and @letter='217' and @page='123' and @line='32'] -opus/marginalien/marginal[@index='5698' and @letter='217' and @page='124' and @line='3'] -opus/marginalien/marginal[@index='5699' and @letter='217' and @page='124' and @line='4'] -opus/marginalien/marginal[@index='569' and @letter='35' and @page='91' and @line='11'] -opus/marginalien/marginal[@index='56' and @letter='3' and @page='8' and @line='17'] -opus/marginalien/marginal[@index='5700' and @letter='217' and @page='124' and @line='7'] -opus/marginalien/marginal[@index='5701' and @letter='217' and @page='124' and @line='16'] -opus/marginalien/marginal[@index='5702' and @letter='217' and @page='124' and @line='16'] -opus/marginalien/marginal[@index='5703' and @letter='217' and @page='124' and @line='17'] -opus/marginalien/marginal[@index='5704' and @letter='217' and @page='124' and @line='17'] -opus/marginalien/marginal[@index='5705' and @letter='217' and @page='124' and @line='18'] -opus/marginalien/marginal[@index='5706' and @letter='217' and @page='124' and @line='19'] -opus/marginalien/marginal[@index='5707' and @letter='217' and @page='124' and @line='20'] -opus/marginalien/marginal[@index='5709' and @letter='217' and @page='124' and @line='21'] -opus/marginalien/marginal[@index='570' and @letter='36' and @page='91' and @line='22'] -opus/marginalien/marginal[@index='5710' and @letter='217' and @page='124' and @line='22'] -opus/marginalien/marginal[@index='5711' and @letter='217' and @page='124' and @line='22'] -opus/marginalien/marginal[@index='5712' and @letter='217' and @page='124' and @line='25'] -opus/marginalien/marginal[@index='5713' and @letter='217' and @page='124' and @line='26'] -opus/marginalien/marginal[@index='5714' and @letter='217' and @page='124' and @line='28'] -opus/marginalien/marginal[@index='5716' and @letter='217' and @page='124' and @line='32'] -opus/marginalien/marginal[@index='5717' and @letter='217' and @page='124' and @line='34'] -opus/marginalien/marginal[@index='5718' and @letter='217' and @page='125' and @line='1'] -opus/marginalien/marginal[@index='5719' and @letter='217' and @page='125' and @line='2'] -opus/marginalien/marginal[@index='571' and @letter='36' and @page='91' and @line='25'] -opus/marginalien/marginal[@index='5720' and @letter='217' and @page='125' and @line='4'] -opus/marginalien/marginal[@index='5721' and @letter='217' and @page='125' and @line='4'] -opus/marginalien/marginal[@index='5722' and @letter='217' and @page='125' and @line='8'] -opus/marginalien/marginal[@index='5723' and @letter='217' and @page='125' and @line='13'] -opus/marginalien/marginal[@index='5724' and @letter='217' and @page='125' and @line='14'] -opus/marginalien/marginal[@index='5726' and @letter='217' and @page='125' and @line='17'] -opus/marginalien/marginal[@index='5727' and @letter='217' and @page='125' and @line='18'] -opus/marginalien/marginal[@index='5728' and @letter='217' and @page='125' and @line='20'] -opus/marginalien/marginal[@index='5729' and @letter='217' and @page='125' and @line='20'] -opus/marginalien/marginal[@index='572' and @letter='36' and @page='91' and @line='28'] -opus/marginalien/marginal[@index='5730' and @letter='217' and @page='125' and @line='21'] -opus/marginalien/marginal[@index='5731' and @letter='217' and @page='125' and @line='22'] -opus/marginalien/marginal[@index='5732' and @letter='217' and @page='125' and @line='23'] -opus/marginalien/marginal[@index='5733' and @letter='217' and @page='125' and @line='24'] -opus/marginalien/marginal[@index='5734' and @letter='217' and @page='125' and @line='25'] -opus/marginalien/marginal[@index='5735' and @letter='217' and @page='125' and @line='25'] -opus/marginalien/marginal[@index='5736' and @letter='217' and @page='125' and @line='26'] -opus/marginalien/marginal[@index='5737' and @letter='217' and @page='125' and @line='28'] -opus/marginalien/marginal[@index='5738' and @letter='217' and @page='125' and @line='28'] -opus/marginalien/marginal[@index='5739' and @letter='217' and @page='125' and @line='31'] -opus/marginalien/marginal[@index='573' and @letter='36' and @page='91' and @line='31'] -opus/marginalien/marginal[@index='5740' and @letter='217' and @page='125' and @line='33'] -opus/marginalien/marginal[@index='5741' and @letter='217' and @page='125' and @line='36'] -opus/marginalien/marginal[@index='5742' and @letter='217' and @page='126' and @line='1'] -opus/marginalien/marginal[@index='5743' and @letter='217' and @page='126' and @line='2'] -opus/marginalien/marginal[@index='5744' and @letter='217' and @page='126' and @line='4'] -opus/marginalien/marginal[@index='5745' and @letter='218' and @page='126' and @line='10'] -opus/marginalien/marginal[@index='5746' and @letter='218' and @page='126' and @line='19'] -opus/marginalien/marginal[@index='5747' and @letter='218' and @page='127' and @line='3'] -opus/marginalien/marginal[@index='5748' and @letter='218' and @page='127' and @line='17'] -opus/marginalien/marginal[@index='5749' and @letter='219' and @page='127' and @line='20'] -opus/marginalien/marginal[@index='574' and @letter='36' and @page='91' and @line='32'] -opus/marginalien/marginal[@index='5750' and @letter='219' and @page='127' and @line='25'] -opus/marginalien/marginal[@index='5751' and @letter='219' and @page='127' and @line='27'] -opus/marginalien/marginal[@index='5752' and @letter='219' and @page='127' and @line='30'] -opus/marginalien/marginal[@index='5753' and @letter='219' and @page='128' and @line='5'] -opus/marginalien/marginal[@index='5754' and @letter='219' and @page='128' and @line='7'] -opus/marginalien/marginal[@index='5755' and @letter='219' and @page='128' and @line='8'] -opus/marginalien/marginal[@index='5756' and @letter='219' and @page='128' and @line='9'] -opus/marginalien/marginal[@index='5757' and @letter='219' and @page='128' and @line='10'] -opus/marginalien/marginal[@index='5758' and @letter='219' and @page='128' and @line='12'] -opus/marginalien/marginal[@index='575' and @letter='36' and @page='92' and @line='5'] -opus/marginalien/marginal[@index='5760' and @letter='219' and @page='128' and @line='15'] -opus/marginalien/marginal[@index='5761' and @letter='219' and @page='128' and @line='18'] -opus/marginalien/marginal[@index='5762' and @letter='219' and @page='128' and @line='18'] -opus/marginalien/marginal[@index='5763' and @letter='219' and @page='128' and @line='20'] -opus/marginalien/marginal[@index='5764' and @letter='219' and @page='128' and @line='23'] -opus/marginalien/marginal[@index='5765' and @letter='219' and @page='128' and @line='25'] -opus/marginalien/marginal[@index='5766' and @letter='219' and @page='128' and @line='28'] -opus/marginalien/marginal[@index='5767' and @letter='219' and @page='128' and @line='29'] -opus/marginalien/marginal[@index='5768' and @letter='219' and @page='128' and @line='29'] -opus/marginalien/marginal[@index='5769' and @letter='219' and @page='128' and @line='30'] -opus/marginalien/marginal[@index='576' and @letter='36' and @page='92' and @line='8'] -opus/marginalien/marginal[@index='5771' and @letter='219' and @page='128' and @line='31'] -opus/marginalien/marginal[@index='5773' and @letter='219' and @page='128' and @line='33'] -opus/marginalien/marginal[@index='5775' and @letter='219' and @page='128' and @line='34'] -opus/marginalien/marginal[@index='5776' and @letter='219' and @page='128' and @line='34'] -opus/marginalien/marginal[@index='5777' and @letter='219' and @page='128' and @line='34'] -opus/marginalien/marginal[@index='5778' and @letter='219' and @page='128' and @line='36'] -opus/marginalien/marginal[@index='5779' and @letter='219' and @page='128' and @line='37'] -opus/marginalien/marginal[@index='577' and @letter='36' and @page='92' and @line='19'] -opus/marginalien/marginal[@index='5780' and @letter='219' and @page='129' and @line='3'] -opus/marginalien/marginal[@index='5781' and @letter='219' and @page='129' and @line='3'] -opus/marginalien/marginal[@index='5782' and @letter='219' and @page='129' and @line='18'] -opus/marginalien/marginal[@index='5783' and @letter='219' and @page='129' and @line='23'] -opus/marginalien/marginal[@index='5784' and @letter='219' and @page='129' and @line='25'] -opus/marginalien/marginal[@index='5785' and @letter='219' and @page='129' and @line='27'] -opus/marginalien/marginal[@index='5786' and @letter='219' and @page='129' and @line='28'] -opus/marginalien/marginal[@index='5787' and @letter='219' and @page='129' and @line='29'] -opus/marginalien/marginal[@index='5788' and @letter='219' and @page='129' and @line='31'] -opus/marginalien/marginal[@index='5789' and @letter='219' and @page='129' and @line='31'] -opus/marginalien/marginal[@index='578' and @letter='36' and @page='92' and @line='20'] -opus/marginalien/marginal[@index='5790' and @letter='219' and @page='129' and @line='33'] -opus/marginalien/marginal[@index='5791' and @letter='219' and @page='129' and @line='33'] -opus/marginalien/marginal[@index='5792' and @letter='219' and @page='129' and @line='35'] -opus/marginalien/marginal[@index='5793' and @letter='219' and @page='130' and @line='2'] -opus/marginalien/marginal[@index='5794' and @letter='219' and @page='130' and @line='5'] -opus/marginalien/marginal[@index='5795' and @letter='219' and @page='130' and @line='6'] -opus/marginalien/marginal[@index='5796' and @letter='219' and @page='130' and @line='11'] -opus/marginalien/marginal[@index='5797' and @letter='220' and @page='130' and @line='22'] -opus/marginalien/marginal[@index='5798' and @letter='220' and @page='130' and @line='24'] -opus/marginalien/marginal[@index='57' and @letter='3' and @page='8' and @line='21'] -opus/marginalien/marginal[@index='5800' and @letter='220' and @page='130' and @line='27'] -opus/marginalien/marginal[@index='5801' and @letter='220' and @page='130' and @line='29'] -opus/marginalien/marginal[@index='5802' and @letter='220' and @page='130' and @line='31'] -opus/marginalien/marginal[@index='5803' and @letter='220' and @page='130' and @line='32'] -opus/marginalien/marginal[@index='5804' and @letter='220' and @page='130' and @line='34'] -opus/marginalien/marginal[@index='5805' and @letter='220' and @page='131' and @line='9'] -opus/marginalien/marginal[@index='5806' and @letter='220' and @page='131' and @line='9'] -opus/marginalien/marginal[@index='5807' and @letter='220' and @page='131' and @line='10'] -opus/marginalien/marginal[@index='5808' and @letter='220' and @page='131' and @line='14'] -opus/marginalien/marginal[@index='5809' and @letter='220' and @page='131' and @line='16'] -opus/marginalien/marginal[@index='580' and @letter='36' and @page='92' and @line='20'] -opus/marginalien/marginal[@index='5810' and @letter='220' and @page='131' and @line='21'] -opus/marginalien/marginal[@index='5811' and @letter='220' and @page='131' and @line='30'] -opus/marginalien/marginal[@index='5812' and @letter='220' and @page='132' and @line='1'] -opus/marginalien/marginal[@index='5813' and @letter='220' and @page='132' and @line='10'] -opus/marginalien/marginal[@index='5814' and @letter='220' and @page='132' and @line='18'] -opus/marginalien/marginal[@index='5815' and @letter='220' and @page='132' and @line='19'] -opus/marginalien/marginal[@index='5816' and @letter='220' and @page='132' and @line='20'] -opus/marginalien/marginal[@index='5817' and @letter='220' and @page='132' and @line='24'] -opus/marginalien/marginal[@index='5818' and @letter='220' and @page='132' and @line='30'] -opus/marginalien/marginal[@index='5819' and @letter='220' and @page='132' and @line='32'] -opus/marginalien/marginal[@index='581' and @letter='36' and @page='92' and @line='20'] -opus/marginalien/marginal[@index='5821' and @letter='220' and @page='132' and @line='35'] -opus/marginalien/marginal[@index='5822' and @letter='220' and @page='132' and @line='36'] -opus/marginalien/marginal[@index='5823' and @letter='220' and @page='132' and @line='36'] -opus/marginalien/marginal[@index='5824' and @letter='220' and @page='133' and @line='2'] -opus/marginalien/marginal[@index='5825' and @letter='220' and @page='133' and @line='5'] -opus/marginalien/marginal[@index='5826' and @letter='220' and @page='133' and @line='10'] -opus/marginalien/marginal[@index='5827' and @letter='220' and @page='133' and @line='14'] -opus/marginalien/marginal[@index='5828' and @letter='220' and @page='133' and @line='16'] -opus/marginalien/marginal[@index='5829' and @letter='220' and @page='133' and @line='16'] -opus/marginalien/marginal[@index='582' and @letter='36' and @page='92' and @line='21'] -opus/marginalien/marginal[@index='5830' and @letter='220' and @page='133' and @line='16'] -opus/marginalien/marginal[@index='5831' and @letter='220' and @page='133' and @line='18'] -opus/marginalien/marginal[@index='5832' and @letter='220' and @page='133' and @line='20'] -opus/marginalien/marginal[@index='5833' and @letter='220' and @page='133' and @line='23'] -opus/marginalien/marginal[@index='5834' and @letter='220' and @page='133' and @line='24'] -opus/marginalien/marginal[@index='5836' and @letter='220' and @page='133' and @line='25'] -opus/marginalien/marginal[@index='5837' and @letter='220' and @page='133' and @line='30'] -opus/marginalien/marginal[@index='5838' and @letter='220' and @page='133' and @line='31'] -opus/marginalien/marginal[@index='5839' and @letter='220' and @page='133' and @line='32'] -opus/marginalien/marginal[@index='583' and @letter='36' and @page='92' and @line='30'] -opus/marginalien/marginal[@index='5840' and @letter='220' and @page='133' and @line='33'] -opus/marginalien/marginal[@index='5842' and @letter='220' and @page='133' and @line='34'] -opus/marginalien/marginal[@index='5844' and @letter='220' and @page='133' and @line='34'] -opus/marginalien/marginal[@index='5846' and @letter='220' and @page='133' and @line='35'] -opus/marginalien/marginal[@index='5847' and @letter='220' and @page='133' and @line='36'] -opus/marginalien/marginal[@index='5848' and @letter='220' and @page='133' and @line='36'] -opus/marginalien/marginal[@index='5849' and @letter='220' and @page='134' and @line='1'] -opus/marginalien/marginal[@index='584' and @letter='36' and @page='92' and @line='31'] -opus/marginalien/marginal[@index='5850' and @letter='220' and @page='134' and @line='1'] -opus/marginalien/marginal[@index='5851' and @letter='220' and @page='134' and @line='3'] -opus/marginalien/marginal[@index='5853' and @letter='220' and @page='134' and @line='5'] -opus/marginalien/marginal[@index='5854' and @letter='220' and @page='134' and @line='5'] -opus/marginalien/marginal[@index='5856' and @letter='221' and @page='134' and @line='15'] -opus/marginalien/marginal[@index='5858' and @letter='221' and @page='134' and @line='18'] -opus/marginalien/marginal[@index='5859' and @letter='221' and @page='134' and @line='18'] -opus/marginalien/marginal[@index='585' and @letter='36' and @page='93' and @line='8'] -opus/marginalien/marginal[@index='5860' and @letter='221' and @page='134' and @line='19'] -opus/marginalien/marginal[@index='5861' and @letter='221' and @page='134' and @line='20'] -opus/marginalien/marginal[@index='5862' and @letter='221' and @page='134' and @line='25'] -opus/marginalien/marginal[@index='5863' and @letter='221' and @page='134' and @line='26'] -opus/marginalien/marginal[@index='5864' and @letter='221' and @page='134' and @line='32'] -opus/marginalien/marginal[@index='5865' and @letter='221' and @page='134' and @line='32'] -opus/marginalien/marginal[@index='5866' and @letter='221' and @page='134' and @line='33'] -opus/marginalien/marginal[@index='5867' and @letter='221' and @page='135' and @line='2'] -opus/marginalien/marginal[@index='5868' and @letter='221' and @page='135' and @line='4'] -opus/marginalien/marginal[@index='5869' and @letter='221' and @page='135' and @line='4'] -opus/marginalien/marginal[@index='586' and @letter='36' and @page='93' and @line='18'] -opus/marginalien/marginal[@index='5870' and @letter='221' and @page='135' and @line='5'] -opus/marginalien/marginal[@index='5871' and @letter='221' and @page='135' and @line='6'] -opus/marginalien/marginal[@index='5872' and @letter='221' and @page='135' and @line='6'] -opus/marginalien/marginal[@index='5873' and @letter='221' and @page='135' and @line='9'] -opus/marginalien/marginal[@index='5875' and @letter='221' and @page='135' and @line='13'] -opus/marginalien/marginal[@index='5876' and @letter='221' and @page='135' and @line='18'] -opus/marginalien/marginal[@index='5877' and @letter='221' and @page='135' and @line='23'] -opus/marginalien/marginal[@index='5878' and @letter='221' and @page='135' and @line='25'] -opus/marginalien/marginal[@index='5879' and @letter='221' and @page='135' and @line='31'] -opus/marginalien/marginal[@index='587' and @letter='36' and @page='93' and @line='19'] -opus/marginalien/marginal[@index='5880' and @letter='221' and @page='135' and @line='33'] -opus/marginalien/marginal[@index='5881' and @letter='221' and @page='135' and @line='34'] -opus/marginalien/marginal[@index='5882' and @letter='221' and @page='135' and @line='35'] -opus/marginalien/marginal[@index='5883' and @letter='221' and @page='135' and @line='36'] -opus/marginalien/marginal[@index='5884' and @letter='222' and @page='136' and @line='5'] -opus/marginalien/marginal[@index='5885' and @letter='222' and @page='136' and @line='12'] -opus/marginalien/marginal[@index='5886' and @letter='222' and @page='136' and @line='17'] -opus/marginalien/marginal[@index='5887' and @letter='222' and @page='137' and @line='2'] -opus/marginalien/marginal[@index='5888' and @letter='222' and @page='137' and @line='3'] -opus/marginalien/marginal[@index='5889' and @letter='222' and @page='137' and @line='6'] -opus/marginalien/marginal[@index='588' and @letter='36' and @page='93' and @line='19'] -opus/marginalien/marginal[@index='5890' and @letter='222' and @page='137' and @line='7'] -opus/marginalien/marginal[@index='5891' and @letter='222' and @page='137' and @line='8'] -opus/marginalien/marginal[@index='5892' and @letter='222' and @page='137' and @line='11'] -opus/marginalien/marginal[@index='5893' and @letter='222' and @page='137' and @line='12'] -opus/marginalien/marginal[@index='5894' and @letter='222' and @page='137' and @line='15'] -opus/marginalien/marginal[@index='5895' and @letter='222' and @page='137' and @line='17'] -opus/marginalien/marginal[@index='5897' and @letter='222' and @page='137' and @line='26'] -opus/marginalien/marginal[@index='5898' and @letter='222' and @page='137' and @line='26'] -opus/marginalien/marginal[@index='5899' and @letter='222' and @page='137' and @line='31'] -opus/marginalien/marginal[@index='589' and @letter='38' and @page='94' and @line='4'] -opus/marginalien/marginal[@index='58' and @letter='3' and @page='8' and @line='24'] -opus/marginalien/marginal[@index='5900' and @letter='222' and @page='137' and @line='35'] -opus/marginalien/marginal[@index='5901' and @letter='222' and @page='138' and @line='3'] -opus/marginalien/marginal[@index='5903' and @letter='222' and @page='139' and @line='2'] -opus/marginalien/marginal[@index='5904' and @letter='222' and @page='139' and @line='3'] -opus/marginalien/marginal[@index='5906' and @letter='222' and @page='139' and @line='5'] -opus/marginalien/marginal[@index='5907' and @letter='222' and @page='139' and @line='7'] -opus/marginalien/marginal[@index='5908' and @letter='222' and @page='139' and @line='8'] -opus/marginalien/marginal[@index='5909' and @letter='222' and @page='139' and @line='11'] -opus/marginalien/marginal[@index='590' and @letter='38' and @page='94' and @line='6'] -opus/marginalien/marginal[@index='5910' and @letter='222' and @page='139' and @line='18'] -opus/marginalien/marginal[@index='5911' and @letter='222' and @page='139' and @line='21'] -opus/marginalien/marginal[@index='5912' and @letter='222' and @page='139' and @line='25'] -opus/marginalien/marginal[@index='5913' and @letter='222' and @page='139' and @line='34'] -opus/marginalien/marginal[@index='5914' and @letter='222' and @page='139' and @line='35'] -opus/marginalien/marginal[@index='5915' and @letter='222' and @page='139' and @line='37'] -opus/marginalien/marginal[@index='5917' and @letter='222' and @page='140' and @line='3'] -opus/marginalien/marginal[@index='5918' and @letter='222' and @page='140' and @line='4'] -opus/marginalien/marginal[@index='5919' and @letter='222' and @page='140' and @line='5'] -opus/marginalien/marginal[@index='591' and @letter='38' and @page='94' and @line='10'] -opus/marginalien/marginal[@index='5921' and @letter='222' and @page='140' and @line='13'] -opus/marginalien/marginal[@index='5923' and @letter='222' and @page='140' and @line='15'] -opus/marginalien/marginal[@index='5924' and @letter='223' and @page='140' and @line='17'] -opus/marginalien/marginal[@index='5925' and @letter='223' and @page='140' and @line='18'] -opus/marginalien/marginal[@index='5926' and @letter='223' and @page='140' and @line='19'] -opus/marginalien/marginal[@index='5927' and @letter='223' and @page='140' and @line='21'] -opus/marginalien/marginal[@index='5928' and @letter='223' and @page='140' and @line='26'] -opus/marginalien/marginal[@index='5929' and @letter='223' and @page='141' and @line='9'] -opus/marginalien/marginal[@index='592' and @letter='38' and @page='94' and @line='22'] -opus/marginalien/marginal[@index='5930' and @letter='223' and @page='141' and @line='14'] -opus/marginalien/marginal[@index='5931' and @letter='223' and @page='141' and @line='17'] -opus/marginalien/marginal[@index='5933' and @letter='223' and @page='141' and @line='24'] -opus/marginalien/marginal[@index='5934' and @letter='223' and @page='141' and @line='25'] -opus/marginalien/marginal[@index='5935' and @letter='223' and @page='141' and @line='25'] -opus/marginalien/marginal[@index='5936' and @letter='223' and @page='141' and @line='26'] -opus/marginalien/marginal[@index='5937' and @letter='223' and @page='141' and @line='26'] -opus/marginalien/marginal[@index='5938' and @letter='223' and @page='141' and @line='30'] -opus/marginalien/marginal[@index='5939' and @letter='223' and @page='141' and @line='31'] -opus/marginalien/marginal[@index='593' and @letter='38' and @page='94' and @line='24'] -opus/marginalien/marginal[@index='5940' and @letter='223' and @page='141' and @line='32'] -opus/marginalien/marginal[@index='5941' and @letter='223' and @page='141' and @line='35'] -opus/marginalien/marginal[@index='5942' and @letter='223' and @page='141' and @line='37'] -opus/marginalien/marginal[@index='5943' and @letter='223' and @page='142' and @line='2'] -opus/marginalien/marginal[@index='5944' and @letter='223' and @page='142' and @line='7'] -opus/marginalien/marginal[@index='5945' and @letter='223' and @page='142' and @line='10'] -opus/marginalien/marginal[@index='5946' and @letter='223' and @page='142' and @line='12'] -opus/marginalien/marginal[@index='5947' and @letter='224' and @page='142' and @line='15'] -opus/marginalien/marginal[@index='5948' and @letter='224' and @page='142' and @line='18'] -opus/marginalien/marginal[@index='5949' and @letter='224' and @page='142' and @line='22'] -opus/marginalien/marginal[@index='594' and @letter='38' and @page='94' and @line='31'] -opus/marginalien/marginal[@index='5950' and @letter='224' and @page='142' and @line='24'] -opus/marginalien/marginal[@index='5951' and @letter='224' and @page='142' and @line='28'] -opus/marginalien/marginal[@index='5952' and @letter='224' and @page='142' and @line='29'] -opus/marginalien/marginal[@index='5953' and @letter='224' and @page='142' and @line='30'] -opus/marginalien/marginal[@index='5954' and @letter='224' and @page='142' and @line='31'] -opus/marginalien/marginal[@index='5955' and @letter='224' and @page='142' and @line='33'] -opus/marginalien/marginal[@index='5956' and @letter='224' and @page='142' and @line='34'] -opus/marginalien/marginal[@index='5957' and @letter='224' and @page='143' and @line='3'] -opus/marginalien/marginal[@index='5958' and @letter='224' and @page='143' and @line='4'] -opus/marginalien/marginal[@index='5959' and @letter='224' and @page='143' and @line='6'] -opus/marginalien/marginal[@index='595' and @letter='38' and @page='95' and @line='11'] -opus/marginalien/marginal[@index='5960' and @letter='224' and @page='143' and @line='11'] -opus/marginalien/marginal[@index='5961' and @letter='224' and @page='143' and @line='16'] -opus/marginalien/marginal[@index='5962' and @letter='224' and @page='143' and @line='18'] -opus/marginalien/marginal[@index='5963' and @letter='224' and @page='143' and @line='19'] -opus/marginalien/marginal[@index='5964' and @letter='224' and @page='143' and @line='22'] -opus/marginalien/marginal[@index='5965' and @letter='224' and @page='143' and @line='30'] -opus/marginalien/marginal[@index='5966' and @letter='224' and @page='143' and @line='33'] -opus/marginalien/marginal[@index='5967' and @letter='224' and @page='143' and @line='33'] -opus/marginalien/marginal[@index='5968' and @letter='225' and @page='144' and @line='8'] -opus/marginalien/marginal[@index='5969' and @letter='225' and @page='144' and @line='10'] -opus/marginalien/marginal[@index='596' and @letter='38' and @page='95' and @line='12'] -opus/marginalien/marginal[@index='5970' and @letter='225' and @page='144' and @line='15'] -opus/marginalien/marginal[@index='5971' and @letter='225' and @page='144' and @line='16'] -opus/marginalien/marginal[@index='5972' and @letter='225' and @page='144' and @line='24'] -opus/marginalien/marginal[@index='5973' and @letter='225' and @page='144' and @line='29'] -opus/marginalien/marginal[@index='5975' and @letter='225' and @page='144' and @line='33'] -opus/marginalien/marginal[@index='5976' and @letter='225' and @page='144' and @line='34'] -opus/marginalien/marginal[@index='5977' and @letter='225' and @page='145' and @line='1'] -opus/marginalien/marginal[@index='5978' and @letter='225' and @page='145' and @line='1'] -opus/marginalien/marginal[@index='5979' and @letter='225' and @page='145' and @line='3'] -opus/marginalien/marginal[@index='597' and @letter='38' and @page='95' and @line='24'] -opus/marginalien/marginal[@index='5980' and @letter='225' and @page='145' and @line='3'] -opus/marginalien/marginal[@index='5981' and @letter='225' and @page='145' and @line='6'] -opus/marginalien/marginal[@index='5982' and @letter='225' and @page='145' and @line='7'] -opus/marginalien/marginal[@index='5983' and @letter='225' and @page='145' and @line='7'] -opus/marginalien/marginal[@index='5984' and @letter='225' and @page='145' and @line='11'] -opus/marginalien/marginal[@index='5985' and @letter='225' and @page='145' and @line='12'] -opus/marginalien/marginal[@index='5986' and @letter='225' and @page='145' and @line='13'] -opus/marginalien/marginal[@index='5987' and @letter='225' and @page='145' and @line='17'] -opus/marginalien/marginal[@index='5988' and @letter='225' and @page='145' and @line='19'] -opus/marginalien/marginal[@index='5989' and @letter='225' and @page='145' and @line='24'] -opus/marginalien/marginal[@index='598' and @letter='38' and @page='95' and @line='29'] -opus/marginalien/marginal[@index='5991' and @letter='225' and @page='145' and @line='26'] -opus/marginalien/marginal[@index='5992' and @letter='225' and @page='145' and @line='26'] -opus/marginalien/marginal[@index='5993' and @letter='225' and @page='145' and @line='27'] -opus/marginalien/marginal[@index='5994' and @letter='225' and @page='145' and @line='28'] -opus/marginalien/marginal[@index='5996' and @letter='225' and @page='145' and @line='30'] -opus/marginalien/marginal[@index='5997' and @letter='225' and @page='145' and @line='35'] -opus/marginalien/marginal[@index='5998' and @letter='225' and @page='145' and @line='35'] -opus/marginalien/marginal[@index='5999' and @letter='225' and @page='146' and @line='1'] -opus/marginalien/marginal[@index='599' and @letter='38' and @page='96' and @line='1'] -opus/marginalien/marginal[@index='59' and @letter='3' and @page='8' and @line='32'] -opus/marginalien/marginal[@index='5' and @letter='1' and @page='2' and @line='12'] -opus/marginalien/marginal[@index='6000' and @letter='225' and @page='146' and @line='1'] -opus/marginalien/marginal[@index='6001' and @letter='225' and @page='146' and @line='2'] -opus/marginalien/marginal[@index='6002' and @letter='225' and @page='146' and @line='5'] -opus/marginalien/marginal[@index='6003' and @letter='225' and @page='146' and @line='6'] -opus/marginalien/marginal[@index='6004' and @letter='225' and @page='146' and @line='8'] -opus/marginalien/marginal[@index='6005' and @letter='225' and @page='146' and @line='18'] -opus/marginalien/marginal[@index='6006' and @letter='225' and @page='146' and @line='25'] -opus/marginalien/marginal[@index='6007' and @letter='226' and @page='146' and @line='29'] -opus/marginalien/marginal[@index='6008' and @letter='226' and @page='147' and @line='1'] -opus/marginalien/marginal[@index='6009' and @letter='226' and @page='147' and @line='2'] -opus/marginalien/marginal[@index='600' and @letter='38' and @page='96' and @line='5'] -opus/marginalien/marginal[@index='6010' and @letter='226' and @page='147' and @line='9'] -opus/marginalien/marginal[@index='6011' and @letter='226' and @page='147' and @line='12'] -opus/marginalien/marginal[@index='6012' and @letter='226' and @page='147' and @line='14'] -opus/marginalien/marginal[@index='6013' and @letter='226' and @page='147' and @line='15'] -opus/marginalien/marginal[@index='6014' and @letter='226' and @page='147' and @line='15'] -opus/marginalien/marginal[@index='6015' and @letter='226' and @page='147' and @line='16'] -opus/marginalien/marginal[@index='6016' and @letter='226' and @page='147' and @line='18'] -opus/marginalien/marginal[@index='6017' and @letter='226' and @page='147' and @line='20'] -opus/marginalien/marginal[@index='6018' and @letter='226' and @page='147' and @line='23'] -opus/marginalien/marginal[@index='6019' and @letter='226' and @page='147' and @line='24'] -opus/marginalien/marginal[@index='601' and @letter='38' and @page='96' and @line='11'] -opus/marginalien/marginal[@index='6020' and @letter='226' and @page='147' and @line='25'] -opus/marginalien/marginal[@index='6021' and @letter='226' and @page='147' and @line='26'] -opus/marginalien/marginal[@index='6022' and @letter='226' and @page='147' and @line='27'] -opus/marginalien/marginal[@index='6023' and @letter='226' and @page='147' and @line='29'] -opus/marginalien/marginal[@index='6025' and @letter='226' and @page='148' and @line='3'] -opus/marginalien/marginal[@index='6026' and @letter='226' and @page='148' and @line='4'] -opus/marginalien/marginal[@index='6027' and @letter='226' and @page='148' and @line='4'] -opus/marginalien/marginal[@index='6028' and @letter='226' and @page='148' and @line='7'] -opus/marginalien/marginal[@index='6029' and @letter='226' and @page='148' and @line='9'] -opus/marginalien/marginal[@index='602' and @letter='39' and @page='96' and @line='24'] -opus/marginalien/marginal[@index='6030' and @letter='226' and @page='148' and @line='10'] -opus/marginalien/marginal[@index='6031' and @letter='226' and @page='148' and @line='12'] -opus/marginalien/marginal[@index='6032' and @letter='226' and @page='148' and @line='17'] -opus/marginalien/marginal[@index='6033' and @letter='226' and @page='148' and @line='18'] -opus/marginalien/marginal[@index='6034' and @letter='226' and @page='148' and @line='18'] -opus/marginalien/marginal[@index='6035' and @letter='226' and @page='148' and @line='20'] -opus/marginalien/marginal[@index='6036' and @letter='226' and @page='148' and @line='22'] -opus/marginalien/marginal[@index='6037' and @letter='226' and @page='148' and @line='22'] -opus/marginalien/marginal[@index='6038' and @letter='226' and @page='148' and @line='23'] -opus/marginalien/marginal[@index='6039' and @letter='226' and @page='148' and @line='27'] -opus/marginalien/marginal[@index='603' and @letter='39' and @page='96' and @line='26'] -opus/marginalien/marginal[@index='6040' and @letter='226' and @page='148' and @line='32'] -opus/marginalien/marginal[@index='6041' and @letter='226' and @page='148' and @line='32'] -opus/marginalien/marginal[@index='6042' and @letter='226' and @page='148' and @line='33'] -opus/marginalien/marginal[@index='6043' and @letter='226' and @page='148' and @line='35'] -opus/marginalien/marginal[@index='6045' and @letter='226' and @page='148' and @line='36'] -opus/marginalien/marginal[@index='6046' and @letter='226' and @page='148' and @line='37'] -opus/marginalien/marginal[@index='6047' and @letter='226' and @page='149' and @line='2'] -opus/marginalien/marginal[@index='6048' and @letter='226' and @page='149' and @line='4'] -opus/marginalien/marginal[@index='6049' and @letter='226' and @page='149' and @line='4'] -opus/marginalien/marginal[@index='604' and @letter='39' and @page='96' and @line='32'] -opus/marginalien/marginal[@index='6050' and @letter='226' and @page='149' and @line='5'] -opus/marginalien/marginal[@index='6052' and @letter='226' and @page='149' and @line='6'] -opus/marginalien/marginal[@index='6053' and @letter='226' and @page='149' and @line='10'] -opus/marginalien/marginal[@index='6054' and @letter='226' and @page='149' and @line='12'] -opus/marginalien/marginal[@index='6055' and @letter='226' and @page='149' and @line='12'] -opus/marginalien/marginal[@index='6056' and @letter='226' and @page='149' and @line='13'] -opus/marginalien/marginal[@index='6057' and @letter='226' and @page='149' and @line='16'] -opus/marginalien/marginal[@index='6058' and @letter='226' and @page='149' and @line='19'] -opus/marginalien/marginal[@index='6059' and @letter='226' and @page='149' and @line='23'] -opus/marginalien/marginal[@index='605' and @letter='39' and @page='97' and @line='15'] -opus/marginalien/marginal[@index='6060' and @letter='226' and @page='149' and @line='23'] -opus/marginalien/marginal[@index='6061' and @letter='226' and @page='149' and @line='24'] -opus/marginalien/marginal[@index='6062' and @letter='226' and @page='149' and @line='24'] -opus/marginalien/marginal[@index='6064' and @letter='227' and @page='149' and @line='28'] -opus/marginalien/marginal[@index='6065' and @letter='227' and @page='149' and @line='28'] -opus/marginalien/marginal[@index='6066' and @letter='227' and @page='149' and @line='29'] -opus/marginalien/marginal[@index='6067' and @letter='227' and @page='149' and @line='32'] -opus/marginalien/marginal[@index='6068' and @letter='227' and @page='149' and @line='32'] -opus/marginalien/marginal[@index='6069' and @letter='227' and @page='149' and @line='33'] -opus/marginalien/marginal[@index='606' and @letter='39' and @page='97' and @line='29'] -opus/marginalien/marginal[@index='6070' and @letter='227' and @page='149' and @line='34'] -opus/marginalien/marginal[@index='6071' and @letter='227' and @page='150' and @line='2'] -opus/marginalien/marginal[@index='6072' and @letter='227' and @page='150' and @line='3'] -opus/marginalien/marginal[@index='6073' and @letter='227' and @page='150' and @line='4'] -opus/marginalien/marginal[@index='6074' and @letter='227' and @page='150' and @line='27'] -opus/marginalien/marginal[@index='6075' and @letter='227' and @page='150' and @line='27'] -opus/marginalien/marginal[@index='6077' and @letter='227' and @page='150' and @line='31'] -opus/marginalien/marginal[@index='6078' and @letter='227' and @page='150' and @line='32'] -opus/marginalien/marginal[@index='6079' and @letter='227' and @page='150' and @line='32'] -opus/marginalien/marginal[@index='607' and @letter='39' and @page='98' and @line='5'] -opus/marginalien/marginal[@index='6080' and @letter='227' and @page='150' and @line='35'] -opus/marginalien/marginal[@index='6081' and @letter='227' and @page='150' and @line='36'] -opus/marginalien/marginal[@index='6082' and @letter='227' and @page='150' and @line='37'] -opus/marginalien/marginal[@index='6083' and @letter='227' and @page='151' and @line='3'] -opus/marginalien/marginal[@index='6084' and @letter='227' and @page='151' and @line='5'] -opus/marginalien/marginal[@index='6085' and @letter='227' and @page='151' and @line='17'] -opus/marginalien/marginal[@index='6086' and @letter='227' and @page='151' and @line='23'] -opus/marginalien/marginal[@index='6087' and @letter='227' and @page='151' and @line='25'] -opus/marginalien/marginal[@index='6088' and @letter='227' and @page='151' and @line='28'] -opus/marginalien/marginal[@index='6089' and @letter='227' and @page='151' and @line='30'] -opus/marginalien/marginal[@index='608' and @letter='39' and @page='98' and @line='9'] -opus/marginalien/marginal[@index='6090' and @letter='227' and @page='151' and @line='37'] -opus/marginalien/marginal[@index='6092' and @letter='227' and @page='152' and @line='3'] -opus/marginalien/marginal[@index='6093' and @letter='227' and @page='152' and @line='9'] -opus/marginalien/marginal[@index='6094' and @letter='227' and @page='152' and @line='9'] -opus/marginalien/marginal[@index='6095' and @letter='227' and @page='152' and @line='10'] -opus/marginalien/marginal[@index='6096' and @letter='227' and @page='152' and @line='12'] -opus/marginalien/marginal[@index='6097' and @letter='227' and @page='152' and @line='13'] -opus/marginalien/marginal[@index='6098' and @letter='227' and @page='152' and @line='15'] -opus/marginalien/marginal[@index='6099' and @letter='227' and @page='152' and @line='16'] -opus/marginalien/marginal[@index='609' and @letter='39' and @page='98' and @line='10'] -opus/marginalien/marginal[@index='60' and @letter='3' and @page='8' and @line='35'] -opus/marginalien/marginal[@index='6102' and @letter='227' and @page='152' and @line='22'] -opus/marginalien/marginal[@index='6103' and @letter='227' and @page='152' and @line='31'] -opus/marginalien/marginal[@index='6104' and @letter='227' and @page='152' and @line='32'] -opus/marginalien/marginal[@index='6105' and @letter='227' and @page='152' and @line='32'] -opus/marginalien/marginal[@index='6106' and @letter='227' and @page='152' and @line='34'] -opus/marginalien/marginal[@index='6107' and @letter='227' and @page='152' and @line='37'] -opus/marginalien/marginal[@index='6108' and @letter='227' and @page='153' and @line='2'] -opus/marginalien/marginal[@index='6109' and @letter='227' and @page='153' and @line='7'] -opus/marginalien/marginal[@index='610' and @letter='39' and @page='98' and @line='25'] -opus/marginalien/marginal[@index='6110' and @letter='227' and @page='153' and @line='7'] -opus/marginalien/marginal[@index='6111' and @letter='227' and @page='153' and @line='10'] -opus/marginalien/marginal[@index='6112' and @letter='227' and @page='153' and @line='15'] -opus/marginalien/marginal[@index='6113' and @letter='227' and @page='153' and @line='16'] -opus/marginalien/marginal[@index='6114' and @letter='227' and @page='153' and @line='21'] -opus/marginalien/marginal[@index='6115' and @letter='227' and @page='153' and @line='25'] -opus/marginalien/marginal[@index='6117' and @letter='227' and @page='153' and @line='33'] -opus/marginalien/marginal[@index='6119' and @letter='227' and @page='154' and @line='2'] -opus/marginalien/marginal[@index='611' and @letter='39' and @page='98' and @line='34'] -opus/marginalien/marginal[@index='6120' and @letter='227' and @page='154' and @line='12'] -opus/marginalien/marginal[@index='6121' and @letter='227' and @page='154' and @line='15'] -opus/marginalien/marginal[@index='6122' and @letter='227' and @page='154' and @line='17'] -opus/marginalien/marginal[@index='6123' and @letter='227' and @page='154' and @line='19'] -opus/marginalien/marginal[@index='6124' and @letter='227' and @page='154' and @line='21'] -opus/marginalien/marginal[@index='6125' and @letter='227' and @page='154' and @line='23'] -opus/marginalien/marginal[@index='6126' and @letter='227' and @page='154' and @line='24'] -opus/marginalien/marginal[@index='6127' and @letter='227' and @page='154' and @line='24'] -opus/marginalien/marginal[@index='6128' and @letter='227' and @page='154' and @line='28'] -opus/marginalien/marginal[@index='6129' and @letter='227' and @page='154' and @line='31'] -opus/marginalien/marginal[@index='612' and @letter='39' and @page='99' and @line='8'] -opus/marginalien/marginal[@index='6130' and @letter='227' and @page='154' and @line='33'] -opus/marginalien/marginal[@index='6131' and @letter='227' and @page='154' and @line='34'] -opus/marginalien/marginal[@index='6133' and @letter='227' and @page='154' and @line='35'] -opus/marginalien/marginal[@index='6134' and @letter='227' and @page='154' and @line='36'] -opus/marginalien/marginal[@index='6135' and @letter='227' and @page='155' and @line='2'] -opus/marginalien/marginal[@index='6136' and @letter='227' and @page='155' and @line='4'] -opus/marginalien/marginal[@index='6137' and @letter='227' and @page='155' and @line='10'] -opus/marginalien/marginal[@index='6138' and @letter='227' and @page='155' and @line='10'] -opus/marginalien/marginal[@index='6139' and @letter='227' and @page='155' and @line='12'] -opus/marginalien/marginal[@index='613' and @letter='39' and @page='99' and @line='15'] -opus/marginalien/marginal[@index='6141' and @letter='227' and @page='155' and @line='19'] -opus/marginalien/marginal[@index='6142' and @letter='227' and @page='155' and @line='22'] -opus/marginalien/marginal[@index='6143' and @letter='227' and @page='155' and @line='23'] -opus/marginalien/marginal[@index='6144' and @letter='227' and @page='155' and @line='24'] -opus/marginalien/marginal[@index='6145' and @letter='228' and @page='155' and @line='27'] -opus/marginalien/marginal[@index='6146' and @letter='228' and @page='155' and @line='28'] -opus/marginalien/marginal[@index='6147' and @letter='228' and @page='156' and @line='1'] -opus/marginalien/marginal[@index='6148' and @letter='228' and @page='156' and @line='2'] -opus/marginalien/marginal[@index='6149' and @letter='228' and @page='156' and @line='5'] -opus/marginalien/marginal[@index='614' and @letter='39' and @page='99' and @line='29'] -opus/marginalien/marginal[@index='6150' and @letter='228' and @page='156' and @line='6'] -opus/marginalien/marginal[@index='6151' and @letter='228' and @page='156' and @line='8'] -opus/marginalien/marginal[@index='6152' and @letter='228' and @page='156' and @line='8'] -opus/marginalien/marginal[@index='6153' and @letter='228' and @page='156' and @line='8'] -opus/marginalien/marginal[@index='6154' and @letter='228' and @page='156' and @line='9'] -opus/marginalien/marginal[@index='6155' and @letter='228' and @page='156' and @line='13'] -opus/marginalien/marginal[@index='6156' and @letter='228' and @page='156' and @line='14'] -opus/marginalien/marginal[@index='6157' and @letter='228' and @page='156' and @line='18'] -opus/marginalien/marginal[@index='6158' and @letter='228' and @page='156' and @line='24'] -opus/marginalien/marginal[@index='6159' and @letter='228' and @page='156' and @line='26'] -opus/marginalien/marginal[@index='615' and @letter='40' and @page='100' and @line='10'] -opus/marginalien/marginal[@index='6160' and @letter='228' and @page='156' and @line='28'] -opus/marginalien/marginal[@index='6161' and @letter='228' and @page='156' and @line='31'] -opus/marginalien/marginal[@index='6162' and @letter='228' and @page='156' and @line='32'] -opus/marginalien/marginal[@index='6163' and @letter='228' and @page='156' and @line='36'] -opus/marginalien/marginal[@index='6164' and @letter='228' and @page='157' and @line='3'] -opus/marginalien/marginal[@index='6165' and @letter='228' and @page='157' and @line='7'] -opus/marginalien/marginal[@index='6166' and @letter='228' and @page='157' and @line='8'] -opus/marginalien/marginal[@index='6167' and @letter='228' and @page='157' and @line='12'] -opus/marginalien/marginal[@index='6168' and @letter='228' and @page='157' and @line='20'] -opus/marginalien/marginal[@index='6169' and @letter='228' and @page='157' and @line='20'] -opus/marginalien/marginal[@index='616' and @letter='40' and @page='100' and @line='15'] -opus/marginalien/marginal[@index='6170' and @letter='228' and @page='157' and @line='21'] -opus/marginalien/marginal[@index='6171' and @letter='228' and @page='157' and @line='23'] -opus/marginalien/marginal[@index='6173' and @letter='228' and @page='157' and @line='27'] -opus/marginalien/marginal[@index='6174' and @letter='228' and @page='157' and @line='32'] -opus/marginalien/marginal[@index='6175' and @letter='229' and @page='158' and @line='3'] -opus/marginalien/marginal[@index='6176' and @letter='229' and @page='158' and @line='5'] -opus/marginalien/marginal[@index='6177' and @letter='229' and @page='158' and @line='7'] -opus/marginalien/marginal[@index='6178' and @letter='229' and @page='158' and @line='9'] -opus/marginalien/marginal[@index='6179' and @letter='229' and @page='158' and @line='17'] -opus/marginalien/marginal[@index='617' and @letter='40' and @page='100' and @line='25'] -opus/marginalien/marginal[@index='6180' and @letter='229' and @page='158' and @line='22'] -opus/marginalien/marginal[@index='6181' and @letter='229' and @page='158' and @line='31'] -opus/marginalien/marginal[@index='6182' and @letter='229' and @page='158' and @line='34'] -opus/marginalien/marginal[@index='6184' and @letter='230' and @page='159' and @line='5'] -opus/marginalien/marginal[@index='6185' and @letter='230' and @page='159' and @line='7'] -opus/marginalien/marginal[@index='6186' and @letter='230' and @page='159' and @line='8'] -opus/marginalien/marginal[@index='6187' and @letter='230' and @page='159' and @line='10'] -opus/marginalien/marginal[@index='6188' and @letter='230' and @page='159' and @line='15'] -opus/marginalien/marginal[@index='6191' and @letter='230' and @page='160' and @line='16'] -opus/marginalien/marginal[@index='6192' and @letter='230' and @page='160' and @line='16'] -opus/marginalien/marginal[@index='6193' and @letter='230' and @page='160' and @line='17'] -opus/marginalien/marginal[@index='6194' and @letter='230' and @page='160' and @line='18'] -opus/marginalien/marginal[@index='6195' and @letter='230' and @page='160' and @line='20'] -opus/marginalien/marginal[@index='6196' and @letter='230' and @page='160' and @line='21'] -opus/marginalien/marginal[@index='6197' and @letter='230' and @page='160' and @line='29'] -opus/marginalien/marginal[@index='6198' and @letter='231' and @page='160' and @line='33'] -opus/marginalien/marginal[@index='6199' and @letter='231' and @page='160' and @line='33'] -opus/marginalien/marginal[@index='619' and @letter='40' and @page='100' and @line='29'] -opus/marginalien/marginal[@index='61' and @letter='3' and @page='8' and @line='36'] -opus/marginalien/marginal[@index='6200' and @letter='231' and @page='160' and @line='34'] -opus/marginalien/marginal[@index='6201' and @letter='231' and @page='161' and @line='2'] -opus/marginalien/marginal[@index='6202' and @letter='231' and @page='161' and @line='13'] -opus/marginalien/marginal[@index='6203' and @letter='231' and @page='161' and @line='14'] -opus/marginalien/marginal[@index='6204' and @letter='231' and @page='161' and @line='16'] -opus/marginalien/marginal[@index='6205' and @letter='231' and @page='161' and @line='17'] -opus/marginalien/marginal[@index='6206' and @letter='231' and @page='161' and @line='20'] -opus/marginalien/marginal[@index='6207' and @letter='231' and @page='161' and @line='24'] -opus/marginalien/marginal[@index='6208' and @letter='231' and @page='161' and @line='25'] -opus/marginalien/marginal[@index='6209' and @letter='231' and @page='161' and @line='26'] -opus/marginalien/marginal[@index='620' and @letter='40' and @page='100' and @line='29'] -opus/marginalien/marginal[@index='6210' and @letter='231' and @page='161' and @line='29'] -opus/marginalien/marginal[@index='6211' and @letter='231' and @page='161' and @line='30'] -opus/marginalien/marginal[@index='6212' and @letter='231' and @page='161' and @line='31'] -opus/marginalien/marginal[@index='6213' and @letter='231' and @page='161' and @line='35'] -opus/marginalien/marginal[@index='6214' and @letter='231' and @page='161' and @line='35'] -opus/marginalien/marginal[@index='6215' and @letter='231' and @page='162' and @line='1'] -opus/marginalien/marginal[@index='6216' and @letter='231' and @page='162' and @line='2'] -opus/marginalien/marginal[@index='6217' and @letter='231' and @page='162' and @line='3'] -opus/marginalien/marginal[@index='6218' and @letter='231' and @page='162' and @line='3'] -opus/marginalien/marginal[@index='6219' and @letter='231' and @page='162' and @line='4'] -opus/marginalien/marginal[@index='621' and @letter='40' and @page='101' and @line='7'] -opus/marginalien/marginal[@index='6220' and @letter='231' and @page='162' and @line='4'] -opus/marginalien/marginal[@index='6221' and @letter='231' and @page='162' and @line='5'] -opus/marginalien/marginal[@index='6222' and @letter='231' and @page='162' and @line='7'] -opus/marginalien/marginal[@index='6223' and @letter='231' and @page='162' and @line='9'] -opus/marginalien/marginal[@index='6224' and @letter='231' and @page='162' and @line='9'] -opus/marginalien/marginal[@index='6225' and @letter='231' and @page='162' and @line='10'] -opus/marginalien/marginal[@index='6226' and @letter='231' and @page='162' and @line='11'] -opus/marginalien/marginal[@index='6227' and @letter='231' and @page='162' and @line='12'] -opus/marginalien/marginal[@index='6228' and @letter='231' and @page='162' and @line='13'] -opus/marginalien/marginal[@index='6229' and @letter='231' and @page='162' and @line='14'] -opus/marginalien/marginal[@index='622' and @letter='40' and @page='101' and @line='7'] -opus/marginalien/marginal[@index='6230' and @letter='231' and @page='162' and @line='16'] -opus/marginalien/marginal[@index='6231' and @letter='231' and @page='162' and @line='19'] -opus/marginalien/marginal[@index='6232' and @letter='231' and @page='162' and @line='20'] -opus/marginalien/marginal[@index='6233' and @letter='231' and @page='162' and @line='21'] -opus/marginalien/marginal[@index='6234' and @letter='231' and @page='162' and @line='23'] -opus/marginalien/marginal[@index='6235' and @letter='231' and @page='162' and @line='24'] -opus/marginalien/marginal[@index='6237' and @letter='231' and @page='162' and @line='25'] -opus/marginalien/marginal[@index='6238' and @letter='231' and @page='162' and @line='26'] -opus/marginalien/marginal[@index='6239' and @letter='231' and @page='162' and @line='27'] -opus/marginalien/marginal[@index='623' and @letter='40' and @page='101' and @line='15'] -opus/marginalien/marginal[@index='6240' and @letter='231' and @page='162' and @line='31'] -opus/marginalien/marginal[@index='6242' and @letter='232' and @page='163' and @line='4'] -opus/marginalien/marginal[@index='6243' and @letter='232' and @page='163' and @line='6'] -opus/marginalien/marginal[@index='6244' and @letter='232' and @page='163' and @line='7'] -opus/marginalien/marginal[@index='6245' and @letter='232' and @page='163' and @line='9'] -opus/marginalien/marginal[@index='6246' and @letter='232' and @page='163' and @line='10'] -opus/marginalien/marginal[@index='6247' and @letter='232' and @page='163' and @line='13'] -opus/marginalien/marginal[@index='6248' and @letter='232' and @page='163' and @line='14'] -opus/marginalien/marginal[@index='6249' and @letter='232' and @page='163' and @line='19'] -opus/marginalien/marginal[@index='624' and @letter='40' and @page='101' and @line='20'] -opus/marginalien/marginal[@index='6250' and @letter='232' and @page='163' and @line='19'] -opus/marginalien/marginal[@index='6251' and @letter='232' and @page='163' and @line='20'] -opus/marginalien/marginal[@index='6252' and @letter='232' and @page='163' and @line='21'] -opus/marginalien/marginal[@index='6253' and @letter='232' and @page='163' and @line='22'] -opus/marginalien/marginal[@index='6254' and @letter='232' and @page='163' and @line='24'] -opus/marginalien/marginal[@index='6255' and @letter='232' and @page='163' and @line='26'] -opus/marginalien/marginal[@index='6257' and @letter='232' and @page='163' and @line='30'] -opus/marginalien/marginal[@index='6258' and @letter='232' and @page='163' and @line='36'] -opus/marginalien/marginal[@index='6259' and @letter='232' and @page='164' and @line='2'] -opus/marginalien/marginal[@index='625' and @letter='40' and @page='101' and @line='31'] -opus/marginalien/marginal[@index='6260' and @letter='232' and @page='164' and @line='7'] -opus/marginalien/marginal[@index='6261' and @letter='232' and @page='164' and @line='8'] -opus/marginalien/marginal[@index='6262' and @letter='232' and @page='164' and @line='9'] -opus/marginalien/marginal[@index='6263' and @letter='232' and @page='164' and @line='10'] -opus/marginalien/marginal[@index='6265' and @letter='232' and @page='164' and @line='12'] -opus/marginalien/marginal[@index='6266' and @letter='232' and @page='164' and @line='19'] -opus/marginalien/marginal[@index='6267' and @letter='232' and @page='164' and @line='19'] -opus/marginalien/marginal[@index='6269' and @letter='232' and @page='164' and @line='24'] -opus/marginalien/marginal[@index='626' and @letter='40' and @page='101' and @line='33'] -opus/marginalien/marginal[@index='6270' and @letter='232' and @page='164' and @line='27'] -opus/marginalien/marginal[@index='6271' and @letter='232' and @page='164' and @line='28'] -opus/marginalien/marginal[@index='6272' and @letter='232' and @page='164' and @line='30'] -opus/marginalien/marginal[@index='6273' and @letter='232' and @page='164' and @line='31'] -opus/marginalien/marginal[@index='6274' and @letter='232' and @page='164' and @line='35'] -opus/marginalien/marginal[@index='6275' and @letter='232' and @page='164' and @line='35'] -opus/marginalien/marginal[@index='6276' and @letter='232' and @page='165' and @line='1'] -opus/marginalien/marginal[@index='6277' and @letter='232' and @page='165' and @line='3'] -opus/marginalien/marginal[@index='6278' and @letter='232' and @page='165' and @line='8'] -opus/marginalien/marginal[@index='6279' and @letter='232' and @page='165' and @line='10'] -opus/marginalien/marginal[@index='627' and @letter='40' and @page='101' and @line='35'] -opus/marginalien/marginal[@index='6280' and @letter='232' and @page='165' and @line='14'] -opus/marginalien/marginal[@index='6281' and @letter='232' and @page='165' and @line='14'] -opus/marginalien/marginal[@index='6282' and @letter='232' and @page='165' and @line='18'] -opus/marginalien/marginal[@index='6283' and @letter='232' and @page='165' and @line='20'] -opus/marginalien/marginal[@index='6284' and @letter='232' and @page='165' and @line='25'] -opus/marginalien/marginal[@index='6286' and @letter='232' and @page='165' and @line='28'] -opus/marginalien/marginal[@index='6287' and @letter='232' and @page='165' and @line='31'] -opus/marginalien/marginal[@index='6288' and @letter='232' and @page='165' and @line='31'] -opus/marginalien/marginal[@index='6289' and @letter='232' and @page='165' and @line='33'] -opus/marginalien/marginal[@index='628' and @letter='40' and @page='101' and @line='37'] -opus/marginalien/marginal[@index='6290' and @letter='232' and @page='165' and @line='33'] -opus/marginalien/marginal[@index='6291' and @letter='233' and @page='166' and @line='5'] -opus/marginalien/marginal[@index='6292' and @letter='233' and @page='166' and @line='13'] -opus/marginalien/marginal[@index='6293' and @letter='233' and @page='166' and @line='14'] -opus/marginalien/marginal[@index='6294' and @letter='233' and @page='166' and @line='16'] -opus/marginalien/marginal[@index='6295' and @letter='233' and @page='166' and @line='16'] -opus/marginalien/marginal[@index='6296' and @letter='233' and @page='166' and @line='16'] -opus/marginalien/marginal[@index='6297' and @letter='233' and @page='166' and @line='17'] -opus/marginalien/marginal[@index='6299' and @letter='233' and @page='166' and @line='18'] -opus/marginalien/marginal[@index='629' and @letter='40' and @page='101' and @line='37'] -opus/marginalien/marginal[@index='62' and @letter='4' and @page='10' and @line='19'] -opus/marginalien/marginal[@index='6300' and @letter='233' and @page='166' and @line='18'] -opus/marginalien/marginal[@index='6301' and @letter='233' and @page='166' and @line='19'] -opus/marginalien/marginal[@index='6302' and @letter='233' and @page='166' and @line='20'] -opus/marginalien/marginal[@index='6303' and @letter='233' and @page='166' and @line='23'] -opus/marginalien/marginal[@index='6304' and @letter='233' and @page='166' and @line='25'] -opus/marginalien/marginal[@index='6305' and @letter='233' and @page='166' and @line='27'] -opus/marginalien/marginal[@index='6306' and @letter='233' and @page='166' and @line='28'] -opus/marginalien/marginal[@index='6307' and @letter='233' and @page='166' and @line='30'] -opus/marginalien/marginal[@index='6308' and @letter='233' and @page='166' and @line='31'] -opus/marginalien/marginal[@index='6309' and @letter='233' and @page='167' and @line='2'] -opus/marginalien/marginal[@index='630' and @letter='40' and @page='102' and @line='2'] -opus/marginalien/marginal[@index='6310' and @letter='233' and @page='167' and @line='13'] -opus/marginalien/marginal[@index='6311' and @letter='233' and @page='167' and @line='17'] -opus/marginalien/marginal[@index='6312' and @letter='233' and @page='167' and @line='19'] -opus/marginalien/marginal[@index='6313' and @letter='233' and @page='167' and @line='21'] -opus/marginalien/marginal[@index='6314' and @letter='233' and @page='167' and @line='21'] -opus/marginalien/marginal[@index='6315' and @letter='233' and @page='167' and @line='22'] -opus/marginalien/marginal[@index='6316' and @letter='233' and @page='167' and @line='24'] -opus/marginalien/marginal[@index='6317' and @letter='233' and @page='167' and @line='24'] -opus/marginalien/marginal[@index='6318' and @letter='233' and @page='167' and @line='24'] -opus/marginalien/marginal[@index='6319' and @letter='233' and @page='167' and @line='24'] -opus/marginalien/marginal[@index='631' and @letter='40' and @page='102' and @line='4'] -opus/marginalien/marginal[@index='6320' and @letter='233' and @page='167' and @line='25'] -opus/marginalien/marginal[@index='6321' and @letter='233' and @page='167' and @line='25'] -opus/marginalien/marginal[@index='6322' and @letter='233' and @page='167' and @line='32'] -opus/marginalien/marginal[@index='6323' and @letter='233' and @page='167' and @line='34'] -opus/marginalien/marginal[@index='6324' and @letter='233' and @page='167' and @line='36'] -opus/marginalien/marginal[@index='6325' and @letter='233' and @page='168' and @line='5'] -opus/marginalien/marginal[@index='6326' and @letter='233' and @page='168' and @line='7'] -opus/marginalien/marginal[@index='6327' and @letter='233' and @page='168' and @line='8'] -opus/marginalien/marginal[@index='6328' and @letter='233' and @page='168' and @line='9'] -opus/marginalien/marginal[@index='6329' and @letter='233' and @page='168' and @line='11'] -opus/marginalien/marginal[@index='632' and @letter='40' and @page='102' and @line='8'] -opus/marginalien/marginal[@index='6330' and @letter='233' and @page='168' and @line='15'] -opus/marginalien/marginal[@index='6331' and @letter='233' and @page='168' and @line='16'] -opus/marginalien/marginal[@index='6332' and @letter='233' and @page='168' and @line='16'] -opus/marginalien/marginal[@index='6333' and @letter='233' and @page='168' and @line='17'] -opus/marginalien/marginal[@index='6334' and @letter='233' and @page='168' and @line='18'] -opus/marginalien/marginal[@index='6335' and @letter='233' and @page='168' and @line='22'] -opus/marginalien/marginal[@index='6337' and @letter='233' and @page='168' and @line='25'] -opus/marginalien/marginal[@index='6338' and @letter='233' and @page='168' and @line='28'] -opus/marginalien/marginal[@index='6339' and @letter='233' and @page='168' and @line='28'] -opus/marginalien/marginal[@index='633' and @letter='40' and @page='102' and @line='12'] -opus/marginalien/marginal[@index='6340' and @letter='233' and @page='168' and @line='35'] -opus/marginalien/marginal[@index='6342' and @letter='233' and @page='169' and @line='1'] -opus/marginalien/marginal[@index='6343' and @letter='233' and @page='169' and @line='2'] -opus/marginalien/marginal[@index='6344' and @letter='234' and @page='169' and @line='19'] -opus/marginalien/marginal[@index='6345' and @letter='234' and @page='169' and @line='27'] -opus/marginalien/marginal[@index='6346' and @letter='234' and @page='169' and @line='28'] -opus/marginalien/marginal[@index='6347' and @letter='234' and @page='169' and @line='28'] -opus/marginalien/marginal[@index='6348' and @letter='234' and @page='169' and @line='30'] -opus/marginalien/marginal[@index='6349' and @letter='234' and @page='169' and @line='32'] -opus/marginalien/marginal[@index='634' and @letter='40' and @page='102' and @line='16'] -opus/marginalien/marginal[@index='6350' and @letter='234' and @page='169' and @line='33'] -opus/marginalien/marginal[@index='6351' and @letter='234' and @page='169' and @line='36'] -opus/marginalien/marginal[@index='6352' and @letter='234' and @page='170' and @line='1'] -opus/marginalien/marginal[@index='6353' and @letter='234' and @page='170' and @line='1'] -opus/marginalien/marginal[@index='6354' and @letter='234' and @page='170' and @line='2'] -opus/marginalien/marginal[@index='6355' and @letter='234' and @page='170' and @line='3'] -opus/marginalien/marginal[@index='6356' and @letter='234' and @page='170' and @line='3'] -opus/marginalien/marginal[@index='6357' and @letter='234' and @page='170' and @line='4'] -opus/marginalien/marginal[@index='6358' and @letter='234' and @page='170' and @line='5'] -opus/marginalien/marginal[@index='6359' and @letter='234' and @page='170' and @line='6'] -opus/marginalien/marginal[@index='635' and @letter='40' and @page='102' and @line='17'] -opus/marginalien/marginal[@index='6360' and @letter='234' and @page='170' and @line='8'] -opus/marginalien/marginal[@index='6361' and @letter='234' and @page='170' and @line='9'] -opus/marginalien/marginal[@index='6362' and @letter='234' and @page='170' and @line='11'] -opus/marginalien/marginal[@index='6363' and @letter='234' and @page='170' and @line='12'] -opus/marginalien/marginal[@index='6364' and @letter='234' and @page='170' and @line='13'] -opus/marginalien/marginal[@index='6365' and @letter='234' and @page='170' and @line='15'] -opus/marginalien/marginal[@index='6366' and @letter='234' and @page='170' and @line='20'] -opus/marginalien/marginal[@index='6367' and @letter='234' and @page='170' and @line='21'] -opus/marginalien/marginal[@index='6368' and @letter='234' and @page='170' and @line='22'] -opus/marginalien/marginal[@index='6369' and @letter='234' and @page='170' and @line='26'] -opus/marginalien/marginal[@index='636' and @letter='40' and @page='102' and @line='18'] -opus/marginalien/marginal[@index='6371' and @letter='234' and @page='170' and @line='29'] -opus/marginalien/marginal[@index='6372' and @letter='234' and @page='170' and @line='29'] -opus/marginalien/marginal[@index='6373' and @letter='234' and @page='170' and @line='30'] -opus/marginalien/marginal[@index='6375' and @letter='234' and @page='170' and @line='31'] -opus/marginalien/marginal[@index='6376' and @letter='234' and @page='170' and @line='33'] -opus/marginalien/marginal[@index='6378' and @letter='234' and @page='170' and @line='34'] -opus/marginalien/marginal[@index='6379' and @letter='234' and @page='170' and @line='35'] -opus/marginalien/marginal[@index='637' and @letter='40' and @page='102' and @line='24'] -opus/marginalien/marginal[@index='6380' and @letter='234' and @page='170' and @line='36'] -opus/marginalien/marginal[@index='6381' and @letter='234' and @page='170' and @line='37'] -opus/marginalien/marginal[@index='6382' and @letter='234' and @page='171' and @line='4'] -opus/marginalien/marginal[@index='6383' and @letter='234' and @page='171' and @line='4'] -opus/marginalien/marginal[@index='6384' and @letter='234' and @page='171' and @line='5'] -opus/marginalien/marginal[@index='6385' and @letter='234' and @page='171' and @line='6'] -opus/marginalien/marginal[@index='6386' and @letter='234' and @page='171' and @line='7'] -opus/marginalien/marginal[@index='6387' and @letter='234' and @page='171' and @line='8'] -opus/marginalien/marginal[@index='6388' and @letter='234' and @page='171' and @line='9'] -opus/marginalien/marginal[@index='6389' and @letter='234' and @page='171' and @line='13'] -opus/marginalien/marginal[@index='638' and @letter='40' and @page='102' and @line='29'] -opus/marginalien/marginal[@index='6390' and @letter='234' and @page='171' and @line='16'] -opus/marginalien/marginal[@index='6391' and @letter='234' and @page='171' and @line='18'] -opus/marginalien/marginal[@index='6392' and @letter='235' and @page='171' and @line='22'] -opus/marginalien/marginal[@index='6393' and @letter='235' and @page='171' and @line='28'] -opus/marginalien/marginal[@index='6394' and @letter='235' and @page='171' and @line='30'] -opus/marginalien/marginal[@index='6395' and @letter='235' and @page='171' and @line='31'] -opus/marginalien/marginal[@index='6396' and @letter='235' and @page='171' and @line='32'] -opus/marginalien/marginal[@index='6397' and @letter='235' and @page='171' and @line='32'] -opus/marginalien/marginal[@index='6398' and @letter='235' and @page='171' and @line='33'] -opus/marginalien/marginal[@index='6399' and @letter='235' and @page='172' and @line='1'] -opus/marginalien/marginal[@index='639' and @letter='40' and @page='102' and @line='34'] -opus/marginalien/marginal[@index='63' and @letter='4' and @page='10' and @line='20'] -opus/marginalien/marginal[@index='6400' and @letter='235' and @page='172' and @line='1'] -opus/marginalien/marginal[@index='6401' and @letter='235' and @page='172' and @line='16'] -opus/marginalien/marginal[@index='6402' and @letter='235' and @page='172' and @line='19'] -opus/marginalien/marginal[@index='6403' and @letter='235' and @page='172' and @line='22'] -opus/marginalien/marginal[@index='6406' and @letter='235' and @page='172' and @line='24'] -opus/marginalien/marginal[@index='6407' and @letter='235' and @page='172' and @line='24'] -opus/marginalien/marginal[@index='6408' and @letter='235' and @page='172' and @line='24'] -opus/marginalien/marginal[@index='6409' and @letter='235' and @page='172' and @line='26'] -opus/marginalien/marginal[@index='640' and @letter='42' and @page='103' and @line='31'] -opus/marginalien/marginal[@index='6410' and @letter='235' and @page='172' and @line='27'] -opus/marginalien/marginal[@index='6412' and @letter='235' and @page='172' and @line='28'] -opus/marginalien/marginal[@index='6413' and @letter='235' and @page='172' and @line='30'] -opus/marginalien/marginal[@index='6414' and @letter='235' and @page='173' and @line='1'] -opus/marginalien/marginal[@index='6415' and @letter='235' and @page='173' and @line='37'] -opus/marginalien/marginal[@index='6416' and @letter='235' and @page='174' and @line='1'] -opus/marginalien/marginal[@index='6417' and @letter='235' and @page='174' and @line='7'] -opus/marginalien/marginal[@index='6418' and @letter='235' and @page='175' and @line='3'] -opus/marginalien/marginal[@index='6419' and @letter='235' and @page='175' and @line='5'] -opus/marginalien/marginal[@index='641' and @letter='42' and @page='103' and @line='31'] -opus/marginalien/marginal[@index='6420' and @letter='235' and @page='175' and @line='7'] -opus/marginalien/marginal[@index='6421' and @letter='235' and @page='175' and @line='15'] -opus/marginalien/marginal[@index='6422' and @letter='235' and @page='175' and @line='18'] -opus/marginalien/marginal[@index='6423' and @letter='235' and @page='175' and @line='23'] -opus/marginalien/marginal[@index='6424' and @letter='235' and @page='175' and @line='25'] -opus/marginalien/marginal[@index='6425' and @letter='235' and @page='175' and @line='26'] -opus/marginalien/marginal[@index='6426' and @letter='235' and @page='175' and @line='30'] -opus/marginalien/marginal[@index='6427' and @letter='235' and @page='175' and @line='31'] -opus/marginalien/marginal[@index='6428' and @letter='235' and @page='175' and @line='32'] -opus/marginalien/marginal[@index='6429' and @letter='235' and @page='175' and @line='34'] -opus/marginalien/marginal[@index='642' and @letter='42' and @page='103' and @line='32'] -opus/marginalien/marginal[@index='6430' and @letter='235' and @page='175' and @line='34'] -opus/marginalien/marginal[@index='6431' and @letter='236' and @page='176' and @line='3'] -opus/marginalien/marginal[@index='6432' and @letter='236' and @page='176' and @line='6'] -opus/marginalien/marginal[@index='6433' and @letter='236' and @page='176' and @line='10'] -opus/marginalien/marginal[@index='6434' and @letter='236' and @page='176' and @line='17'] -opus/marginalien/marginal[@index='6435' and @letter='236' and @page='176' and @line='28'] -opus/marginalien/marginal[@index='6436' and @letter='236' and @page='177' and @line='3'] -opus/marginalien/marginal[@index='6437' and @letter='236' and @page='177' and @line='6'] -opus/marginalien/marginal[@index='6438' and @letter='236' and @page='177' and @line='8'] -opus/marginalien/marginal[@index='643' and @letter='42' and @page='104' and @line='10'] -opus/marginalien/marginal[@index='6440' and @letter='236' and @page='177' and @line='11'] -opus/marginalien/marginal[@index='6442' and @letter='236' and @page='177' and @line='22'] -opus/marginalien/marginal[@index='6443' and @letter='236' and @page='177' and @line='22'] -opus/marginalien/marginal[@index='6444' and @letter='236' and @page='177' and @line='22'] -opus/marginalien/marginal[@index='6445' and @letter='236' and @page='177' and @line='27'] -opus/marginalien/marginal[@index='6446' and @letter='236' and @page='177' and @line='28'] -opus/marginalien/marginal[@index='6447' and @letter='236' and @page='177' and @line='30'] -opus/marginalien/marginal[@index='6448' and @letter='236' and @page='177' and @line='31'] -opus/marginalien/marginal[@index='6449' and @letter='236' and @page='178' and @line='1'] -opus/marginalien/marginal[@index='644' and @letter='42' and @page='104' and @line='13'] -opus/marginalien/marginal[@index='6450' and @letter='236' and @page='178' and @line='5'] -opus/marginalien/marginal[@index='6451' and @letter='236' and @page='178' and @line='7'] -opus/marginalien/marginal[@index='6452' and @letter='236' and @page='178' and @line='10'] -opus/marginalien/marginal[@index='6453' and @letter='236' and @page='178' and @line='11'] -opus/marginalien/marginal[@index='6454' and @letter='236' and @page='178' and @line='11'] -opus/marginalien/marginal[@index='6455' and @letter='236' and @page='178' and @line='12'] -opus/marginalien/marginal[@index='6456' and @letter='236' and @page='178' and @line='13'] -opus/marginalien/marginal[@index='6457' and @letter='236' and @page='178' and @line='15'] -opus/marginalien/marginal[@index='6458' and @letter='236' and @page='178' and @line='20'] -opus/marginalien/marginal[@index='6459' and @letter='237' and @page='178' and @line='25'] -opus/marginalien/marginal[@index='645' and @letter='42' and @page='105' and @line='24'] -opus/marginalien/marginal[@index='6460' and @letter='237' and @page='178' and @line='25'] -opus/marginalien/marginal[@index='6461' and @letter='237' and @page='178' and @line='28'] -opus/marginalien/marginal[@index='6462' and @letter='237' and @page='178' and @line='28'] -opus/marginalien/marginal[@index='6463' and @letter='237' and @page='178' and @line='29'] -opus/marginalien/marginal[@index='6464' and @letter='237' and @page='178' and @line='30'] -opus/marginalien/marginal[@index='6465' and @letter='237' and @page='179' and @line='2'] -opus/marginalien/marginal[@index='6466' and @letter='237' and @page='179' and @line='6'] -opus/marginalien/marginal[@index='6467' and @letter='237' and @page='179' and @line='11'] -opus/marginalien/marginal[@index='6468' and @letter='237' and @page='179' and @line='12'] -opus/marginalien/marginal[@index='6469' and @letter='237' and @page='179' and @line='12'] -opus/marginalien/marginal[@index='646' and @letter='42' and @page='105' and @line='31'] -opus/marginalien/marginal[@index='6470' and @letter='237' and @page='179' and @line='13'] -opus/marginalien/marginal[@index='6471' and @letter='237' and @page='179' and @line='13'] -opus/marginalien/marginal[@index='6472' and @letter='237' and @page='179' and @line='14'] -opus/marginalien/marginal[@index='6473' and @letter='237' and @page='179' and @line='15'] -opus/marginalien/marginal[@index='6474' and @letter='237' and @page='179' and @line='18'] -opus/marginalien/marginal[@index='6475' and @letter='237' and @page='179' and @line='18'] -opus/marginalien/marginal[@index='6476' and @letter='237' and @page='179' and @line='19'] -opus/marginalien/marginal[@index='6477' and @letter='237' and @page='179' and @line='20'] -opus/marginalien/marginal[@index='6478' and @letter='237' and @page='179' and @line='21'] -opus/marginalien/marginal[@index='647' and @letter='42' and @page='106' and @line='2'] -opus/marginalien/marginal[@index='6480' and @letter='237' and @page='179' and @line='28'] -opus/marginalien/marginal[@index='6481' and @letter='237' and @page='179' and @line='31'] -opus/marginalien/marginal[@index='6482' and @letter='238' and @page='180' and @line='3'] -opus/marginalien/marginal[@index='6483' and @letter='238' and @page='180' and @line='9'] -opus/marginalien/marginal[@index='6484' and @letter='238' and @page='180' and @line='10'] -opus/marginalien/marginal[@index='6485' and @letter='238' and @page='180' and @line='10'] -opus/marginalien/marginal[@index='6486' and @letter='238' and @page='180' and @line='11'] -opus/marginalien/marginal[@index='6487' and @letter='238' and @page='180' and @line='15'] -opus/marginalien/marginal[@index='6488' and @letter='238' and @page='180' and @line='17'] -opus/marginalien/marginal[@index='6489' and @letter='238' and @page='180' and @line='21'] -opus/marginalien/marginal[@index='648' and @letter='42' and @page='106' and @line='3'] -opus/marginalien/marginal[@index='6490' and @letter='238' and @page='180' and @line='21'] -opus/marginalien/marginal[@index='6491' and @letter='238' and @page='180' and @line='21'] -opus/marginalien/marginal[@index='6492' and @letter='238' and @page='180' and @line='23'] -opus/marginalien/marginal[@index='6493' and @letter='238' and @page='180' and @line='23'] -opus/marginalien/marginal[@index='6494' and @letter='238' and @page='180' and @line='28'] -opus/marginalien/marginal[@index='6496' and @letter='238' and @page='180' and @line='31'] -opus/marginalien/marginal[@index='6497' and @letter='238' and @page='180' and @line='32'] -opus/marginalien/marginal[@index='6498' and @letter='238' and @page='180' and @line='32'] -opus/marginalien/marginal[@index='6499' and @letter='239' and @page='181' and @line='4'] -opus/marginalien/marginal[@index='649' and @letter='42' and @page='106' and @line='8'] -opus/marginalien/marginal[@index='64' and @letter='4' and @page='10' and @line='25'] -opus/marginalien/marginal[@index='6500' and @letter='239' and @page='181' and @line='8'] -opus/marginalien/marginal[@index='6501' and @letter='239' and @page='181' and @line='9'] -opus/marginalien/marginal[@index='6502' and @letter='239' and @page='181' and @line='11'] -opus/marginalien/marginal[@index='6504' and @letter='239' and @page='181' and @line='11'] -opus/marginalien/marginal[@index='6505' and @letter='239' and @page='181' and @line='13'] -opus/marginalien/marginal[@index='6506' and @letter='239' and @page='181' and @line='14'] -opus/marginalien/marginal[@index='6507' and @letter='239' and @page='181' and @line='14'] -opus/marginalien/marginal[@index='6508' and @letter='239' and @page='181' and @line='16'] -opus/marginalien/marginal[@index='6509' and @letter='239' and @page='181' and @line='17'] -opus/marginalien/marginal[@index='650' and @letter='42' and @page='106' and @line='17'] -opus/marginalien/marginal[@index='6510' and @letter='239' and @page='181' and @line='23'] -opus/marginalien/marginal[@index='6511' and @letter='239' and @page='181' and @line='24'] -opus/marginalien/marginal[@index='6512' and @letter='239' and @page='181' and @line='24'] -opus/marginalien/marginal[@index='6513' and @letter='239' and @page='181' and @line='26'] -opus/marginalien/marginal[@index='6514' and @letter='239' and @page='181' and @line='32'] -opus/marginalien/marginal[@index='6515' and @letter='239' and @page='182' and @line='1'] -opus/marginalien/marginal[@index='6516' and @letter='239' and @page='182' and @line='4'] -opus/marginalien/marginal[@index='6517' and @letter='239' and @page='182' and @line='9'] -opus/marginalien/marginal[@index='6518' and @letter='239' and @page='182' and @line='19'] -opus/marginalien/marginal[@index='6519' and @letter='239' and @page='182' and @line='23'] -opus/marginalien/marginal[@index='651' and @letter='42' and @page='106' and @line='22'] -opus/marginalien/marginal[@index='6520' and @letter='239' and @page='182' and @line='24'] -opus/marginalien/marginal[@index='6521' and @letter='239' and @page='182' and @line='26'] -opus/marginalien/marginal[@index='6522' and @letter='239' and @page='182' and @line='30'] -opus/marginalien/marginal[@index='6523' and @letter='179' and @page='13' and @line='9'] -opus/marginalien/marginal[@index='6524' and @letter='179' and @page='13' and @line='22'] -opus/marginalien/marginal[@index='6525' and @letter='179' and @page='13' and @line='28'] -opus/marginalien/marginal[@index='6526' and @letter='179' and @page='13' and @line='32'] -opus/marginalien/marginal[@index='6527' and @letter='179' and @page='13' and @line='34'] -opus/marginalien/marginal[@index='6528' and @letter='179' and @page='14' and @line='1'] -opus/marginalien/marginal[@index='6529' and @letter='179' and @page='14' and @line='2'] -opus/marginalien/marginal[@index='652' and @letter='42' and @page='106' and @line='25'] -opus/marginalien/marginal[@index='6530' and @letter='179' and @page='14' and @line='4'] -opus/marginalien/marginal[@index='6531' and @letter='179' and @page='14' and @line='4'] -opus/marginalien/marginal[@index='6532' and @letter='179' and @page='14' and @line='6'] -opus/marginalien/marginal[@index='6533' and @letter='179' and @page='14' and @line='7'] -opus/marginalien/marginal[@index='6534' and @letter='179' and @page='14' and @line='8'] -opus/marginalien/marginal[@index='6535' and @letter='179' and @page='14' and @line='10'] -opus/marginalien/marginal[@index='6536' and @letter='179' and @page='14' and @line='16'] -opus/marginalien/marginal[@index='6537' and @letter='179' and @page='14' and @line='16'] -opus/marginalien/marginal[@index='6538' and @letter='179' and @page='14' and @line='18'] -opus/marginalien/marginal[@index='6539' and @letter='179' and @page='14' and @line='19'] -opus/marginalien/marginal[@index='653' and @letter='42' and @page='106' and @line='26'] -opus/marginalien/marginal[@index='6540' and @letter='179' and @page='14' and @line='21'] -opus/marginalien/marginal[@index='6541' and @letter='179' and @page='14' and @line='23'] -opus/marginalien/marginal[@index='6542' and @letter='179' and @page='14' and @line='24'] -opus/marginalien/marginal[@index='6543' and @letter='179' and @page='14' and @line='25'] -opus/marginalien/marginal[@index='6544' and @letter='179' and @page='14' and @line='28'] -opus/marginalien/marginal[@index='6545' and @letter='179' and @page='14' and @line='34'] -opus/marginalien/marginal[@index='6546' and @letter='179' and @page='14' and @line='35'] -opus/marginalien/marginal[@index='6547' and @letter='179' and @page='14' and @line='35'] -opus/marginalien/marginal[@index='6548' and @letter='179' and @page='14' and @line='35'] -opus/marginalien/marginal[@index='6549' and @letter='179' and @page='14' and @line='36'] -opus/marginalien/marginal[@index='654' and @letter='42' and @page='106' and @line='27'] -opus/marginalien/marginal[@index='6550' and @letter='179' and @page='14' and @line='37'] -opus/marginalien/marginal[@index='6551' and @letter='179' and @page='15' and @line='3'] -opus/marginalien/marginal[@index='6552' and @letter='179' and @page='15' and @line='5'] -opus/marginalien/marginal[@index='6553' and @letter='179' and @page='15' and @line='7'] -opus/marginalien/marginal[@index='6554' and @letter='179' and @page='15' and @line='11'] -opus/marginalien/marginal[@index='6555' and @letter='179' and @page='15' and @line='12'] -opus/marginalien/marginal[@index='6556' and @letter='179' and @page='15' and @line='13'] -opus/marginalien/marginal[@index='6557' and @letter='179' and @page='15' and @line='19'] -opus/marginalien/marginal[@index='6558' and @letter='179' and @page='15' and @line='21'] -opus/marginalien/marginal[@index='6559' and @letter='179' and @page='15' and @line='24'] -opus/marginalien/marginal[@index='655' and @letter='42' and @page='106' and @line='29'] -opus/marginalien/marginal[@index='6560' and @letter='179' and @page='15' and @line='25'] -opus/marginalien/marginal[@index='6561' and @letter='179' and @page='15' and @line='26'] -opus/marginalien/marginal[@index='6562' and @letter='179' and @page='15' and @line='28'] -opus/marginalien/marginal[@index='6563' and @letter='179' and @page='15' and @line='30'] -opus/marginalien/marginal[@index='6564' and @letter='240' and @page='185' and @line='3'] -opus/marginalien/marginal[@index='6565' and @letter='240' and @page='185' and @line='4'] -opus/marginalien/marginal[@index='6566' and @letter='240' and @page='185' and @line='13'] -opus/marginalien/marginal[@index='6567' and @letter='240' and @page='185' and @line='17'] -opus/marginalien/marginal[@index='6568' and @letter='240' and @page='185' and @line='18'] -opus/marginalien/marginal[@index='6569' and @letter='240' and @page='185' and @line='19'] -opus/marginalien/marginal[@index='656' and @letter='42' and @page='106' and @line='29'] -opus/marginalien/marginal[@index='6570' and @letter='240' and @page='185' and @line='21'] -opus/marginalien/marginal[@index='6571' and @letter='240' and @page='185' and @line='24'] -opus/marginalien/marginal[@index='6572' and @letter='240' and @page='185' and @line='26'] -opus/marginalien/marginal[@index='6573' and @letter='240' and @page='185' and @line='28'] -opus/marginalien/marginal[@index='6574' and @letter='240' and @page='185' and @line='37'] -opus/marginalien/marginal[@index='6575' and @letter='240' and @page='186' and @line='6'] -opus/marginalien/marginal[@index='6576' and @letter='240' and @page='186' and @line='12'] -opus/marginalien/marginal[@index='6577' and @letter='240' and @page='186' and @line='12'] -opus/marginalien/marginal[@index='6578' and @letter='241' and @page='186' and @line='29'] -opus/marginalien/marginal[@index='6579' and @letter='241' and @page='186' and @line='30'] -opus/marginalien/marginal[@index='657' and @letter='42' and @page='106' and @line='31'] -opus/marginalien/marginal[@index='6580' and @letter='241' and @page='186' and @line='31'] -opus/marginalien/marginal[@index='6581' and @letter='241' and @page='186' and @line='32'] -opus/marginalien/marginal[@index='6582' and @letter='241' and @page='187' and @line='1'] -opus/marginalien/marginal[@index='6583' and @letter='241' and @page='187' and @line='3'] -opus/marginalien/marginal[@index='6584' and @letter='241' and @page='187' and @line='4'] -opus/marginalien/marginal[@index='6585' and @letter='241' and @page='187' and @line='5'] -opus/marginalien/marginal[@index='6586' and @letter='241' and @page='187' and @line='6'] -opus/marginalien/marginal[@index='6587' and @letter='241' and @page='187' and @line='6'] -opus/marginalien/marginal[@index='6588' and @letter='241' and @page='187' and @line='7'] -opus/marginalien/marginal[@index='6589' and @letter='241' and @page='187' and @line='9'] -opus/marginalien/marginal[@index='658' and @letter='42' and @page='106' and @line='34'] -opus/marginalien/marginal[@index='6590' and @letter='241' and @page='187' and @line='9'] -opus/marginalien/marginal[@index='6591' and @letter='241' and @page='187' and @line='10'] -opus/marginalien/marginal[@index='6592' and @letter='241' and @page='187' and @line='11'] -opus/marginalien/marginal[@index='6593' and @letter='241' and @page='187' and @line='11'] -opus/marginalien/marginal[@index='6594' and @letter='241' and @page='187' and @line='12'] -opus/marginalien/marginal[@index='6595' and @letter='241' and @page='187' and @line='13'] -opus/marginalien/marginal[@index='6596' and @letter='241' and @page='187' and @line='13'] -opus/marginalien/marginal[@index='6597' and @letter='241' and @page='187' and @line='14'] -opus/marginalien/marginal[@index='6598' and @letter='241' and @page='187' and @line='15'] -opus/marginalien/marginal[@index='6599' and @letter='241' and @page='187' and @line='17'] -opus/marginalien/marginal[@index='659' and @letter='42' and @page='107' and @line='3'] -opus/marginalien/marginal[@index='65' and @letter='4' and @page='10' and @line='32'] -opus/marginalien/marginal[@index='6600' and @letter='241' and @page='187' and @line='17'] -opus/marginalien/marginal[@index='6601' and @letter='241' and @page='187' and @line='17'] -opus/marginalien/marginal[@index='6602' and @letter='241' and @page='187' and @line='19'] -opus/marginalien/marginal[@index='6603' and @letter='241' and @page='187' and @line='19'] -opus/marginalien/marginal[@index='6604' and @letter='241' and @page='187' and @line='20'] -opus/marginalien/marginal[@index='6605' and @letter='241' and @page='187' and @line='21'] -opus/marginalien/marginal[@index='6606' and @letter='241' and @page='187' and @line='21'] -opus/marginalien/marginal[@index='6607' and @letter='241' and @page='187' and @line='23'] -opus/marginalien/marginal[@index='6608' and @letter='241' and @page='187' and @line='23'] -opus/marginalien/marginal[@index='6609' and @letter='241' and @page='187' and @line='24'] -opus/marginalien/marginal[@index='660' and @letter='42' and @page='107' and @line='4'] -opus/marginalien/marginal[@index='6610' and @letter='241' and @page='187' and @line='24'] -opus/marginalien/marginal[@index='6611' and @letter='241' and @page='187' and @line='27'] -opus/marginalien/marginal[@index='6612' and @letter='241' and @page='187' and @line='29'] -opus/marginalien/marginal[@index='6613' and @letter='241' and @page='187' and @line='30'] -opus/marginalien/marginal[@index='6614' and @letter='241' and @page='187' and @line='31'] -opus/marginalien/marginal[@index='6615' and @letter='241' and @page='187' and @line='31'] -opus/marginalien/marginal[@index='6616' and @letter='241' and @page='187' and @line='32'] -opus/marginalien/marginal[@index='6617' and @letter='241' and @page='187' and @line='33'] -opus/marginalien/marginal[@index='6618' and @letter='241' and @page='187' and @line='34'] -opus/marginalien/marginal[@index='6619' and @letter='241' and @page='187' and @line='36'] -opus/marginalien/marginal[@index='661' and @letter='43' and @page='107' and @line='18'] -opus/marginalien/marginal[@index='6620' and @letter='241' and @page='187' and @line='36'] -opus/marginalien/marginal[@index='6621' and @letter='241' and @page='188' and @line='1'] -opus/marginalien/marginal[@index='6622' and @letter='241' and @page='188' and @line='1'] -opus/marginalien/marginal[@index='6623' and @letter='241' and @page='188' and @line='3'] -opus/marginalien/marginal[@index='6624' and @letter='241' and @page='188' and @line='5'] -opus/marginalien/marginal[@index='6625' and @letter='241' and @page='188' and @line='5'] -opus/marginalien/marginal[@index='6626' and @letter='241' and @page='188' and @line='10'] -opus/marginalien/marginal[@index='6627' and @letter='241' and @page='188' and @line='10'] -opus/marginalien/marginal[@index='6628' and @letter='241' and @page='188' and @line='12'] -opus/marginalien/marginal[@index='6629' and @letter='241' and @page='188' and @line='14'] -opus/marginalien/marginal[@index='662' and @letter='43' and @page='107' and @line='21'] -opus/marginalien/marginal[@index='6630' and @letter='241' and @page='188' and @line='16'] -opus/marginalien/marginal[@index='6631' and @letter='241' and @page='188' and @line='18'] -opus/marginalien/marginal[@index='6632' and @letter='241' and @page='188' and @line='20'] -opus/marginalien/marginal[@index='6633' and @letter='241' and @page='188' and @line='21'] -opus/marginalien/marginal[@index='6634' and @letter='241' and @page='188' and @line='22'] -opus/marginalien/marginal[@index='6635' and @letter='241' and @page='188' and @line='24'] -opus/marginalien/marginal[@index='6636' and @letter='241' and @page='188' and @line='25'] -opus/marginalien/marginal[@index='6637' and @letter='241' and @page='188' and @line='26'] -opus/marginalien/marginal[@index='6638' and @letter='241' and @page='188' and @line='27'] -opus/marginalien/marginal[@index='6639' and @letter='241' and @page='188' and @line='27'] -opus/marginalien/marginal[@index='663' and @letter='43' and @page='107' and @line='25'] -opus/marginalien/marginal[@index='6640' and @letter='241' and @page='188' and @line='27'] -opus/marginalien/marginal[@index='6641' and @letter='241' and @page='188' and @line='27'] -opus/marginalien/marginal[@index='6642' and @letter='241' and @page='188' and @line='29'] -opus/marginalien/marginal[@index='6643' and @letter='241' and @page='188' and @line='32'] -opus/marginalien/marginal[@index='6644' and @letter='241' and @page='188' and @line='35'] -opus/marginalien/marginal[@index='6645' and @letter='241' and @page='188' and @line='37'] -opus/marginalien/marginal[@index='6646' and @letter='241' and @page='189' and @line='6'] -opus/marginalien/marginal[@index='6647' and @letter='241' and @page='189' and @line='7'] -opus/marginalien/marginal[@index='6648' and @letter='241' and @page='189' and @line='8'] -opus/marginalien/marginal[@index='6649' and @letter='241' and @page='189' and @line='9'] -opus/marginalien/marginal[@index='664' and @letter='43' and @page='108' and @line='9'] -opus/marginalien/marginal[@index='6650' and @letter='241' and @page='189' and @line='11'] -opus/marginalien/marginal[@index='6651' and @letter='241' and @page='189' and @line='12'] -opus/marginalien/marginal[@index='6652' and @letter='241' and @page='189' and @line='17'] -opus/marginalien/marginal[@index='6653' and @letter='241' and @page='189' and @line='17'] -opus/marginalien/marginal[@index='6654' and @letter='241' and @page='189' and @line='18'] -opus/marginalien/marginal[@index='6655' and @letter='241' and @page='189' and @line='22'] -opus/marginalien/marginal[@index='6656' and @letter='241' and @page='189' and @line='24'] -opus/marginalien/marginal[@index='6657' and @letter='241' and @page='189' and @line='24'] -opus/marginalien/marginal[@index='6658' and @letter='241' and @page='189' and @line='25'] -opus/marginalien/marginal[@index='6659' and @letter='241' and @page='189' and @line='26'] -opus/marginalien/marginal[@index='665' and @letter='43' and @page='108' and @line='11'] -opus/marginalien/marginal[@index='6660' and @letter='241' and @page='189' and @line='26'] -opus/marginalien/marginal[@index='6660' and @letter='242' and @page='189' and @line='31'] -opus/marginalien/marginal[@index='6661' and @letter='242' and @page='189' and @line='32'] -opus/marginalien/marginal[@index='6662' and @letter='242' and @page='189' and @line='33'] -opus/marginalien/marginal[@index='6663' and @letter='242' and @page='189' and @line='33'] -opus/marginalien/marginal[@index='6664' and @letter='242' and @page='190' and @line='4'] -opus/marginalien/marginal[@index='6665' and @letter='242' and @page='190' and @line='5'] -opus/marginalien/marginal[@index='6666' and @letter='242' and @page='190' and @line='5'] -opus/marginalien/marginal[@index='6667' and @letter='242' and @page='190' and @line='5'] -opus/marginalien/marginal[@index='6668' and @letter='242' and @page='190' and @line='6'] -opus/marginalien/marginal[@index='6669' and @letter='242' and @page='190' and @line='7'] -opus/marginalien/marginal[@index='666' and @letter='43' and @page='108' and @line='17'] -opus/marginalien/marginal[@index='6670' and @letter='242' and @page='190' and @line='14'] -opus/marginalien/marginal[@index='6671' and @letter='242' and @page='190' and @line='16'] -opus/marginalien/marginal[@index='6672' and @letter='242' and @page='190' and @line='17'] -opus/marginalien/marginal[@index='6673' and @letter='242' and @page='190' and @line='17'] -opus/marginalien/marginal[@index='6674' and @letter='242' and @page='190' and @line='18'] -opus/marginalien/marginal[@index='6675' and @letter='242' and @page='190' and @line='20'] -opus/marginalien/marginal[@index='6676' and @letter='242' and @page='190' and @line='20'] -opus/marginalien/marginal[@index='6677' and @letter='242' and @page='190' and @line='21'] -opus/marginalien/marginal[@index='6678' and @letter='242' and @page='190' and @line='22'] -opus/marginalien/marginal[@index='6679' and @letter='242' and @page='190' and @line='24'] -opus/marginalien/marginal[@index='667' and @letter='43' and @page='108' and @line='33'] -opus/marginalien/marginal[@index='6680' and @letter='242' and @page='190' and @line='27'] -opus/marginalien/marginal[@index='6681' and @letter='242' and @page='190' and @line='29'] -opus/marginalien/marginal[@index='6682' and @letter='242' and @page='190' and @line='30'] -opus/marginalien/marginal[@index='6683' and @letter='242' and @page='190' and @line='31'] -opus/marginalien/marginal[@index='6684' and @letter='242' and @page='190' and @line='34'] -opus/marginalien/marginal[@index='6685' and @letter='242' and @page='190' and @line='36'] -opus/marginalien/marginal[@index='6686' and @letter='242' and @page='190' and @line='37'] -opus/marginalien/marginal[@index='6687' and @letter='242' and @page='191' and @line='2'] -opus/marginalien/marginal[@index='6688' and @letter='242' and @page='191' and @line='3'] -opus/marginalien/marginal[@index='6689' and @letter='242' and @page='191' and @line='4'] -opus/marginalien/marginal[@index='668' and @letter='43' and @page='109' and @line='1'] -opus/marginalien/marginal[@index='6690' and @letter='242' and @page='191' and @line='10'] -opus/marginalien/marginal[@index='6691' and @letter='242' and @page='191' and @line='10'] -opus/marginalien/marginal[@index='6692' and @letter='242' and @page='191' and @line='14'] -opus/marginalien/marginal[@index='6693' and @letter='242' and @page='191' and @line='25'] -opus/marginalien/marginal[@index='6694' and @letter='242' and @page='191' and @line='33'] -opus/marginalien/marginal[@index='6695' and @letter='242' and @page='191' and @line='33'] -opus/marginalien/marginal[@index='6696' and @letter='242' and @page='191' and @line='33'] -opus/marginalien/marginal[@index='6697' and @letter='242' and @page='192' and @line='1'] -opus/marginalien/marginal[@index='6698' and @letter='242' and @page='192' and @line='8'] -opus/marginalien/marginal[@index='6699' and @letter='242' and @page='192' and @line='9'] -opus/marginalien/marginal[@index='669' and @letter='43' and @page='109' and @line='7'] -opus/marginalien/marginal[@index='66' and @letter='4' and @page='10' and @line='35'] -opus/marginalien/marginal[@index='6700' and @letter='242' and @page='192' and @line='15'] -opus/marginalien/marginal[@index='6701' and @letter='242' and @page='192' and @line='20'] -opus/marginalien/marginal[@index='6702' and @letter='242' and @page='192' and @line='22'] -opus/marginalien/marginal[@index='6703' and @letter='242' and @page='192' and @line='22'] -opus/marginalien/marginal[@index='6704' and @letter='242' and @page='192' and @line='22'] -opus/marginalien/marginal[@index='6705' and @letter='242' and @page='192' and @line='32'] -opus/marginalien/marginal[@index='6706' and @letter='242' and @page='193' and @line='3'] -opus/marginalien/marginal[@index='6707' and @letter='242' and @page='193' and @line='16'] -opus/marginalien/marginal[@index='6708' and @letter='242' and @page='193' and @line='19'] -opus/marginalien/marginal[@index='6709' and @letter='242' and @page='193' and @line='22'] -opus/marginalien/marginal[@index='6710' and @letter='242' and @page='193' and @line='24'] -opus/marginalien/marginal[@index='6711' and @letter='242' and @page='193' and @line='25'] -opus/marginalien/marginal[@index='6712' and @letter='242' and @page='193' and @line='26'] -opus/marginalien/marginal[@index='6713' and @letter='242' and @page='193' and @line='29'] -opus/marginalien/marginal[@index='6714' and @letter='242' and @page='193' and @line='30'] -opus/marginalien/marginal[@index='6715' and @letter='242' and @page='193' and @line='30'] -opus/marginalien/marginal[@index='6716' and @letter='242' and @page='193' and @line='35'] -opus/marginalien/marginal[@index='6717' and @letter='242' and @page='193' and @line='35'] -opus/marginalien/marginal[@index='6718' and @letter='242' and @page='193' and @line='37'] -opus/marginalien/marginal[@index='6719' and @letter='242' and @page='194' and @line='1'] -opus/marginalien/marginal[@index='671' and @letter='43' and @page='109' and @line='14'] -opus/marginalien/marginal[@index='6720' and @letter='242' and @page='194' and @line='2'] -opus/marginalien/marginal[@index='6721' and @letter='242' and @page='194' and @line='3'] -opus/marginalien/marginal[@index='6722' and @letter='242' and @page='194' and @line='4'] -opus/marginalien/marginal[@index='6723' and @letter='242' and @page='194' and @line='5'] -opus/marginalien/marginal[@index='6724' and @letter='242' and @page='194' and @line='10'] -opus/marginalien/marginal[@index='6725' and @letter='242' and @page='194' and @line='11'] -opus/marginalien/marginal[@index='6726' and @letter='242' and @page='194' and @line='16'] -opus/marginalien/marginal[@index='6727' and @letter='242' and @page='194' and @line='18'] -opus/marginalien/marginal[@index='6728' and @letter='242' and @page='194' and @line='19'] -opus/marginalien/marginal[@index='6729' and @letter='243' and @page='194' and @line='24'] -opus/marginalien/marginal[@index='672' and @letter='43' and @page='109' and @line='17'] -opus/marginalien/marginal[@index='6730' and @letter='243' and @page='194' and @line='25'] -opus/marginalien/marginal[@index='6731' and @letter='243' and @page='194' and @line='27'] -opus/marginalien/marginal[@index='6732' and @letter='243' and @page='194' and @line='29'] -opus/marginalien/marginal[@index='6733' and @letter='243' and @page='194' and @line='29'] -opus/marginalien/marginal[@index='6734' and @letter='243' and @page='194' and @line='30'] -opus/marginalien/marginal[@index='6735' and @letter='243' and @page='194' and @line='31'] -opus/marginalien/marginal[@index='6736' and @letter='243' and @page='195' and @line='4'] -opus/marginalien/marginal[@index='6737' and @letter='243' and @page='195' and @line='11'] -opus/marginalien/marginal[@index='6738' and @letter='243' and @page='195' and @line='14'] -opus/marginalien/marginal[@index='6739' and @letter='243' and @page='195' and @line='15'] -opus/marginalien/marginal[@index='673' and @letter='43' and @page='109' and @line='17'] -opus/marginalien/marginal[@index='6740' and @letter='243' and @page='195' and @line='19'] -opus/marginalien/marginal[@index='6741' and @letter='243' and @page='195' and @line='20'] -opus/marginalien/marginal[@index='6742' and @letter='243' and @page='195' and @line='21'] -opus/marginalien/marginal[@index='6743' and @letter='243' and @page='195' and @line='22'] -opus/marginalien/marginal[@index='6744' and @letter='243' and @page='195' and @line='32'] -opus/marginalien/marginal[@index='6745' and @letter='243' and @page='195' and @line='35'] -opus/marginalien/marginal[@index='6746' and @letter='243' and @page='195' and @line='36'] -opus/marginalien/marginal[@index='6747' and @letter='243' and @page='196' and @line='3'] -opus/marginalien/marginal[@index='6748' and @letter='243' and @page='196' and @line='4'] -opus/marginalien/marginal[@index='6749' and @letter='243' and @page='196' and @line='5'] -opus/marginalien/marginal[@index='674' and @letter='43' and @page='109' and @line='18'] -opus/marginalien/marginal[@index='6750' and @letter='243' and @page='196' and @line='6'] -opus/marginalien/marginal[@index='6751' and @letter='243' and @page='196' and @line='7'] -opus/marginalien/marginal[@index='6752' and @letter='243' and @page='196' and @line='10'] -opus/marginalien/marginal[@index='6753' and @letter='243' and @page='196' and @line='11'] -opus/marginalien/marginal[@index='6754' and @letter='243' and @page='196' and @line='12'] -opus/marginalien/marginal[@index='6755' and @letter='243' and @page='196' and @line='13'] -opus/marginalien/marginal[@index='6756' and @letter='243' and @page='196' and @line='16'] -opus/marginalien/marginal[@index='6757' and @letter='243' and @page='196' and @line='16'] -opus/marginalien/marginal[@index='6758' and @letter='243' and @page='196' and @line='18'] -opus/marginalien/marginal[@index='6759' and @letter='243' and @page='196' and @line='21'] -opus/marginalien/marginal[@index='675' and @letter='43' and @page='109' and @line='29'] -opus/marginalien/marginal[@index='6760' and @letter='243' and @page='196' and @line='21'] -opus/marginalien/marginal[@index='6761' and @letter='243' and @page='196' and @line='28'] -opus/marginalien/marginal[@index='6762' and @letter='243' and @page='196' and @line='29'] -opus/marginalien/marginal[@index='6763' and @letter='243' and @page='196' and @line='35'] -opus/marginalien/marginal[@index='6764' and @letter='243' and @page='197' and @line='4'] -opus/marginalien/marginal[@index='6765' and @letter='243' and @page='197' and @line='6'] -opus/marginalien/marginal[@index='6766' and @letter='243' and @page='197' and @line='9'] -opus/marginalien/marginal[@index='6767' and @letter='243' and @page='197' and @line='12'] -opus/marginalien/marginal[@index='6768' and @letter='243' and @page='197' and @line='14'] -opus/marginalien/marginal[@index='6769' and @letter='243' and @page='197' and @line='16'] -opus/marginalien/marginal[@index='676' and @letter='43' and @page='109' and @line='33'] -opus/marginalien/marginal[@index='6770' and @letter='243' and @page='197' and @line='21'] -opus/marginalien/marginal[@index='6771' and @letter='243' and @page='197' and @line='23'] -opus/marginalien/marginal[@index='6772' and @letter='244' and @page='197' and @line='28'] -opus/marginalien/marginal[@index='6773' and @letter='244' and @page='197' and @line='28'] -opus/marginalien/marginal[@index='6774' and @letter='244' and @page='197' and @line='30'] -opus/marginalien/marginal[@index='6775' and @letter='244' and @page='197' and @line='32'] -opus/marginalien/marginal[@index='6776' and @letter='244' and @page='197' and @line='34'] -opus/marginalien/marginal[@index='6777' and @letter='244' and @page='198' and @line='1'] -opus/marginalien/marginal[@index='6778' and @letter='244' and @page='198' and @line='2'] -opus/marginalien/marginal[@index='6779' and @letter='244' and @page='198' and @line='3'] -opus/marginalien/marginal[@index='677' and @letter='43' and @page='109' and @line='34'] -opus/marginalien/marginal[@index='6780' and @letter='244' and @page='198' and @line='4'] -opus/marginalien/marginal[@index='6781' and @letter='244' and @page='198' and @line='5'] -opus/marginalien/marginal[@index='6782' and @letter='244' and @page='198' and @line='11'] -opus/marginalien/marginal[@index='6783' and @letter='244' and @page='198' and @line='12'] -opus/marginalien/marginal[@index='6784' and @letter='244' and @page='198' and @line='12'] -opus/marginalien/marginal[@index='6785' and @letter='244' and @page='198' and @line='14'] -opus/marginalien/marginal[@index='6786' and @letter='244' and @page='198' and @line='19'] -opus/marginalien/marginal[@index='6787' and @letter='244' and @page='198' and @line='20'] -opus/marginalien/marginal[@index='6788' and @letter='244' and @page='198' and @line='23'] -opus/marginalien/marginal[@index='6789' and @letter='244' and @page='198' and @line='24'] -opus/marginalien/marginal[@index='678' and @letter='43' and @page='110' and @line='1'] -opus/marginalien/marginal[@index='6790' and @letter='244' and @page='198' and @line='26'] -opus/marginalien/marginal[@index='6791' and @letter='244' and @page='198' and @line='27'] -opus/marginalien/marginal[@index='6792' and @letter='244' and @page='198' and @line='32'] -opus/marginalien/marginal[@index='6793' and @letter='244' and @page='198' and @line='34'] -opus/marginalien/marginal[@index='6794' and @letter='244' and @page='198' and @line='35'] -opus/marginalien/marginal[@index='6795' and @letter='244' and @page='198' and @line='37'] -opus/marginalien/marginal[@index='6796' and @letter='244' and @page='199' and @line='8'] -opus/marginalien/marginal[@index='6797' and @letter='244' and @page='199' and @line='10'] -opus/marginalien/marginal[@index='6798' and @letter='244' and @page='199' and @line='10'] -opus/marginalien/marginal[@index='6799' and @letter='244' and @page='199' and @line='11'] -opus/marginalien/marginal[@index='679' and @letter='43' and @page='110' and @line='9'] -opus/marginalien/marginal[@index='67' and @letter='4' and @page='11' and @line='31'] -opus/marginalien/marginal[@index='6800' and @letter='244' and @page='199' and @line='19'] -opus/marginalien/marginal[@index='6801' and @letter='244' and @page='199' and @line='20'] -opus/marginalien/marginal[@index='6802' and @letter='244' and @page='199' and @line='21'] -opus/marginalien/marginal[@index='6803' and @letter='244' and @page='199' and @line='22'] -opus/marginalien/marginal[@index='6804' and @letter='244' and @page='199' and @line='23'] -opus/marginalien/marginal[@index='6805' and @letter='244' and @page='199' and @line='25'] -opus/marginalien/marginal[@index='6806' and @letter='244' and @page='199' and @line='25'] -opus/marginalien/marginal[@index='6807' and @letter='244' and @page='199' and @line='26'] -opus/marginalien/marginal[@index='6808' and @letter='244' and @page='199' and @line='27'] -opus/marginalien/marginal[@index='6809' and @letter='244' and @page='199' and @line='29'] -opus/marginalien/marginal[@index='680' and @letter='43' and @page='110' and @line='18'] -opus/marginalien/marginal[@index='6810' and @letter='244' and @page='200' and @line='20'] -opus/marginalien/marginal[@index='6811' and @letter='244' and @page='200' and @line='25'] -opus/marginalien/marginal[@index='6812' and @letter='244' and @page='200' and @line='26'] -opus/marginalien/marginal[@index='6813' and @letter='244' and @page='200' and @line='30'] -opus/marginalien/marginal[@index='6814' and @letter='244' and @page='200' and @line='33'] -opus/marginalien/marginal[@index='6815' and @letter='244' and @page='200' and @line='33'] -opus/marginalien/marginal[@index='6816' and @letter='185' and @page='30' and @line='30'] -opus/marginalien/marginal[@index='6817' and @letter='185' and @page='30' and @line='31'] -opus/marginalien/marginal[@index='6818' and @letter='185' and @page='30' and @line='31'] -opus/marginalien/marginal[@index='681' and @letter='43' and @page='110' and @line='21'] -opus/marginalien/marginal[@index='6820' and @letter='185' and @page='31' and @line='11'] -opus/marginalien/marginal[@index='6821' and @letter='185' and @page='31' and @line='12'] -opus/marginalien/marginal[@index='6822' and @letter='185' and @page='31' and @line='23'] -opus/marginalien/marginal[@index='6823' and @letter='185' and @page='31' and @line='25'] -opus/marginalien/marginal[@index='6824' and @letter='185' and @page='31' and @line='27'] -opus/marginalien/marginal[@index='6825' and @letter='185' and @page='31' and @line='27'] -opus/marginalien/marginal[@index='6826' and @letter='185' and @page='31' and @line='28'] -opus/marginalien/marginal[@index='6827' and @letter='185' and @page='31' and @line='28'] -opus/marginalien/marginal[@index='6829' and @letter='245' and @page='201' and @line='2'] -opus/marginalien/marginal[@index='682' and @letter='43' and @page='110' and @line='21'] -opus/marginalien/marginal[@index='6830' and @letter='245' and @page='201' and @line='10'] -opus/marginalien/marginal[@index='6831' and @letter='245' and @page='201' and @line='22'] -opus/marginalien/marginal[@index='6832' and @letter='246' and @page='201' and @line='28'] -opus/marginalien/marginal[@index='6833' and @letter='246' and @page='201' and @line='30'] -opus/marginalien/marginal[@index='6834' and @letter='246' and @page='201' and @line='33'] -opus/marginalien/marginal[@index='6835' and @letter='246' and @page='201' and @line='34'] -opus/marginalien/marginal[@index='6836' and @letter='246' and @page='202' and @line='1'] -opus/marginalien/marginal[@index='6837' and @letter='246' and @page='202' and @line='4'] -opus/marginalien/marginal[@index='6838' and @letter='246' and @page='202' and @line='5'] -opus/marginalien/marginal[@index='6839' and @letter='246' and @page='202' and @line='6'] -opus/marginalien/marginal[@index='683' and @letter='43' and @page='110' and @line='23'] -opus/marginalien/marginal[@index='6840' and @letter='246' and @page='202' and @line='7'] -opus/marginalien/marginal[@index='6841' and @letter='246' and @page='202' and @line='7'] -opus/marginalien/marginal[@index='6842' and @letter='246' and @page='202' and @line='11'] -opus/marginalien/marginal[@index='6843' and @letter='246' and @page='202' and @line='12'] -opus/marginalien/marginal[@index='6844' and @letter='246' and @page='202' and @line='13'] -opus/marginalien/marginal[@index='6845' and @letter='246' and @page='202' and @line='14'] -opus/marginalien/marginal[@index='6846' and @letter='246' and @page='202' and @line='17'] -opus/marginalien/marginal[@index='6847' and @letter='246' and @page='202' and @line='18'] -opus/marginalien/marginal[@index='6848' and @letter='246' and @page='202' and @line='19'] -opus/marginalien/marginal[@index='6849' and @letter='246' and @page='202' and @line='20'] -opus/marginalien/marginal[@index='684' and @letter='43' and @page='110' and @line='28'] -opus/marginalien/marginal[@index='6850' and @letter='246' and @page='204' and @line='14'] -opus/marginalien/marginal[@index='6851' and @letter='246' and @page='204' and @line='15'] -opus/marginalien/marginal[@index='6852' and @letter='246' and @page='204' and @line='16'] -opus/marginalien/marginal[@index='6853' and @letter='246' and @page='204' and @line='20'] -opus/marginalien/marginal[@index='6854' and @letter='246' and @page='204' and @line='20'] -opus/marginalien/marginal[@index='6855' and @letter='246' and @page='204' and @line='22'] -opus/marginalien/marginal[@index='6856' and @letter='246' and @page='204' and @line='24'] -opus/marginalien/marginal[@index='6857' and @letter='246' and @page='204' and @line='24'] -opus/marginalien/marginal[@index='6858' and @letter='246' and @page='204' and @line='26'] -opus/marginalien/marginal[@index='6859' and @letter='246' and @page='204' and @line='33'] -opus/marginalien/marginal[@index='685' and @letter='43' and @page='110' and @line='31'] -opus/marginalien/marginal[@index='6860' and @letter='247' and @page='205' and @line='4'] -opus/marginalien/marginal[@index='6861' and @letter='247' and @page='205' and @line='6'] -opus/marginalien/marginal[@index='6862' and @letter='247' and @page='205' and @line='7'] -opus/marginalien/marginal[@index='6863' and @letter='247' and @page='205' and @line='8'] -opus/marginalien/marginal[@index='6864' and @letter='247' and @page='205' and @line='10'] -opus/marginalien/marginal[@index='6865' and @letter='247' and @page='205' and @line='14'] -opus/marginalien/marginal[@index='6866' and @letter='247' and @page='205' and @line='16'] -opus/marginalien/marginal[@index='6867' and @letter='247' and @page='205' and @line='26'] -opus/marginalien/marginal[@index='6868' and @letter='247' and @page='205' and @line='27'] -opus/marginalien/marginal[@index='6869' and @letter='247' and @page='205' and @line='29'] -opus/marginalien/marginal[@index='686' and @letter='43' and @page='110' and @line='31'] -opus/marginalien/marginal[@index='6870' and @letter='247' and @page='205' and @line='29'] -opus/marginalien/marginal[@index='6871' and @letter='247' and @page='205' and @line='30'] -opus/marginalien/marginal[@index='6872' and @letter='247' and @page='205' and @line='33'] -opus/marginalien/marginal[@index='6873' and @letter='247' and @page='205' and @line='36'] -opus/marginalien/marginal[@index='6874' and @letter='247' and @page='206' and @line='1'] -opus/marginalien/marginal[@index='6875' and @letter='247' and @page='206' and @line='4'] -opus/marginalien/marginal[@index='6876' and @letter='247' and @page='206' and @line='5'] -opus/marginalien/marginal[@index='6877' and @letter='247' and @page='206' and @line='7'] -opus/marginalien/marginal[@index='6878' and @letter='247' and @page='206' and @line='9'] -opus/marginalien/marginal[@index='6879' and @letter='247' and @page='206' and @line='10'] -opus/marginalien/marginal[@index='687' and @letter='43' and @page='110' and @line='32'] -opus/marginalien/marginal[@index='6880' and @letter='247' and @page='206' and @line='12'] -opus/marginalien/marginal[@index='6881' and @letter='247' and @page='206' and @line='13'] -opus/marginalien/marginal[@index='6882' and @letter='247' and @page='206' and @line='14'] -opus/marginalien/marginal[@index='6883' and @letter='247' and @page='206' and @line='15'] -opus/marginalien/marginal[@index='6884' and @letter='247' and @page='206' and @line='19'] -opus/marginalien/marginal[@index='6885' and @letter='247' and @page='206' and @line='22'] -opus/marginalien/marginal[@index='6886' and @letter='247' and @page='206' and @line='25'] -opus/marginalien/marginal[@index='6887' and @letter='247' and @page='206' and @line='29'] -opus/marginalien/marginal[@index='6888' and @letter='247' and @page='206' and @line='30'] -opus/marginalien/marginal[@index='6889' and @letter='247' and @page='206' and @line='31'] -opus/marginalien/marginal[@index='688' and @letter='43' and @page='110' and @line='32'] -opus/marginalien/marginal[@index='6890' and @letter='247' and @page='206' and @line='31'] -opus/marginalien/marginal[@index='6891' and @letter='247' and @page='206' and @line='32'] -opus/marginalien/marginal[@index='6892' and @letter='247' and @page='206' and @line='35'] -opus/marginalien/marginal[@index='6893' and @letter='247' and @page='206' and @line='36'] -opus/marginalien/marginal[@index='6894' and @letter='247' and @page='207' and @line='1'] -opus/marginalien/marginal[@index='6895' and @letter='247' and @page='207' and @line='2'] -opus/marginalien/marginal[@index='6896' and @letter='247' and @page='207' and @line='2'] -opus/marginalien/marginal[@index='6897' and @letter='247' and @page='207' and @line='4'] -opus/marginalien/marginal[@index='6898' and @letter='247' and @page='207' and @line='5'] -opus/marginalien/marginal[@index='6899' and @letter='247' and @page='207' and @line='9'] -opus/marginalien/marginal[@index='689' and @letter='43' and @page='110' and @line='34'] -opus/marginalien/marginal[@index='68' and @letter='4' and @page='12' and @line='2'] -opus/marginalien/marginal[@index='6900' and @letter='247' and @page='207' and @line='10'] -opus/marginalien/marginal[@index='6901' and @letter='247' and @page='207' and @line='37'] -opus/marginalien/marginal[@index='6902' and @letter='247' and @page='208' and @line='13'] -opus/marginalien/marginal[@index='6903' and @letter='247' and @page='208' and @line='14'] -opus/marginalien/marginal[@index='6904' and @letter='247' and @page='208' and @line='15'] -opus/marginalien/marginal[@index='6905' and @letter='247' and @page='208' and @line='18'] -opus/marginalien/marginal[@index='6906' and @letter='247' and @page='208' and @line='19'] -opus/marginalien/marginal[@index='6907' and @letter='247' and @page='208' and @line='21'] -opus/marginalien/marginal[@index='6908' and @letter='247' and @page='208' and @line='22'] -opus/marginalien/marginal[@index='6909' and @letter='247' and @page='208' and @line='22'] -opus/marginalien/marginal[@index='690' and @letter='43' and @page='111' and @line='7'] -opus/marginalien/marginal[@index='6910' and @letter='247' and @page='208' and @line='24'] -opus/marginalien/marginal[@index='6911' and @letter='247' and @page='208' and @line='28'] -opus/marginalien/marginal[@index='6912' and @letter='247' and @page='208' and @line='28'] -opus/marginalien/marginal[@index='6913' and @letter='247' and @page='208' and @line='28'] -opus/marginalien/marginal[@index='6914' and @letter='247' and @page='208' and @line='28'] -opus/marginalien/marginal[@index='6915' and @letter='247' and @page='208' and @line='29'] -opus/marginalien/marginal[@index='6916' and @letter='247' and @page='208' and @line='30'] -opus/marginalien/marginal[@index='6917' and @letter='247' and @page='208' and @line='31'] -opus/marginalien/marginal[@index='6918' and @letter='247' and @page='208' and @line='32'] -opus/marginalien/marginal[@index='6919' and @letter='247' and @page='208' and @line='33'] -opus/marginalien/marginal[@index='691' and @letter='44' and @page='111' and @line='15'] -opus/marginalien/marginal[@index='6920' and @letter='247' and @page='208' and @line='34'] -opus/marginalien/marginal[@index='6921' and @letter='247' and @page='208' and @line='35'] -opus/marginalien/marginal[@index='6922' and @letter='247' and @page='208' and @line='36'] -opus/marginalien/marginal[@index='6923' and @letter='247' and @page='209' and @line='1'] -opus/marginalien/marginal[@index='6924' and @letter='247' and @page='209' and @line='2'] -opus/marginalien/marginal[@index='6925' and @letter='248' and @page='209' and @line='6'] -opus/marginalien/marginal[@index='6926' and @letter='248' and @page='209' and @line='6'] -opus/marginalien/marginal[@index='6927' and @letter='248' and @page='209' and @line='6'] -opus/marginalien/marginal[@index='6928' and @letter='248' and @page='209' and @line='10'] -opus/marginalien/marginal[@index='6929' and @letter='248' and @page='209' and @line='11'] -opus/marginalien/marginal[@index='692' and @letter='44' and @page='111' and @line='16'] -opus/marginalien/marginal[@index='6930' and @letter='248' and @page='209' and @line='13'] -opus/marginalien/marginal[@index='6931' and @letter='248' and @page='209' and @line='17'] -opus/marginalien/marginal[@index='6932' and @letter='248' and @page='209' and @line='19'] -opus/marginalien/marginal[@index='6933' and @letter='248' and @page='209' and @line='19'] -opus/marginalien/marginal[@index='6934' and @letter='248' and @page='209' and @line='19'] -opus/marginalien/marginal[@index='6935' and @letter='248' and @page='209' and @line='21'] -opus/marginalien/marginal[@index='6935' and @letter='248' and @page='209' and @line='24'] -opus/marginalien/marginal[@index='6936' and @letter='248' and @page='209' and @line='25'] -opus/marginalien/marginal[@index='6937' and @letter='248' and @page='209' and @line='27'] -opus/marginalien/marginal[@index='6938' and @letter='248' and @page='209' and @line='27'] -opus/marginalien/marginal[@index='6939' and @letter='248' and @page='209' and @line='28'] -opus/marginalien/marginal[@index='693' and @letter='44' and @page='111' and @line='20'] -opus/marginalien/marginal[@index='6940' and @letter='248' and @page='210' and @line='1'] -opus/marginalien/marginal[@index='6941' and @letter='248' and @page='210' and @line='10'] -opus/marginalien/marginal[@index='6942' and @letter='248' and @page='210' and @line='15'] -opus/marginalien/marginal[@index='6943' and @letter='248' and @page='210' and @line='21'] -opus/marginalien/marginal[@index='6944' and @letter='248' and @page='210' and @line='25'] -opus/marginalien/marginal[@index='6945' and @letter='248' and @page='210' and @line='26'] -opus/marginalien/marginal[@index='6946' and @letter='248' and @page='210' and @line='26'] -opus/marginalien/marginal[@index='6947' and @letter='248' and @page='210' and @line='30'] -opus/marginalien/marginal[@index='6948' and @letter='248' and @page='210' and @line='30'] -opus/marginalien/marginal[@index='6949' and @letter='248' and @page='210' and @line='31'] -opus/marginalien/marginal[@index='694' and @letter='44' and @page='111' and @line='22'] -opus/marginalien/marginal[@index='6950' and @letter='248' and @page='210' and @line='31'] -opus/marginalien/marginal[@index='6951' and @letter='248' and @page='210' and @line='32'] -opus/marginalien/marginal[@index='6952' and @letter='248' and @page='210' and @line='32'] -opus/marginalien/marginal[@index='6953' and @letter='248' and @page='210' and @line='35'] -opus/marginalien/marginal[@index='6954' and @letter='248' and @page='210' and @line='37'] -opus/marginalien/marginal[@index='6955' and @letter='248' and @page='211' and @line='6'] -opus/marginalien/marginal[@index='6956' and @letter='248' and @page='211' and @line='6'] -opus/marginalien/marginal[@index='6957' and @letter='248' and @page='211' and @line='7'] -opus/marginalien/marginal[@index='6958' and @letter='248' and @page='211' and @line='8'] -opus/marginalien/marginal[@index='6959' and @letter='248' and @page='211' and @line='8'] -opus/marginalien/marginal[@index='695' and @letter='44' and @page='111' and @line='24'] -opus/marginalien/marginal[@index='6960' and @letter='248' and @page='211' and @line='9'] -opus/marginalien/marginal[@index='6961' and @letter='248' and @page='211' and @line='10'] -opus/marginalien/marginal[@index='6962' and @letter='248' and @page='211' and @line='13'] -opus/marginalien/marginal[@index='6963' and @letter='248' and @page='211' and @line='17'] -opus/marginalien/marginal[@index='6964' and @letter='248' and @page='211' and @line='19'] -opus/marginalien/marginal[@index='6965' and @letter='248' and @page='211' and @line='19'] -opus/marginalien/marginal[@index='6966' and @letter='248' and @page='211' and @line='22'] -opus/marginalien/marginal[@index='6968' and @letter='248' and @page='211' and @line='23'] -opus/marginalien/marginal[@index='6969' and @letter='248' and @page='211' and @line='25'] -opus/marginalien/marginal[@index='696' and @letter='44' and @page='111' and @line='29'] -opus/marginalien/marginal[@index='6970' and @letter='248' and @page='211' and @line='26'] -opus/marginalien/marginal[@index='6971' and @letter='248' and @page='211' and @line='26'] -opus/marginalien/marginal[@index='6972' and @letter='248' and @page='211' and @line='30'] -opus/marginalien/marginal[@index='6973' and @letter='248' and @page='211' and @line='33'] -opus/marginalien/marginal[@index='6974' and @letter='248' and @page='211' and @line='34'] -opus/marginalien/marginal[@index='6975' and @letter='248' and @page='212' and @line='2'] -opus/marginalien/marginal[@index='6976' and @letter='248' and @page='212' and @line='4'] -opus/marginalien/marginal[@index='6977' and @letter='248' and @page='212' and @line='4'] -opus/marginalien/marginal[@index='6978' and @letter='249' and @page='212' and @line='10'] -opus/marginalien/marginal[@index='6979' and @letter='249' and @page='212' and @line='12'] -opus/marginalien/marginal[@index='697' and @letter='44' and @page='111' and @line='34'] -opus/marginalien/marginal[@index='6980' and @letter='249' and @page='212' and @line='23'] -opus/marginalien/marginal[@index='6981' and @letter='249' and @page='212' and @line='24'] -opus/marginalien/marginal[@index='6982' and @letter='249' and @page='212' and @line='26'] -opus/marginalien/marginal[@index='6983' and @letter='249' and @page='212' and @line='27'] -opus/marginalien/marginal[@index='6984' and @letter='249' and @page='212' and @line='29'] -opus/marginalien/marginal[@index='6985' and @letter='249' and @page='212' and @line='31'] -opus/marginalien/marginal[@index='6986' and @letter='249' and @page='212' and @line='32'] -opus/marginalien/marginal[@index='6987' and @letter='249' and @page='213' and @line='1'] -opus/marginalien/marginal[@index='6988' and @letter='249' and @page='213' and @line='3'] -opus/marginalien/marginal[@index='6989' and @letter='249' and @page='213' and @line='6'] -opus/marginalien/marginal[@index='698' and @letter='44' and @page='112' and @line='1'] -opus/marginalien/marginal[@index='6990' and @letter='249' and @page='213' and @line='7'] -opus/marginalien/marginal[@index='6991' and @letter='249' and @page='213' and @line='8'] -opus/marginalien/marginal[@index='6992' and @letter='249' and @page='213' and @line='8'] -opus/marginalien/marginal[@index='6993' and @letter='249' and @page='213' and @line='13'] -opus/marginalien/marginal[@index='6994' and @letter='249' and @page='213' and @line='16'] -opus/marginalien/marginal[@index='6995' and @letter='249' and @page='213' and @line='18'] -opus/marginalien/marginal[@index='6996' and @letter='249' and @page='213' and @line='18'] -opus/marginalien/marginal[@index='6997' and @letter='249' and @page='213' and @line='19'] -opus/marginalien/marginal[@index='6998' and @letter='249' and @page='213' and @line='20'] -opus/marginalien/marginal[@index='6999' and @letter='249' and @page='213' and @line='20'] -opus/marginalien/marginal[@index='699' and @letter='44' and @page='112' and @line='3'] -opus/marginalien/marginal[@index='69' and @letter='4' and @page='12' and @line='6'] -opus/marginalien/marginal[@index='6' and @letter='1' and @page='2' and @line='25'] -opus/marginalien/marginal[@index='7000' and @letter='249' and @page='213' and @line='22'] -opus/marginalien/marginal[@index='7001' and @letter='249' and @page='213' and @line='22'] -opus/marginalien/marginal[@index='7002' and @letter='249' and @page='213' and @line='24'] -opus/marginalien/marginal[@index='7003' and @letter='249' and @page='213' and @line='26'] -opus/marginalien/marginal[@index='7004' and @letter='249' and @page='213' and @line='27'] -opus/marginalien/marginal[@index='7005' and @letter='249' and @page='213' and @line='29'] -opus/marginalien/marginal[@index='7006' and @letter='249' and @page='213' and @line='31'] -opus/marginalien/marginal[@index='7007' and @letter='249' and @page='213' and @line='32'] -opus/marginalien/marginal[@index='7008' and @letter='249' and @page='213' and @line='33'] -opus/marginalien/marginal[@index='7009' and @letter='249' and @page='213' and @line='33'] -opus/marginalien/marginal[@index='700' and @letter='44' and @page='112' and @line='5'] -opus/marginalien/marginal[@index='7010' and @letter='249' and @page='213' and @line='34'] -opus/marginalien/marginal[@index='7011' and @letter='249' and @page='213' and @line='36'] -opus/marginalien/marginal[@index='7012' and @letter='249' and @page='213' and @line='37'] -opus/marginalien/marginal[@index='7013' and @letter='249' and @page='214' and @line='3'] -opus/marginalien/marginal[@index='7014' and @letter='249' and @page='214' and @line='4'] -opus/marginalien/marginal[@index='7015' and @letter='249' and @page='214' and @line='4'] -opus/marginalien/marginal[@index='7016' and @letter='249' and @page='214' and @line='7'] -opus/marginalien/marginal[@index='7017' and @letter='249' and @page='214' and @line='11'] -opus/marginalien/marginal[@index='7018' and @letter='249' and @page='214' and @line='12'] -opus/marginalien/marginal[@index='7019' and @letter='249' and @page='214' and @line='12'] -opus/marginalien/marginal[@index='701' and @letter='44' and @page='112' and @line='6'] -opus/marginalien/marginal[@index='7020' and @letter='249' and @page='214' and @line='16'] -opus/marginalien/marginal[@index='7021' and @letter='249' and @page='214' and @line='16'] -opus/marginalien/marginal[@index='7022' and @letter='249' and @page='214' and @line='17'] -opus/marginalien/marginal[@index='7023' and @letter='249' and @page='214' and @line='18'] -opus/marginalien/marginal[@index='7024' and @letter='249' and @page='214' and @line='19'] -opus/marginalien/marginal[@index='7025' and @letter='249' and @page='214' and @line='19'] -opus/marginalien/marginal[@index='7026' and @letter='249' and @page='214' and @line='20'] -opus/marginalien/marginal[@index='7027' and @letter='249' and @page='214' and @line='20'] -opus/marginalien/marginal[@index='7028' and @letter='249' and @page='214' and @line='20'] -opus/marginalien/marginal[@index='7029' and @letter='249' and @page='214' and @line='22'] -opus/marginalien/marginal[@index='702' and @letter='44' and @page='112' and @line='9'] -opus/marginalien/marginal[@index='7030' and @letter='249' and @page='214' and @line='23'] -opus/marginalien/marginal[@index='7031' and @letter='249' and @page='214' and @line='25'] -opus/marginalien/marginal[@index='7032' and @letter='249' and @page='214' and @line='26'] -opus/marginalien/marginal[@index='7033' and @letter='249' and @page='214' and @line='27'] -opus/marginalien/marginal[@index='7034' and @letter='249' and @page='214' and @line='28'] -opus/marginalien/marginal[@index='7035' and @letter='249' and @page='214' and @line='28'] -opus/marginalien/marginal[@index='7036' and @letter='249' and @page='214' and @line='29'] -opus/marginalien/marginal[@index='7037' and @letter='249' and @page='214' and @line='30'] -opus/marginalien/marginal[@index='7038' and @letter='249' and @page='214' and @line='32'] -opus/marginalien/marginal[@index='7039' and @letter='249' and @page='214' and @line='32'] -opus/marginalien/marginal[@index='703' and @letter='44' and @page='112' and @line='10'] -opus/marginalien/marginal[@index='7040' and @letter='249' and @page='214' and @line='35'] -opus/marginalien/marginal[@index='7041' and @letter='249' and @page='214' and @line='37'] -opus/marginalien/marginal[@index='7042' and @letter='249' and @page='215' and @line='1'] -opus/marginalien/marginal[@index='7043' and @letter='249' and @page='215' and @line='2'] -opus/marginalien/marginal[@index='7044' and @letter='249' and @page='215' and @line='4'] -opus/marginalien/marginal[@index='7045' and @letter='249' and @page='215' and @line='12'] -opus/marginalien/marginal[@index='7046' and @letter='249' and @page='215' and @line='18'] -opus/marginalien/marginal[@index='7047' and @letter='249' and @page='215' and @line='25'] -opus/marginalien/marginal[@index='7048' and @letter='249' and @page='215' and @line='25'] -opus/marginalien/marginal[@index='7049' and @letter='249' and @page='215' and @line='26'] -opus/marginalien/marginal[@index='704' and @letter='44' and @page='112' and @line='12'] -opus/marginalien/marginal[@index='7050' and @letter='249' and @page='215' and @line='29'] -opus/marginalien/marginal[@index='7051' and @letter='249' and @page='215' and @line='31'] -opus/marginalien/marginal[@index='7052' and @letter='249' and @page='216' and @line='1'] -opus/marginalien/marginal[@index='7053' and @letter='249' and @page='216' and @line='1'] -opus/marginalien/marginal[@index='7054' and @letter='250' and @page='216' and @line='9'] -opus/marginalien/marginal[@index='7055' and @letter='250' and @page='216' and @line='10'] -opus/marginalien/marginal[@index='7056' and @letter='250' and @page='216' and @line='19'] -opus/marginalien/marginal[@index='7057' and @letter='250' and @page='216' and @line='21'] -opus/marginalien/marginal[@index='7058' and @letter='250' and @page='216' and @line='22'] -opus/marginalien/marginal[@index='7059' and @letter='250' and @page='216' and @line='23'] -opus/marginalien/marginal[@index='705' and @letter='44' and @page='112' and @line='18'] -opus/marginalien/marginal[@index='7060' and @letter='250' and @page='216' and @line='24'] -opus/marginalien/marginal[@index='7061' and @letter='250' and @page='216' and @line='25'] -opus/marginalien/marginal[@index='7062' and @letter='250' and @page='216' and @line='26'] -opus/marginalien/marginal[@index='7063' and @letter='250' and @page='216' and @line='29'] -opus/marginalien/marginal[@index='7064' and @letter='250' and @page='216' and @line='30'] -opus/marginalien/marginal[@index='7065' and @letter='250' and @page='216' and @line='31'] -opus/marginalien/marginal[@index='7066' and @letter='250' and @page='216' and @line='35'] -opus/marginalien/marginal[@index='7067' and @letter='250' and @page='217' and @line='3'] -opus/marginalien/marginal[@index='7068' and @letter='250' and @page='217' and @line='4'] -opus/marginalien/marginal[@index='7069' and @letter='250' and @page='217' and @line='8'] -opus/marginalien/marginal[@index='706' and @letter='44' and @page='112' and @line='27'] -opus/marginalien/marginal[@index='7070' and @letter='250' and @page='217' and @line='10'] -opus/marginalien/marginal[@index='7071' and @letter='250' and @page='217' and @line='11'] -opus/marginalien/marginal[@index='7072' and @letter='250' and @page='217' and @line='11'] -opus/marginalien/marginal[@index='7073' and @letter='250' and @page='217' and @line='15'] -opus/marginalien/marginal[@index='7074' and @letter='250' and @page='217' and @line='16'] -opus/marginalien/marginal[@index='7075' and @letter='250' and @page='217' and @line='16'] -opus/marginalien/marginal[@index='7076' and @letter='250' and @page='217' and @line='17'] -opus/marginalien/marginal[@index='7077' and @letter='250' and @page='217' and @line='18'] -opus/marginalien/marginal[@index='7078' and @letter='250' and @page='217' and @line='20'] -opus/marginalien/marginal[@index='7079' and @letter='250' and @page='217' and @line='20'] -opus/marginalien/marginal[@index='707' and @letter='44' and @page='113' and @line='4'] -opus/marginalien/marginal[@index='7080' and @letter='250' and @page='217' and @line='20'] -opus/marginalien/marginal[@index='7081' and @letter='250' and @page='217' and @line='22'] -opus/marginalien/marginal[@index='7082' and @letter='250' and @page='217' and @line='23'] -opus/marginalien/marginal[@index='7083' and @letter='250' and @page='217' and @line='23'] -opus/marginalien/marginal[@index='7084' and @letter='250' and @page='217' and @line='26'] -opus/marginalien/marginal[@index='7085' and @letter='250' and @page='217' and @line='26'] -opus/marginalien/marginal[@index='7086' and @letter='250' and @page='217' and @line='27'] -opus/marginalien/marginal[@index='7087' and @letter='250' and @page='217' and @line='28'] -opus/marginalien/marginal[@index='7088' and @letter='250' and @page='217' and @line='31'] -opus/marginalien/marginal[@index='7089' and @letter='250' and @page='217' and @line='33'] -opus/marginalien/marginal[@index='708' and @letter='44' and @page='113' and @line='4'] -opus/marginalien/marginal[@index='7090' and @letter='250' and @page='217' and @line='33'] -opus/marginalien/marginal[@index='7091' and @letter='250' and @page='217' and @line='34'] -opus/marginalien/marginal[@index='7092' and @letter='250' and @page='218' and @line='2'] -opus/marginalien/marginal[@index='7093' and @letter='250' and @page='218' and @line='9'] -opus/marginalien/marginal[@index='7094' and @letter='250' and @page='218' and @line='9'] -opus/marginalien/marginal[@index='7095' and @letter='250' and @page='218' and @line='9'] -opus/marginalien/marginal[@index='7096' and @letter='250' and @page='218' and @line='10'] -opus/marginalien/marginal[@index='7097' and @letter='250' and @page='218' and @line='14'] -opus/marginalien/marginal[@index='7098' and @letter='250' and @page='218' and @line='19'] -opus/marginalien/marginal[@index='7099' and @letter='250' and @page='218' and @line='19'] -opus/marginalien/marginal[@index='709' and @letter='45' and @page='113' and @line='14'] -opus/marginalien/marginal[@index='70' and @letter='4' and @page='12' and @line='7'] -opus/marginalien/marginal[@index='7100' and @letter='250' and @page='218' and @line='20'] -opus/marginalien/marginal[@index='7101' and @letter='250' and @page='218' and @line='22'] -opus/marginalien/marginal[@index='7102' and @letter='250' and @page='218' and @line='27'] -opus/marginalien/marginal[@index='7103' and @letter='250' and @page='218' and @line='28'] -opus/marginalien/marginal[@index='7104' and @letter='251' and @page='218' and @line='35'] -opus/marginalien/marginal[@index='7105' and @letter='251' and @page='219' and @line='4'] -opus/marginalien/marginal[@index='7106' and @letter='251' and @page='219' and @line='20'] -opus/marginalien/marginal[@index='7107' and @letter='251' and @page='219' and @line='24'] -opus/marginalien/marginal[@index='7108' and @letter='251' and @page='219' and @line='28'] -opus/marginalien/marginal[@index='7109' and @letter='251' and @page='219' and @line='30'] -opus/marginalien/marginal[@index='710' and @letter='45' and @page='113' and @line='19'] -opus/marginalien/marginal[@index='7110' and @letter='251' and @page='219' and @line='32'] -opus/marginalien/marginal[@index='7111' and @letter='251' and @page='220' and @line='1'] -opus/marginalien/marginal[@index='7112' and @letter='251' and @page='220' and @line='5'] -opus/marginalien/marginal[@index='7113' and @letter='251' and @page='220' and @line='9'] -opus/marginalien/marginal[@index='7114' and @letter='252' and @page='220' and @line='15'] -opus/marginalien/marginal[@index='7115' and @letter='252' and @page='220' and @line='16'] -opus/marginalien/marginal[@index='7116' and @letter='252' and @page='220' and @line='17'] -opus/marginalien/marginal[@index='7117' and @letter='252' and @page='220' and @line='20'] -opus/marginalien/marginal[@index='7118' and @letter='252' and @page='220' and @line='21'] -opus/marginalien/marginal[@index='7119' and @letter='252' and @page='220' and @line='23'] -opus/marginalien/marginal[@index='711' and @letter='45' and @page='113' and @line='28'] -opus/marginalien/marginal[@index='7120' and @letter='252' and @page='220' and @line='24'] -opus/marginalien/marginal[@index='7121' and @letter='252' and @page='220' and @line='27'] -opus/marginalien/marginal[@index='7122' and @letter='252' and @page='220' and @line='28'] -opus/marginalien/marginal[@index='7123' and @letter='252' and @page='220' and @line='29'] -opus/marginalien/marginal[@index='7124' and @letter='252' and @page='220' and @line='29'] -opus/marginalien/marginal[@index='7125' and @letter='252' and @page='220' and @line='33'] -opus/marginalien/marginal[@index='7126' and @letter='252' and @page='220' and @line='33'] -opus/marginalien/marginal[@index='7127' and @letter='252' and @page='220' and @line='31'] -opus/marginalien/marginal[@index='7128' and @letter='252' and @page='220' and @line='31'] -opus/marginalien/marginal[@index='7129' and @letter='252' and @page='220' and @line='32'] -opus/marginalien/marginal[@index='712' and @letter='45' and @page='114' and @line='17'] -opus/marginalien/marginal[@index='7130' and @letter='252' and @page='220' and @line='32'] -opus/marginalien/marginal[@index='7131' and @letter='252' and @page='220' and @line='34'] -opus/marginalien/marginal[@index='7132' and @letter='252' and @page='221' and @line='3'] -opus/marginalien/marginal[@index='7133' and @letter='252' and @page='221' and @line='9'] -opus/marginalien/marginal[@index='7134' and @letter='252' and @page='221' and @line='13'] -opus/marginalien/marginal[@index='7135' and @letter='252' and @page='221' and @line='16'] -opus/marginalien/marginal[@index='7136' and @letter='252' and @page='221' and @line='16'] -opus/marginalien/marginal[@index='7137' and @letter='252' and @page='221' and @line='27'] -opus/marginalien/marginal[@index='7138' and @letter='252' and @page='221' and @line='31'] -opus/marginalien/marginal[@index='7139' and @letter='252' and @page='221' and @line='35'] -opus/marginalien/marginal[@index='713' and @letter='45' and @page='114' and @line='24'] -opus/marginalien/marginal[@index='7140' and @letter='252' and @page='222' and @line='2'] -opus/marginalien/marginal[@index='7141' and @letter='252' and @page='222' and @line='4'] -opus/marginalien/marginal[@index='7142' and @letter='252' and @page='222' and @line='12'] -opus/marginalien/marginal[@index='7143' and @letter='252' and @page='222' and @line='15'] -opus/marginalien/marginal[@index='7144' and @letter='252' and @page='222' and @line='17'] -opus/marginalien/marginal[@index='7145' and @letter='252' and @page='222' and @line='20'] -opus/marginalien/marginal[@index='7146' and @letter='252' and @page='222' and @line='21'] -opus/marginalien/marginal[@index='7147' and @letter='252' and @page='222' and @line='22'] -opus/marginalien/marginal[@index='7148' and @letter='252' and @page='222' and @line='22'] -opus/marginalien/marginal[@index='7149' and @letter='252' and @page='222' and @line='24'] -opus/marginalien/marginal[@index='714' and @letter='45' and @page='114' and @line='26'] -opus/marginalien/marginal[@index='7150' and @letter='252' and @page='222' and @line='26'] -opus/marginalien/marginal[@index='7151' and @letter='252' and @page='222' and @line='29'] -opus/marginalien/marginal[@index='7152' and @letter='252' and @page='222' and @line='31'] -opus/marginalien/marginal[@index='7153' and @letter='252' and @page='222' and @line='32'] -opus/marginalien/marginal[@index='7154' and @letter='252' and @page='222' and @line='34'] -opus/marginalien/marginal[@index='7155' and @letter='252' and @page='222' and @line='36'] -opus/marginalien/marginal[@index='7156' and @letter='252' and @page='223' and @line='1'] -opus/marginalien/marginal[@index='7157' and @letter='252' and @page='223' and @line='1'] -opus/marginalien/marginal[@index='7158' and @letter='252' and @page='223' and @line='1'] -opus/marginalien/marginal[@index='7159' and @letter='252' and @page='223' and @line='2'] -opus/marginalien/marginal[@index='715' and @letter='45' and @page='114' and @line='28'] -opus/marginalien/marginal[@index='7160' and @letter='252' and @page='223' and @line='4'] -opus/marginalien/marginal[@index='7161' and @letter='252' and @page='223' and @line='4'] -opus/marginalien/marginal[@index='7162' and @letter='252' and @page='223' and @line='4'] -opus/marginalien/marginal[@index='7163' and @letter='252' and @page='223' and @line='5'] -opus/marginalien/marginal[@index='7164' and @letter='252' and @page='223' and @line='6'] -opus/marginalien/marginal[@index='7165' and @letter='252' and @page='223' and @line='8'] -opus/marginalien/marginal[@index='7166' and @letter='252' and @page='223' and @line='9'] -opus/marginalien/marginal[@index='7167' and @letter='252' and @page='223' and @line='13'] -opus/marginalien/marginal[@index='7168' and @letter='252' and @page='223' and @line='16'] -opus/marginalien/marginal[@index='7169' and @letter='252' and @page='223' and @line='34'] -opus/marginalien/marginal[@index='716' and @letter='46' and @page='114' and @line='33'] -opus/marginalien/marginal[@index='7170' and @letter='252' and @page='223' and @line='37'] -opus/marginalien/marginal[@index='7171' and @letter='252' and @page='224' and @line='3'] -opus/marginalien/marginal[@index='7172' and @letter='252' and @page='224' and @line='6'] -opus/marginalien/marginal[@index='7173' and @letter='252' and @page='224' and @line='7'] -opus/marginalien/marginal[@index='7174' and @letter='252' and @page='224' and @line='8'] -opus/marginalien/marginal[@index='7175' and @letter='252' and @page='224' and @line='18'] -opus/marginalien/marginal[@index='7176' and @letter='252' and @page='224' and @line='19'] -opus/marginalien/marginal[@index='7177' and @letter='252' and @page='224' and @line='35'] -opus/marginalien/marginal[@index='7178' and @letter='252' and @page='225' and @line='3'] -opus/marginalien/marginal[@index='7179' and @letter='252' and @page='225' and @line='3'] -opus/marginalien/marginal[@index='717' and @letter='46' and @page='114' and @line='35'] -opus/marginalien/marginal[@index='7180' and @letter='252' and @page='225' and @line='4'] -opus/marginalien/marginal[@index='7181' and @letter='252' and @page='225' and @line='5'] -opus/marginalien/marginal[@index='7182' and @letter='252' and @page='225' and @line='6'] -opus/marginalien/marginal[@index='7183' and @letter='252' and @page='225' and @line='9'] -opus/marginalien/marginal[@index='7184' and @letter='253' and @page='225' and @line='24'] -opus/marginalien/marginal[@index='7185' and @letter='253' and @page='226' and @line='6'] -opus/marginalien/marginal[@index='7186' and @letter='253' and @page='226' and @line='9'] -opus/marginalien/marginal[@index='7187' and @letter='253' and @page='226' and @line='24'] -opus/marginalien/marginal[@index='7188' and @letter='254' and @page='226' and @line='29'] -opus/marginalien/marginal[@index='7189' and @letter='254' and @page='226' and @line='31'] -opus/marginalien/marginal[@index='718' and @letter='46' and @page='115' and @line='2'] -opus/marginalien/marginal[@index='7190' and @letter='254' and @page='226' and @line='32'] -opus/marginalien/marginal[@index='7191' and @letter='254' and @page='226' and @line='32'] -opus/marginalien/marginal[@index='7192' and @letter='254' and @page='227' and @line='9'] -opus/marginalien/marginal[@index='7193' and @letter='254' and @page='227' and @line='13'] -opus/marginalien/marginal[@index='7194' and @letter='254' and @page='227' and @line='14'] -opus/marginalien/marginal[@index='7195' and @letter='254' and @page='227' and @line='15'] -opus/marginalien/marginal[@index='7196' and @letter='254' and @page='227' and @line='36'] -opus/marginalien/marginal[@index='7197' and @letter='254' and @page='228' and @line='1'] -opus/marginalien/marginal[@index='7198' and @letter='254' and @page='228' and @line='5'] -opus/marginalien/marginal[@index='7199' and @letter='254' and @page='228' and @line='6'] -opus/marginalien/marginal[@index='719' and @letter='46' and @page='115' and @line='4'] -opus/marginalien/marginal[@index='71' and @letter='4' and @page='12' and @line='17'] -opus/marginalien/marginal[@index='7200' and @letter='254' and @page='228' and @line='15'] -opus/marginalien/marginal[@index='7201' and @letter='254' and @page='228' and @line='16'] -opus/marginalien/marginal[@index='7202' and @letter='254' and @page='228' and @line='29'] -opus/marginalien/marginal[@index='7203' and @letter='254' and @page='229' and @line='11'] -opus/marginalien/marginal[@index='7204' and @letter='254' and @page='229' and @line='13'] -opus/marginalien/marginal[@index='7205' and @letter='254' and @page='229' and @line='13'] -opus/marginalien/marginal[@index='7206' and @letter='254' and @page='229' and @line='28'] -opus/marginalien/marginal[@index='7207' and @letter='254' and @page='229' and @line='29'] -opus/marginalien/marginal[@index='7208' and @letter='254' and @page='230' and @line='10'] -opus/marginalien/marginal[@index='7209' and @letter='254' and @page='230' and @line='11'] -opus/marginalien/marginal[@index='720' and @letter='46' and @page='115' and @line='12'] -opus/marginalien/marginal[@index='7210' and @letter='254' and @page='230' and @line='17'] -opus/marginalien/marginal[@index='7211' and @letter='254' and @page='230' and @line='21'] -opus/marginalien/marginal[@index='7212' and @letter='1187' and @page='XIX' and @line='5'] -opus/marginalien/marginal[@index='7213' and @letter='1187' and @page='XIX' and @line='12'] -opus/marginalien/marginal[@index='7214' and @letter='1187' and @page='XIX' and @line='17'] -opus/marginalien/marginal[@index='7215' and @letter='1187' and @page='XX' and @line='21'] -opus/marginalien/marginal[@index='7216' and @letter='1187' and @page='XX' and @line='22'] -opus/marginalien/marginal[@index='7217' and @letter='1187' and @page='XX' and @line='30'] -opus/marginalien/marginal[@index='7218' and @letter='1187' and @page='XX' and @line='30'] -opus/marginalien/marginal[@index='7219' and @letter='1187' and @page='XX' and @line='31'] -opus/marginalien/marginal[@index='721' and @letter='46' and @page='115' and @line='14'] -opus/marginalien/marginal[@index='7220' and @letter='1187' and @page='XX' and @line='31'] -opus/marginalien/marginal[@index='7221' and @letter='1187' and @page='XX' and @line='31'] -opus/marginalien/marginal[@index='7222' and @letter='1187' and @page='XX' and @line='33'] -opus/marginalien/marginal[@index='7223' and @letter='1187' and @page='XXI' and @line='1'] -opus/marginalien/marginal[@index='7224' and @letter='1187' and @page='XXI' and @line='5'] -opus/marginalien/marginal[@index='7225' and @letter='1187' and @page='XXI' and @line='19'] -opus/marginalien/marginal[@index='7226' and @letter='1187' and @page='XXI' and @line='20'] -opus/marginalien/marginal[@index='7227' and @letter='1187' and @page='XXI' and @line='22'] -opus/marginalien/marginal[@index='7228' and @letter='1187' and @page='XXI' and @line='23'] -opus/marginalien/marginal[@index='7229' and @letter='1187' and @page='XXI' and @line='27'] -opus/marginalien/marginal[@index='722' and @letter='46' and @page='115' and @line='19'] -opus/marginalien/marginal[@index='7230' and @letter='1187' and @page='XXI' and @line='28'] -opus/marginalien/marginal[@index='7231' and @letter='1187' and @page='XXI' and @line='29'] -opus/marginalien/marginal[@index='7232' and @letter='1187' and @page='XXI' and @line='29'] -opus/marginalien/marginal[@index='7233' and @letter='1187' and @page='XXI' and @line='30'] -opus/marginalien/marginal[@index='7234' and @letter='1187' and @page='XXI' and @line='31'] -opus/marginalien/marginal[@index='7235' and @letter='1187' and @page='XXI' and @line='31'] -opus/marginalien/marginal[@index='7236' and @letter='1187' and @page='XXI' and @line='32'] -opus/marginalien/marginal[@index='7237' and @letter='1187' and @page='XXI' and @line='32'] -opus/marginalien/marginal[@index='7238' and @letter='1187' and @page='XXI' and @line='33'] -opus/marginalien/marginal[@index='7239' and @letter='1187' and @page='XXII' and @line='1'] -opus/marginalien/marginal[@index='723' and @letter='46' and @page='115' and @line='19'] -opus/marginalien/marginal[@index='7240' and @letter='1187' and @page='XXII' and @line='9'] -opus/marginalien/marginal[@index='7241' and @letter='1187' and @page='XXII' and @line='18'] -opus/marginalien/marginal[@index='7242' and @letter='1187' and @page='XXII' and @line='22'] -opus/marginalien/marginal[@index='7243' and @letter='1187' and @page='XXII' and @line='30'] -opus/marginalien/marginal[@index='7244' and @letter='1187' and @page='XXII' and @line='32'] -opus/marginalien/marginal[@index='7245' and @letter='1187' and @page='XXIII' and @line='8'] -opus/marginalien/marginal[@index='7246' and @letter='1187' and @page='XXIII' and @line='10'] -opus/marginalien/marginal[@index='7247' and @letter='1187' and @page='XXIII' and @line='13'] -opus/marginalien/marginal[@index='7248' and @letter='1187' and @page='XXIII' and @line='16'] -opus/marginalien/marginal[@index='7249' and @letter='1187' and @page='XXIII' and @line='28'] -opus/marginalien/marginal[@index='724' and @letter='46' and @page='115' and @line='24'] -opus/marginalien/marginal[@index='7250' and @letter='1187' and @page='XXIII' and @line='29'] -opus/marginalien/marginal[@index='7251' and @letter='1187' and @page='XXIII' and @line='30'] -opus/marginalien/marginal[@index='7252' and @letter='1187' and @page='XXIII' and @line='30'] -opus/marginalien/marginal[@index='7253' and @letter='1187' and @page='XXIII' and @line='32'] -opus/marginalien/marginal[@index='7254' and @letter='1187' and @page='XXIII' and @line='33'] -opus/marginalien/marginal[@index='7255' and @letter='1187' and @page='XXIII' and @line='35'] -opus/marginalien/marginal[@index='7256' and @letter='1187' and @page='XXIV' and @line='1'] -opus/marginalien/marginal[@index='7257' and @letter='1187' and @page='XXIV' and @line='14'] -opus/marginalien/marginal[@index='7258' and @letter='1187' and @page='XXIV' and @line='23'] -opus/marginalien/marginal[@index='7259' and @letter='1187' and @page='XXIV' and @line='25'] -opus/marginalien/marginal[@index='725' and @letter='46' and @page='115' and @line='30'] -opus/marginalien/marginal[@index='7260' and @letter='1187' and @page='XXIV' and @line='28'] -opus/marginalien/marginal[@index='7261' and @letter='1187' and @page='XXIV' and @line='35'] -opus/marginalien/marginal[@index='7262' and @letter='1187' and @page='XXV' and @line='18'] -opus/marginalien/marginal[@index='7263' and @letter='1187' and @page='XXV' and @line='23'] -opus/marginalien/marginal[@index='7264' and @letter='1187' and @page='XXV' and @line='24'] -opus/marginalien/marginal[@index='7265' and @letter='1187' and @page='XXV' and @line='26'] -opus/marginalien/marginal[@index='7266' and @letter='1187' and @page='XXV' and @line='27'] -opus/marginalien/marginal[@index='7267' and @letter='1187' and @page='XXV' and @line='30'] -opus/marginalien/marginal[@index='7268' and @letter='1187' and @page='XXV' and @line='33'] -opus/marginalien/marginal[@index='7269' and @letter='1187' and @page='XXVI' and @line='3'] -opus/marginalien/marginal[@index='726' and @letter='46' and @page='116' and @line='1'] -opus/marginalien/marginal[@index='7270' and @letter='1187' and @page='XXVI' and @line='4'] -opus/marginalien/marginal[@index='7271' and @letter='1187' and @page='XXVI' and @line='7'] -opus/marginalien/marginal[@index='7272' and @letter='1187' and @page='XXVI' and @line='8'] -opus/marginalien/marginal[@index='7273' and @letter='255' and @page='230' and @line='29'] -opus/marginalien/marginal[@index='7274' and @letter='255' and @page='230' and @line='30'] -opus/marginalien/marginal[@index='7275' and @letter='255' and @page='230' and @line='31'] -opus/marginalien/marginal[@index='7276' and @letter='255' and @page='230' and @line='32'] -opus/marginalien/marginal[@index='7277' and @letter='255' and @page='231' and @line='1'] -opus/marginalien/marginal[@index='7278' and @letter='255' and @page='231' and @line='3'] -opus/marginalien/marginal[@index='7279' and @letter='255' and @page='231' and @line='4'] -opus/marginalien/marginal[@index='727' and @letter='46' and @page='116' and @line='4'] -opus/marginalien/marginal[@index='7280' and @letter='255' and @page='231' and @line='4'] -opus/marginalien/marginal[@index='7281' and @letter='255' and @page='231' and @line='4'] -opus/marginalien/marginal[@index='7282' and @letter='255' and @page='231' and @line='4'] -opus/marginalien/marginal[@index='7283' and @letter='255' and @page='231' and @line='5'] -opus/marginalien/marginal[@index='7284' and @letter='255' and @page='231' and @line='5'] -opus/marginalien/marginal[@index='7285' and @letter='255' and @page='231' and @line='6'] -opus/marginalien/marginal[@index='7286' and @letter='255' and @page='231' and @line='7'] -opus/marginalien/marginal[@index='7287' and @letter='255' and @page='231' and @line='7'] -opus/marginalien/marginal[@index='7288' and @letter='255' and @page='231' and @line='8'] -opus/marginalien/marginal[@index='7289' and @letter='255' and @page='231' and @line='11'] -opus/marginalien/marginal[@index='728' and @letter='46' and @page='116' and @line='7'] -opus/marginalien/marginal[@index='7290' and @letter='255' and @page='231' and @line='13'] -opus/marginalien/marginal[@index='7291' and @letter='255' and @page='231' and @line='14'] -opus/marginalien/marginal[@index='7292' and @letter='255' and @page='231' and @line='18'] -opus/marginalien/marginal[@index='7293' and @letter='255' and @page='231' and @line='18'] -opus/marginalien/marginal[@index='7294' and @letter='1188' and @page='XXVI' and @line='34'] -opus/marginalien/marginal[@index='7295' and @letter='1188' and @page='XXVII' and @line='1'] -opus/marginalien/marginal[@index='7296' and @letter='1188' and @page='XXVII' and @line='2'] -opus/marginalien/marginal[@index='7297' and @letter='1188' and @page='XXVII' and @line='5'] -opus/marginalien/marginal[@index='7298' and @letter='1188' and @page='XXVII' and @line='12'] -opus/marginalien/marginal[@index='7299' and @letter='1188' and @page='XXVII' and @line='18'] -opus/marginalien/marginal[@index='729' and @letter='46' and @page='116' and @line='8'] -opus/marginalien/marginal[@index='72' and @letter='5' and @page='13' and @line='1'] -opus/marginalien/marginal[@index='7300' and @letter='1188' and @page='XXVII' and @line='18'] -opus/marginalien/marginal[@index='7301' and @letter='1188' and @page='XXVII' and @line='19'] -opus/marginalien/marginal[@index='7302' and @letter='1188' and @page='XXVII' and @line='20'] -opus/marginalien/marginal[@index='7303' and @letter='1188' and @page='XXVII' and @line='23'] -opus/marginalien/marginal[@index='7304' and @letter='1188' and @page='XXVII' and @line='23'] -opus/marginalien/marginal[@index='7305' and @letter='1188' and @page='XXVII' and @line='27'] -opus/marginalien/marginal[@index='7306' and @letter='1188' and @page='XXVII' and @line='31'] -opus/marginalien/marginal[@index='7307' and @letter='1188' and @page='XXVII' and @line='35'] -opus/marginalien/marginal[@index='7308' and @letter='1188' and @page='XXVII' and @line='37'] -opus/marginalien/marginal[@index='7309' and @letter='1188' and @page='XXVIII' and @line='1'] -opus/marginalien/marginal[@index='730' and @letter='46' and @page='116' and @line='12'] -opus/marginalien/marginal[@index='7310' and @letter='1188' and @page='XXVIII' and @line='8'] -opus/marginalien/marginal[@index='7311' and @letter='1188' and @page='XXVIII' and @line='11'] -opus/marginalien/marginal[@index='7312' and @letter='1188' and @page='XXVIII' and @line='14'] -opus/marginalien/marginal[@index='7313' and @letter='1188' and @page='XXVIII' and @line='14'] -opus/marginalien/marginal[@index='7314' and @letter='1188' and @page='XXVIII' and @line='16'] -opus/marginalien/marginal[@index='7315' and @letter='1188' and @page='XXVIII' and @line='16'] -opus/marginalien/marginal[@index='7316' and @letter='1188' and @page='XXVIII' and @line='23'] -opus/marginalien/marginal[@index='7317' and @letter='1188' and @page='XXVIII' and @line='25'] -opus/marginalien/marginal[@index='7318' and @letter='1188' and @page='XXVIII' and @line='37'] -opus/marginalien/marginal[@index='7319' and @letter='1188' and @page='XXIX' and @line='1'] -opus/marginalien/marginal[@index='731' and @letter='46' and @page='116' and @line='16'] -opus/marginalien/marginal[@index='7320' and @letter='1188' and @page='XXIX' and @line='1'] -opus/marginalien/marginal[@index='7321' and @letter='1188' and @page='XXIX' and @line='11'] -opus/marginalien/marginal[@index='7322' and @letter='1188' and @page='XXIX' and @line='13'] -opus/marginalien/marginal[@index='7323' and @letter='1188' and @page='XXIX' and @line='13'] -opus/marginalien/marginal[@index='7324' and @letter='1188' and @page='XXIX' and @line='15'] -opus/marginalien/marginal[@index='7325' and @letter='1188' and @page='XXIX' and @line='19'] -opus/marginalien/marginal[@index='7326' and @letter='1188' and @page='XXIX' and @line='30'] -opus/marginalien/marginal[@index='7327' and @letter='1188' and @page='XXIX' and @line='31'] -opus/marginalien/marginal[@index='7328' and @letter='1188' and @page='XXX' and @line='4'] -opus/marginalien/marginal[@index='7329' and @letter='1188' and @page='XXX' and @line='5'] -opus/marginalien/marginal[@index='732' and @letter='46' and @page='116' and @line='19'] -opus/marginalien/marginal[@index='7330' and @letter='1188' and @page='XXX' and @line='7'] -opus/marginalien/marginal[@index='7331' and @letter='1188' and @page='XXX' and @line='8'] -opus/marginalien/marginal[@index='7332' and @letter='1188' and @page='XXX' and @line='14'] -opus/marginalien/marginal[@index='7333' and @letter='1188' and @page='XXX' and @line='14'] -opus/marginalien/marginal[@index='7334' and @letter='1188' and @page='XXX' and @line='25'] -opus/marginalien/marginal[@index='7335' and @letter='1183' and @page='513' and @line='9'] -opus/marginalien/marginal[@index='7336' and @letter='1183' and @page='513' and @line='15'] -opus/marginalien/marginal[@index='7337' and @letter='1183' and @page='513' and @line='25'] -opus/marginalien/marginal[@index='7338' and @letter='1183' and @page='514' and @line='11'] -opus/marginalien/marginal[@index='7339' and @letter='1183' and @page='515' and @line='6'] -opus/marginalien/marginal[@index='733' and @letter='46' and @page='116' and @line='24'] -opus/marginalien/marginal[@index='7340' and @letter='1183' and @page='515' and @line='10'] -opus/marginalien/marginal[@index='7341' and @letter='1183' and @page='515' and @line='10'] -opus/marginalien/marginal[@index='7342' and @letter='1183' and @page='515' and @line='12'] -opus/marginalien/marginal[@index='7343' and @letter='1183' and @page='515' and @line='14'] -opus/marginalien/marginal[@index='7344' and @letter='184' and @page='28' and @line='13'] -opus/marginalien/marginal[@index='7345' and @letter='188' and @page='35' and @line='33'] -opus/marginalien/marginal[@index='7346' and @letter='193' and @page='43' and @line='15'] -opus/marginalien/marginal[@index='7347' and @letter='193' and @page='43' and @line='27'] -opus/marginalien/marginal[@index='7348' and @letter='194' and @page='45' and @line='23'] -opus/marginalien/marginal[@index='7349' and @letter='194' and @page='45' and @line='24'] -opus/marginalien/marginal[@index='734' and @letter='46' and @page='116' and @line='32'] -opus/marginalien/marginal[@index='7350' and @letter='183' and @page='24' and @line='19'] -opus/marginalien/marginal[@index='7351' and @letter='182' and @page='23' and @line='30'] -opus/marginalien/marginal[@index='7352' and @letter='182' and @page='23' and @line='27'] -opus/marginalien/marginal[@index='7353' and @letter='184' and @page='26' and @line='24'] -opus/marginalien/marginal[@index='7354' and @letter='184' and @page='26' and @line='28'] -opus/marginalien/marginal[@index='7355' and @letter='184' and @page='26' and @line='29'] -opus/marginalien/marginal[@index='7356' and @letter='184' and @page='26' and @line='33'] -opus/marginalien/marginal[@index='7357' and @letter='184' and @page='27' and @line='7'] -opus/marginalien/marginal[@index='7358' and @letter='184' and @page='28' and @line='29'] -opus/marginalien/marginal[@index='7359' and @letter='185' and @page='30' and @line='14'] -opus/marginalien/marginal[@index='735' and @letter='46' and @page='116' and @line='35'] -opus/marginalien/marginal[@index='7360' and @letter='185' and @page='30' and @line='18'] -opus/marginalien/marginal[@index='7361' and @letter='186' and @page='33' and @line='19'] -opus/marginalien/marginal[@index='7362' and @letter='187' and @page='34' and @line='4'] -opus/marginalien/marginal[@index='7363' and @letter='1183' and @page='513' and @line='16'] -opus/marginalien/marginal[@index='7364' and @letter='1183' and @page='515' and @line='13'] -opus/marginalien/marginal[@index='7365' and @letter='188' and @page='36' and @line='1'] -opus/marginalien/marginal[@index='7366' and @letter='188' and @page='36' and @line='36'] -opus/marginalien/marginal[@index='7367' and @letter='189' and @page='37' and @line='21'] -opus/marginalien/marginal[@index='7368' and @letter='189' and @page='37' and @line='28'] -opus/marginalien/marginal[@index='7369' and @letter='190' and @page='38' and @line='4'] -opus/marginalien/marginal[@index='736' and @letter='46' and @page='116' and @line='37'] -opus/marginalien/marginal[@index='7370' and @letter='190' and @page='39' and @line='5'] -opus/marginalien/marginal[@index='7371' and @letter='191' and @page='39' and @line='28'] -opus/marginalien/marginal[@index='7372' and @letter='191' and @page='39' and @line='26'] -opus/marginalien/marginal[@index='7373' and @letter='193' and @page='41' and @line='29'] -opus/marginalien/marginal[@index='7374' and @letter='193' and @page='42' and @line='10'] -opus/marginalien/marginal[@index='7375' and @letter='193' and @page='42' and @line='12'] -opus/marginalien/marginal[@index='7376' and @letter='193' and @page='42' and @line='24'] -opus/marginalien/marginal[@index='7377' and @letter='194' and @page='44' and @line='11'] -opus/marginalien/marginal[@index='7378' and @letter='194' and @page='45' and @line='19'] -opus/marginalien/marginal[@index='7379' and @letter='194' and @page='45' and @line='25'] -opus/marginalien/marginal[@index='737' and @letter='46' and @page='117' and @line='6'] -opus/marginalien/marginal[@index='7380' and @letter='195' and @page='46' and @line='4'] -opus/marginalien/marginal[@index='7381' and @letter='195' and @page='46' and @line='6'] -opus/marginalien/marginal[@index='7382' and @letter='196' and @page='47' and @line='19'] -opus/marginalien/marginal[@index='7383' and @letter='196' and @page='47' and @line='25'] -opus/marginalien/marginal[@index='7384' and @letter='196' and @page='47' and @line='29'] -opus/marginalien/marginal[@index='7385' and @letter='197' and @page='49' and @line='27'] -opus/marginalien/marginal[@index='7386' and @letter='198' and @page='53' and @line='27'] -opus/marginalien/marginal[@index='7387' and @letter='198' and @page='53' and @line='28'] -opus/marginalien/marginal[@index='7388' and @letter='198' and @page='53' and @line='28'] -opus/marginalien/marginal[@index='7389' and @letter='198' and @page='53' and @line='28'] -opus/marginalien/marginal[@index='738' and @letter='47' and @page='118' and @line='1'] -opus/marginalien/marginal[@index='7390' and @letter='198' and @page='53' and @line='29'] -opus/marginalien/marginal[@index='7391' and @letter='198' and @page='53' and @line='29'] -opus/marginalien/marginal[@index='7392' and @letter='198' and @page='55' and @line='16'] -opus/marginalien/marginal[@index='7393' and @letter='198' and @page='55' and @line='16'] -opus/marginalien/marginal[@index='7394' and @letter='198' and @page='55' and @line='18'] -opus/marginalien/marginal[@index='7395' and @letter='198' and @page='55' and @line='31'] -opus/marginalien/marginal[@index='7396' and @letter='198' and @page='56' and @line='6'] -opus/marginalien/marginal[@index='7397' and @letter='199' and @page='57' and @line='8'] -opus/marginalien/marginal[@index='7398' and @letter='199' and @page='57' and @line='2'] -opus/marginalien/marginal[@index='7399' and @letter='199' and @page='57' and @line='15'] -opus/marginalien/marginal[@index='739' and @letter='47' and @page='118' and @line='13'] -opus/marginalien/marginal[@index='73' and @letter='5' and @page='13' and @line='4'] -opus/marginalien/marginal[@index='7400' and @letter='200' and @page='58' and @line='16'] -opus/marginalien/marginal[@index='7401' and @letter='201' and @page='60' and @line='13'] -opus/marginalien/marginal[@index='7402' and @letter='201' and @page='61' and @line='13'] -opus/marginalien/marginal[@index='7403' and @letter='202' and @page='62' and @line='28'] -opus/marginalien/marginal[@index='7404' and @letter='202' and @page='62' and @line='30'] -opus/marginalien/marginal[@index='7405' and @letter='202' and @page='63' and @line='18'] -opus/marginalien/marginal[@index='7406' and @letter='202' and @page='66' and @line='36'] -opus/marginalien/marginal[@index='7407' and @letter='202' and @page='68' and @line='14'] -opus/marginalien/marginal[@index='7408' and @letter='203' and @page='69' and @line='4'] -opus/marginalien/marginal[@index='7409' and @letter='203' and @page='69' and @line='19'] -opus/marginalien/marginal[@index='740' and @letter='47' and @page='118' and @line='29'] -opus/marginalien/marginal[@index='7410' and @letter='202' and @page='487' and @line='31'] -opus/marginalien/marginal[@index='7411' and @letter='202' and @page='488' and @line='3'] -opus/marginalien/marginal[@index='7412' and @letter='202' and @page='488' and @line='20'] -opus/marginalien/marginal[@index='7413' and @letter='202' and @page='488' and @line='30'] -opus/marginalien/marginal[@index='7414' and @letter='202' and @page='489' and @line='8'] -opus/marginalien/marginal[@index='7415' and @letter='202' and @page='489' and @line='21'] -opus/marginalien/marginal[@index='7416' and @letter='202' and @page='489' and @line='24'] -opus/marginalien/marginal[@index='7417' and @letter='203' and @page='69' and @line='21'] -opus/marginalien/marginal[@index='7418' and @letter='203' and @page='69' and @line='28'] -opus/marginalien/marginal[@index='7419' and @letter='203' and @page='70' and @line='2'] -opus/marginalien/marginal[@index='741' and @letter='47' and @page='118' and @line='31'] -opus/marginalien/marginal[@index='7420' and @letter='203' and @page='71' and @line='4'] -opus/marginalien/marginal[@index='7421' and @letter='203' and @page='71' and @line='8'] -opus/marginalien/marginal[@index='7422' and @letter='203' and @page='71' and @line='11'] -opus/marginalien/marginal[@index='7423' and @letter='203' and @page='72' and @line='17'] -opus/marginalien/marginal[@index='7424' and @letter='203' and @page='74' and @line='15'] -opus/marginalien/marginal[@index='7427' and @letter='203' and @page='74' and @line='24'] -opus/marginalien/marginal[@index='7428' and @letter='203' and @page='74' and @line='27'] -opus/marginalien/marginal[@index='7429' and @letter='203' and @page='74' and @line='27'] -opus/marginalien/marginal[@index='742' and @letter='47' and @page='119' and @line='2'] -opus/marginalien/marginal[@index='7430' and @letter='203' and @page='74' and @line='30'] -opus/marginalien/marginal[@index='7431' and @letter='203' and @page='74' and @line='30'] -opus/marginalien/marginal[@index='7432' and @letter='203' and @page='74' and @line='33'] -opus/marginalien/marginal[@index='7433' and @letter='203' and @page='74' and @line='34'] -opus/marginalien/marginal[@index='7434' and @letter='203' and @page='74' and @line='36'] -opus/marginalien/marginal[@index='7435' and @letter='203' and @page='75' and @line='1'] -opus/marginalien/marginal[@index='7436' and @letter='203' and @page='75' and @line='11'] -opus/marginalien/marginal[@index='7437' and @letter='203' and @page='75' and @line='19'] -opus/marginalien/marginal[@index='7438' and @letter='203' and @page='75' and @line='19'] -opus/marginalien/marginal[@index='7439' and @letter='203' and @page='75' and @line='19'] -opus/marginalien/marginal[@index='743' and @letter='47' and @page='119' and @line='4'] -opus/marginalien/marginal[@index='7440' and @letter='203' and @page='75' and @line='20'] -opus/marginalien/marginal[@index='7441' and @letter='203' and @page='75' and @line='20'] -opus/marginalien/marginal[@index='7442' and @letter='203' and @page='75' and @line='20'] -opus/marginalien/marginal[@index='7443' and @letter='203' and @page='75' and @line='23'] -opus/marginalien/marginal[@index='7444' and @letter='203' and @page='75' and @line='23'] -opus/marginalien/marginal[@index='7445' and @letter='203' and @page='75' and @line='23'] -opus/marginalien/marginal[@index='7446' and @letter='203' and @page='75' and @line='24'] -opus/marginalien/marginal[@index='7447' and @letter='203' and @page='75' and @line='24'] -opus/marginalien/marginal[@index='7448' and @letter='203' and @page='75' and @line='25'] -opus/marginalien/marginal[@index='7449' and @letter='203' and @page='75' and @line='27'] -opus/marginalien/marginal[@index='744' and @letter='47' and @page='119' and @line='35'] -opus/marginalien/marginal[@index='7450' and @letter='203' and @page='75' and @line='28'] -opus/marginalien/marginal[@index='7451' and @letter='203' and @page='75' and @line='31'] -opus/marginalien/marginal[@index='7452' and @letter='203' and @page='76' and @line='1'] -opus/marginalien/marginal[@index='7453' and @letter='203' and @page='76' and @line='2'] -opus/marginalien/marginal[@index='7454' and @letter='203' and @page='76' and @line='10'] -opus/marginalien/marginal[@index='7455' and @letter='203' and @page='76' and @line='12'] -opus/marginalien/marginal[@index='7456' and @letter='203' and @page='76' and @line='12'] -opus/marginalien/marginal[@index='7457' and @letter='203' and @page='76' and @line='19'] -opus/marginalien/marginal[@index='7458' and @letter='203' and @page='76' and @line='19'] -opus/marginalien/marginal[@index='7459' and @letter='203' and @page='76' and @line='21'] -opus/marginalien/marginal[@index='745' and @letter='48' and @page='120' and @line='3'] -opus/marginalien/marginal[@index='7460' and @letter='203' and @page='76' and @line='22'] -opus/marginalien/marginal[@index='7461' and @letter='203' and @page='76' and @line='23'] -opus/marginalien/marginal[@index='7462' and @letter='204' and @page='76' and @line='27'] -opus/marginalien/marginal[@index='7463' and @letter='204' and @page='76' and @line='27'] -opus/marginalien/marginal[@index='7464' and @letter='204' and @page='76' and @line='29'] -opus/marginalien/marginal[@index='7465' and @letter='204' and @page='76' and @line='29'] -opus/marginalien/marginal[@index='7466' and @letter='204' and @page='76' and @line='30'] -opus/marginalien/marginal[@index='7467' and @letter='204' and @page='76' and @line='30'] -opus/marginalien/marginal[@index='7468' and @letter='204' and @page='76' and @line='32'] -opus/marginalien/marginal[@index='7469' and @letter='204' and @page='76' and @line='33'] -opus/marginalien/marginal[@index='746' and @letter='48' and @page='120' and @line='6'] -opus/marginalien/marginal[@index='7470' and @letter='204' and @page='76' and @line='34'] -opus/marginalien/marginal[@index='7471' and @letter='204' and @page='76' and @line='34'] -opus/marginalien/marginal[@index='7472' and @letter='204' and @page='77' and @line='3'] -opus/marginalien/marginal[@index='7473' and @letter='204' and @page='77' and @line='4'] -opus/marginalien/marginal[@index='7474' and @letter='204' and @page='77' and @line='7'] -opus/marginalien/marginal[@index='7475' and @letter='204' and @page='77' and @line='13'] -opus/marginalien/marginal[@index='7476' and @letter='204' and @page='77' and @line='15'] -opus/marginalien/marginal[@index='7477' and @letter='204' and @page='77' and @line='16'] -opus/marginalien/marginal[@index='7478' and @letter='204' and @page='77' and @line='21'] -opus/marginalien/marginal[@index='7479' and @letter='204' and @page='77' and @line='22'] -opus/marginalien/marginal[@index='747' and @letter='48' and @page='120' and @line='13'] -opus/marginalien/marginal[@index='7480' and @letter='204' and @page='77' and @line='24'] -opus/marginalien/marginal[@index='7481' and @letter='204' and @page='77' and @line='27'] -opus/marginalien/marginal[@index='7482' and @letter='204' and @page='77' and @line='31'] -opus/marginalien/marginal[@index='7483' and @letter='204' and @page='77' and @line='33'] -opus/marginalien/marginal[@index='7484' and @letter='204' and @page='77' and @line='34'] -opus/marginalien/marginal[@index='7485' and @letter='204' and @page='77' and @line='35'] -opus/marginalien/marginal[@index='7486' and @letter='204' and @page='78' and @line='1'] -opus/marginalien/marginal[@index='7487' and @letter='204' and @page='78' and @line='7'] -opus/marginalien/marginal[@index='7488' and @letter='204' and @page='78' and @line='8'] -opus/marginalien/marginal[@index='7489' and @letter='204' and @page='78' and @line='10'] -opus/marginalien/marginal[@index='748' and @letter='48' and @page='120' and @line='15'] -opus/marginalien/marginal[@index='7490' and @letter='204' and @page='78' and @line='10'] -opus/marginalien/marginal[@index='7491' and @letter='204' and @page='78' and @line='11'] -opus/marginalien/marginal[@index='7492' and @letter='204' and @page='78' and @line='12'] -opus/marginalien/marginal[@index='7493' and @letter='204' and @page='78' and @line='15'] -opus/marginalien/marginal[@index='7494' and @letter='204' and @page='78' and @line='16'] -opus/marginalien/marginal[@index='7495' and @letter='204' and @page='78' and @line='28'] -opus/marginalien/marginal[@index='7496' and @letter='204' and @page='78' and @line='28'] -opus/marginalien/marginal[@index='7497' and @letter='204' and @page='78' and @line='29'] -opus/marginalien/marginal[@index='7499' and @letter='204' and @page='78' and @line='32'] -opus/marginalien/marginal[@index='749' and @letter='48' and @page='120' and @line='17'] -opus/marginalien/marginal[@index='74' and @letter='5' and @page='13' and @line='7'] -opus/marginalien/marginal[@index='7500' and @letter='204' and @page='78' and @line='34'] -opus/marginalien/marginal[@index='7501' and @letter='204' and @page='79' and @line='1'] -opus/marginalien/marginal[@index='7502' and @letter='204' and @page='79' and @line='4'] -opus/marginalien/marginal[@index='7503' and @letter='204' and @page='79' and @line='8'] -opus/marginalien/marginal[@index='7504' and @letter='204' and @page='79' and @line='13'] -opus/marginalien/marginal[@index='7505' and @letter='204' and @page='79' and @line='20'] -opus/marginalien/marginal[@index='7506' and @letter='204' and @page='79' and @line='26'] -opus/marginalien/marginal[@index='7507' and @letter='204' and @page='79' and @line='29'] -opus/marginalien/marginal[@index='7508' and @letter='204' and @page='79' and @line='33'] -opus/marginalien/marginal[@index='7509' and @letter='204' and @page='79' and @line='34'] -opus/marginalien/marginal[@index='750' and @letter='48' and @page='120' and @line='24'] -opus/marginalien/marginal[@index='7510' and @letter='204' and @page='80' and @line='1'] -opus/marginalien/marginal[@index='7511' and @letter='204' and @page='80' and @line='4'] -opus/marginalien/marginal[@index='7512' and @letter='204' and @page='80' and @line='19'] -opus/marginalien/marginal[@index='7513' and @letter='204' and @page='80' and @line='22'] -opus/marginalien/marginal[@index='7514' and @letter='204' and @page='80' and @line='30'] -opus/marginalien/marginal[@index='7515' and @letter='204' and @page='81' and @line='1'] -opus/marginalien/marginal[@index='7516' and @letter='204' and @page='81' and @line='3'] -opus/marginalien/marginal[@index='7517' and @letter='204' and @page='81' and @line='5'] -opus/marginalien/marginal[@index='7518' and @letter='205' and @page='81' and @line='10'] -opus/marginalien/marginal[@index='7519' and @letter='205' and @page='81' and @line='14'] -opus/marginalien/marginal[@index='751' and @letter='48' and @page='120' and @line='24'] -opus/marginalien/marginal[@index='7520' and @letter='205' and @page='81' and @line='14'] -opus/marginalien/marginal[@index='7521' and @letter='205' and @page='81' and @line='15'] -opus/marginalien/marginal[@index='7522' and @letter='205' and @page='81' and @line='19'] -opus/marginalien/marginal[@index='7523' and @letter='205' and @page='81' and @line='21'] -opus/marginalien/marginal[@index='7524' and @letter='205' and @page='81' and @line='21'] -opus/marginalien/marginal[@index='7525' and @letter='205' and @page='81' and @line='30'] -opus/marginalien/marginal[@index='7526' and @letter='205' and @page='81' and @line='31'] -opus/marginalien/marginal[@index='7527' and @letter='205' and @page='81' and @line='31'] -opus/marginalien/marginal[@index='7528' and @letter='205' and @page='82' and @line='1'] -opus/marginalien/marginal[@index='752' and @letter='48' and @page='120' and @line='25'] -opus/marginalien/marginal[@index='7531' and @letter='205' and @page='82' and @line='5'] -opus/marginalien/marginal[@index='7532' and @letter='205' and @page='82' and @line='6'] -opus/marginalien/marginal[@index='7533' and @letter='205' and @page='82' and @line='6'] -opus/marginalien/marginal[@index='7534' and @letter='205' and @page='82' and @line='7'] -opus/marginalien/marginal[@index='7535' and @letter='205' and @page='82' and @line='11'] -opus/marginalien/marginal[@index='7536' and @letter='205' and @page='82' and @line='21'] -opus/marginalien/marginal[@index='7537' and @letter='205' and @page='82' and @line='22'] -opus/marginalien/marginal[@index='7538' and @letter='206' and @page='82' and @line='28'] -opus/marginalien/marginal[@index='7539' and @letter='206' and @page='82' and @line='33'] -opus/marginalien/marginal[@index='753' and @letter='48' and @page='120' and @line='27'] -opus/marginalien/marginal[@index='7540' and @letter='206' and @page='83' and @line='1'] -opus/marginalien/marginal[@index='7541' and @letter='206' and @page='83' and @line='6'] -opus/marginalien/marginal[@index='7542' and @letter='206' and @page='83' and @line='9'] -opus/marginalien/marginal[@index='7543' and @letter='206' and @page='83' and @line='12'] -opus/marginalien/marginal[@index='7544' and @letter='206' and @page='83' and @line='13'] -opus/marginalien/marginal[@index='7545' and @letter='206' and @page='83' and @line='14'] -opus/marginalien/marginal[@index='7546' and @letter='206' and @page='83' and @line='14'] -opus/marginalien/marginal[@index='7547' and @letter='206' and @page='83' and @line='14'] -opus/marginalien/marginal[@index='7549' and @letter='206' and @page='83' and @line='17'] -opus/marginalien/marginal[@index='754' and @letter='48' and @page='120' and @line='30'] -opus/marginalien/marginal[@index='7550' and @letter='206' and @page='83' and @line='20'] -opus/marginalien/marginal[@index='7551' and @letter='206' and @page='83' and @line='25'] -opus/marginalien/marginal[@index='7552' and @letter='206' and @page='83' and @line='26'] -opus/marginalien/marginal[@index='7553' and @letter='206' and @page='83' and @line='26'] -opus/marginalien/marginal[@index='7554' and @letter='206' and @page='83' and @line='33'] -opus/marginalien/marginal[@index='7555' and @letter='206' and @page='83' and @line='34'] -opus/marginalien/marginal[@index='7556' and @letter='206' and @page='83' and @line='37'] -opus/marginalien/marginal[@index='7557' and @letter='206' and @page='84' and @line='3'] -opus/marginalien/marginal[@index='7558' and @letter='206' and @page='84' and @line='5'] -opus/marginalien/marginal[@index='7559' and @letter='206' and @page='84' and @line='12'] -opus/marginalien/marginal[@index='755' and @letter='48' and @page='120' and @line='36'] -opus/marginalien/marginal[@index='7560' and @letter='206' and @page='84' and @line='12'] -opus/marginalien/marginal[@index='7561' and @letter='206' and @page='84' and @line='16'] -opus/marginalien/marginal[@index='7562' and @letter='206' and @page='84' and @line='18'] -opus/marginalien/marginal[@index='7564' and @letter='206' and @page='84' and @line='23'] -opus/marginalien/marginal[@index='7565' and @letter='206' and @page='84' and @line='23'] -opus/marginalien/marginal[@index='7566' and @letter='206' and @page='84' and @line='27'] -opus/marginalien/marginal[@index='7567' and @letter='206' and @page='84' and @line='28'] -opus/marginalien/marginal[@index='7568' and @letter='206' and @page='84' and @line='36'] -opus/marginalien/marginal[@index='7569' and @letter='206' and @page='85' and @line='7'] -opus/marginalien/marginal[@index='756' and @letter='49' and @page='121' and @line='1'] -opus/marginalien/marginal[@index='7570' and @letter='206' and @page='85' and @line='23'] -opus/marginalien/marginal[@index='7571' and @letter='206' and @page='85' and @line='33'] -opus/marginalien/marginal[@index='7572' and @letter='206' and @page='85' and @line='35'] -opus/marginalien/marginal[@index='7573' and @letter='206' and @page='86' and @line='1'] -opus/marginalien/marginal[@index='7574' and @letter='206' and @page='86' and @line='1'] -opus/marginalien/marginal[@index='7575' and @letter='206' and @page='86' and @line='3'] -opus/marginalien/marginal[@index='7576' and @letter='206' and @page='86' and @line='11'] -opus/marginalien/marginal[@index='7577' and @letter='206' and @page='86' and @line='11'] -opus/marginalien/marginal[@index='7579' and @letter='206' and @page='86' and @line='34'] -opus/marginalien/marginal[@index='757' and @letter='49' and @page='121' and @line='18'] -opus/marginalien/marginal[@index='7580' and @letter='206' and @page='86' and @line='35'] -opus/marginalien/marginal[@index='7581' and @letter='206' and @page='87' and @line='1'] -opus/marginalien/marginal[@index='7582' and @letter='206' and @page='87' and @line='2'] -opus/marginalien/marginal[@index='7583' and @letter='206' and @page='87' and @line='4'] -opus/marginalien/marginal[@index='7584' and @letter='206' and @page='87' and @line='5'] -opus/marginalien/marginal[@index='7585' and @letter='206' and @page='87' and @line='10'] -opus/marginalien/marginal[@index='7586' and @letter='206' and @page='87' and @line='28'] -opus/marginalien/marginal[@index='7587' and @letter='206' and @page='87' and @line='31'] -opus/marginalien/marginal[@index='7588' and @letter='206' and @page='87' and @line='35'] -opus/marginalien/marginal[@index='7589' and @letter='206' and @page='88' and @line='4'] -opus/marginalien/marginal[@index='758' and @letter='49' and @page='121' and @line='36'] -opus/marginalien/marginal[@index='7590' and @letter='206' and @page='88' and @line='5'] -opus/marginalien/marginal[@index='7591' and @letter='206' and @page='88' and @line='6'] -opus/marginalien/marginal[@index='7592' and @letter='206' and @page='88' and @line='9'] -opus/marginalien/marginal[@index='7593' and @letter='206' and @page='88' and @line='13'] -opus/marginalien/marginal[@index='7594' and @letter='206' and @page='88' and @line='21'] -opus/marginalien/marginal[@index='7595' and @letter='206' and @page='88' and @line='28'] -opus/marginalien/marginal[@index='7596' and @letter='206' and @page='88' and @line='29'] -opus/marginalien/marginal[@index='7597' and @letter='206' and @page='88' and @line='30'] -opus/marginalien/marginal[@index='7598' and @letter='204' and @page='79' and @line='18'] -opus/marginalien/marginal[@index='7599' and @letter='205' and @page='81' and @line='13'] -opus/marginalien/marginal[@index='759' and @letter='49' and @page='122' and @line='3'] -opus/marginalien/marginal[@index='75' and @letter='5' and @page='13' and @line='9'] -opus/marginalien/marginal[@index='7600' and @letter='206' and @page='83' and @line='10'] -opus/marginalien/marginal[@index='7601' and @letter='206' and @page='83' and @line='20'] -opus/marginalien/marginal[@index='7602' and @letter='207' and @page='89' and @line='14'] -opus/marginalien/marginal[@index='7603' and @letter='207' and @page='89' and @line='19'] -opus/marginalien/marginal[@index='7604' and @letter='207' and @page='89' and @line='25'] -opus/marginalien/marginal[@index='7605' and @letter='208' and @page='93' and @line='17'] -opus/marginalien/marginal[@index='7606' and @letter='208' and @page='93' and @line='17'] -opus/marginalien/marginal[@index='7607' and @letter='208' and @page='94' and @line='17'] -opus/marginalien/marginal[@index='7608' and @letter='208' and @page='94' and @line='28'] -opus/marginalien/marginal[@index='7609' and @letter='209' and @page='99' and @line='24'] -opus/marginalien/marginal[@index='760' and @letter='49' and @page='122' and @line='26'] -opus/marginalien/marginal[@index='7610' and @letter='209' and @page='99' and @line='26'] -opus/marginalien/marginal[@index='7611' and @letter='209' and @page='100' and @line='10'] -opus/marginalien/marginal[@index='7612' and @letter='209' and @page='100' and @line='12'] -opus/marginalien/marginal[@index='7613' and @letter='209' and @page='100' and @line='26'] -opus/marginalien/marginal[@index='7614' and @letter='209' and @page='100' and @line='27'] -opus/marginalien/marginal[@index='7615' and @letter='209' and @page='100' and @line='35'] -opus/marginalien/marginal[@index='7617' and @letter='210' and @page='101' and @line='3'] -opus/marginalien/marginal[@index='7618' and @letter='210' and @page='102' and @line='1'] -opus/marginalien/marginal[@index='7619' and @letter='212' and @page='103' and @line='18'] -opus/marginalien/marginal[@index='761' and @letter='49' and @page='122' and @line='30'] -opus/marginalien/marginal[@index='7620' and @letter='212' and @page='103' and @line='31'] -opus/marginalien/marginal[@index='7621' and @letter='212' and @page='104' and @line='13'] -opus/marginalien/marginal[@index='7622' and @letter='178' and @page='10' and @line='2'] -opus/marginalien/marginal[@index='7622' and @letter='212' and @page='104' and @line='24'] -opus/marginalien/marginal[@index='7623' and @letter='189' and @page='37' and @line='10'] -opus/marginalien/marginal[@index='7623' and @letter='212' and @page='104' and @line='30'] -opus/marginalien/marginal[@index='7624' and @letter='197' and @page='52' and @line='15'] -opus/marginalien/marginal[@index='7624' and @letter='212' and @page='105' and @line='12'] -opus/marginalien/marginal[@index='7625' and @letter='224' and @page='142' and @line='14'] -opus/marginalien/marginal[@index='7626' and @letter='179' and @page='13' and @line='19'] -opus/marginalien/marginal[@index='7626' and @letter='212' and @page='105' and @line='33'] -opus/marginalien/marginal[@index='7627' and @letter='179' and @page='14' and @line='14'] -opus/marginalien/marginal[@index='7627' and @letter='212' and @page='106' and @line='2'] -opus/marginalien/marginal[@index='7628' and @letter='187' and @page='34' and @line='23'] -opus/marginalien/marginal[@index='7628' and @letter='212' and @page='107' and @line='8'] -opus/marginalien/marginal[@index='7629' and @letter='193' and @page='43' and @line='9'] -opus/marginalien/marginal[@index='7629' and @letter='212' and @page='107' and @line='15'] -opus/marginalien/marginal[@index='762' and @letter='49' and @page='122' and @line='35'] -opus/marginalien/marginal[@index='7630' and @letter='194' and @page='44' and @line='13'] -opus/marginalien/marginal[@index='7630' and @letter='212' and @page='107' and @line='24'] -opus/marginalien/marginal[@index='7631' and @letter='194' and @page='44' and @line='25'] -opus/marginalien/marginal[@index='7631' and @letter='212' and @page='108' and @line='2'] -opus/marginalien/marginal[@index='7632' and @letter='195' and @page='46' and @line='17'] -opus/marginalien/marginal[@index='7632' and @letter='212' and @page='108' and @line='36'] -opus/marginalien/marginal[@index='7633' and @letter='198' and @page='53' and @line='25'] -opus/marginalien/marginal[@index='7633' and @letter='212' and @page='109' and @line='8'] -opus/marginalien/marginal[@index='7634' and @letter='198' and @page='53' and @line='24'] -opus/marginalien/marginal[@index='7635' and @letter='198' and @page='54' and @line='35'] -opus/marginalien/marginal[@index='7635' and @letter='213' and @page='109' and @line='31'] -opus/marginalien/marginal[@index='7636' and @letter='198' and @page='54' and @line='37'] -opus/marginalien/marginal[@index='7637' and @letter='198' and @page='55' and @line='3'] -opus/marginalien/marginal[@index='7637' and @letter='214' and @page='112' and @line='33'] -opus/marginalien/marginal[@index='7638' and @letter='198' and @page='55' and @line='5'] -opus/marginalien/marginal[@index='7638' and @letter='214' and @page='114' and @line='26'] -opus/marginalien/marginal[@index='7639' and @letter='198' and @page='55' and @line='7'] -opus/marginalien/marginal[@index='7639' and @letter='214' and @page='114' and @line='27'] -opus/marginalien/marginal[@index='7640' and @letter='198' and @page='55' and @line='9'] -opus/marginalien/marginal[@index='7640' and @letter='214' and @page='115' and @line='2'] -opus/marginalien/marginal[@index='7641' and @letter='198' and @page='55' and @line='11'] -opus/marginalien/marginal[@index='7641' and @letter='214' and @page='115' and @line='30'] -opus/marginalien/marginal[@index='7642' and @letter='198' and @page='55' and @line='12'] -opus/marginalien/marginal[@index='7642' and @letter='214' and @page='115' and @line='34'] -opus/marginalien/marginal[@index='7643' and @letter='198' and @page='55' and @line='13'] -opus/marginalien/marginal[@index='7644' and @letter='198' and @page='55' and @line='15'] -opus/marginalien/marginal[@index='7644' and @letter='215' and @page='117' and @line='2'] -opus/marginalien/marginal[@index='7645' and @letter='198' and @page='55' and @line='15'] -opus/marginalien/marginal[@index='7645' and @letter='215' and @page='117' and @line='9'] -opus/marginalien/marginal[@index='7646' and @letter='198' and @page='55' and @line='15'] -opus/marginalien/marginal[@index='7646' and @letter='215' and @page='121' and @line='11'] -opus/marginalien/marginal[@index='7647' and @letter='198' and @page='55' and @line='19'] -opus/marginalien/marginal[@index='7647' and @letter='215' and @page='121' and @line='14'] -opus/marginalien/marginal[@index='7648' and @letter='198' and @page='55' and @line='21'] -opus/marginalien/marginal[@index='7649' and @letter='198' and @page='55' and @line='25'] -opus/marginalien/marginal[@index='7649' and @letter='216' and @page='122' and @line='5'] -opus/marginalien/marginal[@index='764' and @letter='49' and @page='123' and @line='11'] -opus/marginalien/marginal[@index='7650' and @letter='198' and @page='55' and @line='22'] -opus/marginalien/marginal[@index='7650' and @letter='216' and @page='123' and @line='7'] -opus/marginalien/marginal[@index='7651' and @letter='198' and @page='55' and @line='34'] -opus/marginalien/marginal[@index='7651' and @letter='219' and @page='127' and @line='31'] -opus/marginalien/marginal[@index='7652' and @letter='198' and @page='56' and @line='3'] -opus/marginalien/marginal[@index='7652' and @letter='219' and @page='128' and @line='11'] -opus/marginalien/marginal[@index='7653' and @letter='198' and @page='56' and @line='6'] -opus/marginalien/marginal[@index='7653' and @letter='219' and @page='129' and @line='6'] -opus/marginalien/marginal[@index='7654' and @letter='198' and @page='56' and @line='9'] -opus/marginalien/marginal[@index='7654' and @letter='219' and @page='129' and @line='7'] -opus/marginalien/marginal[@index='7655' and @letter='198' and @page='56' and @line='14'] -opus/marginalien/marginal[@index='7655' and @letter='219' and @page='129' and @line='10'] -opus/marginalien/marginal[@index='7656' and @letter='198' and @page='56' and @line='20'] -opus/marginalien/marginal[@index='7656' and @letter='219' and @page='129' and @line='20'] -opus/marginalien/marginal[@index='7657' and @letter='198' and @page='56' and @line='23'] -opus/marginalien/marginal[@index='7657' and @letter='220' and @page='132' and @line='10'] -opus/marginalien/marginal[@index='7658' and @letter='198' and @page='56' and @line='23'] -opus/marginalien/marginal[@index='7658' and @letter='220' and @page='132' and @line='37'] -opus/marginalien/marginal[@index='7659' and @letter='198' and @page='56' and @line='24'] -opus/marginalien/marginal[@index='7659' and @letter='220' and @page='133' and @line='2'] -opus/marginalien/marginal[@index='765' and @letter='49' and @page='123' and @line='12'] -opus/marginalien/marginal[@index='7660' and @letter='198' and @page='56' and @line='24'] -opus/marginalien/marginal[@index='7660' and @letter='220' and @page='134' and @line='1'] -opus/marginalien/marginal[@index='7661' and @letter='198' and @page='56' and @line='26'] -opus/marginalien/marginal[@index='7661' and @letter='220' and @page='134' and @line='8'] -opus/marginalien/marginal[@index='7662' and @letter='198' and @page='56' and @line='26'] -opus/marginalien/marginal[@index='7662' and @letter='221' and @page='134' and @line='17'] -opus/marginalien/marginal[@index='7663' and @letter='198' and @page='56' and @line='36'] -opus/marginalien/marginal[@index='7663' and @letter='221' and @page='134' and @line='18'] -opus/marginalien/marginal[@index='7664' and @letter='201' and @page='61' and @line='5'] -opus/marginalien/marginal[@index='7664' and @letter='221' and @page='134' and @line='34'] -opus/marginalien/marginal[@index='7665' and @letter='201' and @page='61' and @line='14'] -opus/marginalien/marginal[@index='7665' and @letter='221' and @page='135' and @line='6'] -opus/marginalien/marginal[@index='7666' and @letter='202' and @page='62' and @line='1'] -opus/marginalien/marginal[@index='7666' and @letter='221' and @page='135' and @line='8'] -opus/marginalien/marginal[@index='7667' and @letter='202' and @page='63' and @line='15'] -opus/marginalien/marginal[@index='7667' and @letter='221' and @page='135' and @line='8'] -opus/marginalien/marginal[@index='7668' and @letter='202' and @page='63' and @line='17'] -opus/marginalien/marginal[@index='7668' and @letter='221' and @page='135' and @line='9'] -opus/marginalien/marginal[@index='7669' and @letter='202' and @page='63' and @line='24'] -opus/marginalien/marginal[@index='7669' and @letter='221' and @page='135' and @line='12'] -opus/marginalien/marginal[@index='766' and @letter='49' and @page='123' and @line='12'] -opus/marginalien/marginal[@index='7670' and @letter='202' and @page='65' and @line='9'] -opus/marginalien/marginal[@index='7670' and @letter='221' and @page='135' and @line='19'] -opus/marginalien/marginal[@index='7671' and @letter='202' and @page='66' and @line='25'] -opus/marginalien/marginal[@index='7671' and @letter='222' and @page='136' and @line='20'] -opus/marginalien/marginal[@index='7672' and @letter='202' and @page='68' and @line='3'] -opus/marginalien/marginal[@index='7673' and @letter='223' and @page='140' and @line='17'] -opus/marginalien/marginal[@index='7674' and @letter='224' and @page='142' and @line='17'] -opus/marginalien/marginal[@index='7675' and @letter='224' and @page='142' and @line='19'] -opus/marginalien/marginal[@index='7676' and @letter='224' and @page='142' and @line='22'] -opus/marginalien/marginal[@index='7677' and @letter='224' and @page='142' and @line='25'] -opus/marginalien/marginal[@index='7678' and @letter='224' and @page='143' and @line='21'] -opus/marginalien/marginal[@index='7679' and @letter='224' and @page='143' and @line='29'] -opus/marginalien/marginal[@index='767' and @letter='49' and @page='123' and @line='13'] -opus/marginalien/marginal[@index='7680' and @letter='225' and @page='145' and @line='31'] -opus/marginalien/marginal[@index='7681' and @letter='225' and @page='146' and @line='19'] -opus/marginalien/marginal[@index='7682' and @letter='226' and @page='148' and @line='9'] -opus/marginalien/marginal[@index='7683' and @letter='227' and @page='149' and @line='33'] -opus/marginalien/marginal[@index='7684' and @letter='227' and @page='150' and @line='28'] -opus/marginalien/marginal[@index='7685' and @letter='227' and @page='152' and @line='22'] -opus/marginalien/marginal[@index='7686' and @letter='227' and @page='152' and @line='32'] -opus/marginalien/marginal[@index='7687' and @letter='227' and @page='153' and @line='24'] -opus/marginalien/marginal[@index='7689' and @letter='232' and @page='163' and @line='3'] -opus/marginalien/marginal[@index='768' and @letter='50' and @page='124' and @line='3'] -opus/marginalien/marginal[@index='7690' and @letter='232' and @page='164' and @line='20'] -opus/marginalien/marginal[@index='7691' and @letter='232' and @page='164' and @line='33'] -opus/marginalien/marginal[@index='7692' and @letter='233' and @page='166' and @line='4'] -opus/marginalien/marginal[@index='7693' and @letter='233' and @page='168' and @line='24'] -opus/marginalien/marginal[@index='7694' and @letter='233' and @page='168' and @line='24'] -opus/marginalien/marginal[@index='7695' and @letter='235' and @page='175' and @line='16'] -opus/marginalien/marginal[@index='7696' and @letter='236' and @page='177' and @line='14'] -opus/marginalien/marginal[@index='7697' and @letter='236' and @page='177' and @line='15'] -opus/marginalien/marginal[@index='7698' and @letter='237' and @page='178' and @line='33'] -opus/marginalien/marginal[@index='7699' and @letter='227' and @page='153' and @line='32'] -opus/marginalien/marginal[@index='769' and @letter='50' and @page='124' and @line='10'] -opus/marginalien/marginal[@index='76' and @letter='5' and @page='13' and @line='11'] -opus/marginalien/marginal[@index='7701' and @letter='217' and @page='123' and @line='31'] -opus/marginalien/marginal[@index='7702' and @letter='217' and @page='125' and @line='33'] -opus/marginalien/marginal[@index='7703' and @letter='217' and @page='125' and @line='35'] -opus/marginalien/marginal[@index='7704' and @letter='217' and @page='125' and @line='35'] -opus/marginalien/marginal[@index='7705' and @letter='219' and @page='128' and @line='21'] -opus/marginalien/marginal[@index='7706' and @letter='219' and @page='128' and @line='21'] -opus/marginalien/marginal[@index='7708' and @letter='220' and @page='133' and @line='13'] -opus/marginalien/marginal[@index='7709' and @letter='220' and @page='134' and @line='9'] -opus/marginalien/marginal[@index='770' and @letter='50' and @page='124' and @line='13'] -opus/marginalien/marginal[@index='7710' and @letter='221' and @page='135' and @line='15'] -opus/marginalien/marginal[@index='7711' and @letter='221' and @page='135' and @line='18'] -opus/marginalien/marginal[@index='7712' and @letter='221' and @page='135' and @line='18'] -opus/marginalien/marginal[@index='7714' and @letter='222' and @page='137' and @line='25'] -opus/marginalien/marginal[@index='7715' and @letter='222' and @page='137' and @line='28'] -opus/marginalien/marginal[@index='7716' and @letter='222' and @page='138' and @line='6'] -opus/marginalien/marginal[@index='7717' and @letter='222' and @page='138' and @line='17'] -opus/marginalien/marginal[@index='7718' and @letter='222' and @page='138' and @line='19'] -opus/marginalien/marginal[@index='7719' and @letter='223' and @page='140' and @line='34'] -opus/marginalien/marginal[@index='771' and @letter='50' and @page='124' and @line='14'] -opus/marginalien/marginal[@index='7720' and @letter='223' and @page='142' and @line='9'] -opus/marginalien/marginal[@index='7722' and @letter='225' and @page='146' and @line='9'] -opus/marginalien/marginal[@index='7724' and @letter='226' and @page='146' and @line='34'] -opus/marginalien/marginal[@index='7725' and @letter='226' and @page='147' and @line='3'] -opus/marginalien/marginal[@index='7726' and @letter='226' and @page='148' and @line='5'] -opus/marginalien/marginal[@index='7727' and @letter='227' and @page='153' and @line='31'] -opus/marginalien/marginal[@index='7728' and @letter='227' and @page='154' and @line='13'] -opus/marginalien/marginal[@index='7729' and @letter='227' and @page='154' and @line='19'] -opus/marginalien/marginal[@index='772' and @letter='50' and @page='124' and @line='17'] -opus/marginalien/marginal[@index='7730' and @letter='228' and @page='156' and @line='22'] -opus/marginalien/marginal[@index='7731' and @letter='161' and @page='421' and @line='11'] -opus/marginalien/marginal[@index='7734' and @letter='229' and @page='158' and @line='4'] -opus/marginalien/marginal[@index='7737' and @letter='231' and @page='161' and @line='1'] -opus/marginalien/marginal[@index='7738' and @letter='231' and @page='162' and @line='2'] -opus/marginalien/marginal[@index='773' and @letter='50' and @page='124' and @line='20'] -opus/marginalien/marginal[@index='7740' and @letter='232' and @page='165' and @line='1'] -opus/marginalien/marginal[@index='7743' and @letter='174' and @page='1' and @line='7'] -opus/marginalien/marginal[@index='7744' and @letter='176' and @page='4' and @line='34'] -opus/marginalien/marginal[@index='7745' and @letter='235' and @page='174' and @line='9'] -opus/marginalien/marginal[@index='7746' and @letter='235' and @page='175' and @line='20'] -opus/marginalien/marginal[@index='7747' and @letter='236' and @page='177' and @line='25'] -opus/marginalien/marginal[@index='7748' and @letter='236' and @page='177' and @line='26'] -opus/marginalien/marginal[@index='7749' and @letter='236' and @page='177' and @line='33'] -opus/marginalien/marginal[@index='774' and @letter='50' and @page='124' and @line='25'] -opus/marginalien/marginal[@index='7752' and @letter='236' and @page='177' and @line='35'] -opus/marginalien/marginal[@index='7753' and @letter='237' and @page='179' and @line='7'] -opus/marginalien/marginal[@index='7754' and @letter='203' and @page='71' and @line='23'] -opus/marginalien/marginal[@index='7755' and @letter='204' and @page='80' and @line='9'] -opus/marginalien/marginal[@index='7756' and @letter='238' and @page='180' and @line='16'] -opus/marginalien/marginal[@index='7757' and @letter='239' and @page='182' and @line='29'] -opus/marginalien/marginal[@index='7758' and @letter='207' and @page='89' and @line='29'] -opus/marginalien/marginal[@index='7759' and @letter='212' and @page='106' and @line='7'] -opus/marginalien/marginal[@index='775' and @letter='50' and @page='124' and @line='32'] -opus/marginalien/marginal[@index='7760' and @letter='219' and @page='128' and @line='14'] -opus/marginalien/marginal[@index='7761' and @letter='179' and @page='14' and @line='29'] -opus/marginalien/marginal[@index='7762' and @letter='180' and @page='17' and @line='31'] -opus/marginalien/marginal[@index='7763' and @letter='184' and @page='28' and @line='25'] -opus/marginalien/marginal[@index='7764' and @letter='185' and @page='30' and @line='28'] -opus/marginalien/marginal[@index='7765' and @letter='198' and @page='56' and @line='10'] -opus/marginalien/marginal[@index='7766' and @letter='202' and @page='68' and @line='20'] -opus/marginalien/marginal[@index='7767' and @letter='204' and @page='78' and @line='31'] -opus/marginalien/marginal[@index='7768' and @letter='208' and @page='94' and @line='16'] -opus/marginalien/marginal[@index='7769' and @letter='209' and @page='97' and @line='26'] -opus/marginalien/marginal[@index='776' and @letter='50' and @page='124' and @line='33'] -opus/marginalien/marginal[@index='7770' and @letter='209' and @page='99' and @line='30'] -opus/marginalien/marginal[@index='7771' and @letter='214' and @page='112' and @line='9'] -opus/marginalien/marginal[@index='7772' and @letter='217' and @page='124' and @line='9'] -opus/marginalien/marginal[@index='7773' and @letter='206' and @page='85' and @line='6'] -opus/marginalien/marginal[@index='7774' and @letter='231' and @page='160' and @line='34'] -opus/marginalien/marginal[@index='7775' and @letter='219' and @page='129' and @line='30'] -opus/marginalien/marginal[@index='7776' and @letter='222' and @page='138' and @line='5'] -opus/marginalien/marginal[@index='7777' and @letter='224' and @page='143' and @line='24'] -opus/marginalien/marginal[@index='7778' and @letter='227' and @page='153' and @line='3'] -opus/marginalien/marginal[@index='7779' and @letter='227' and @page='155' and @line='8'] -opus/marginalien/marginal[@index='777' and @letter='51' and @page='125' and @line='7'] -opus/marginalien/marginal[@index='7780' and @letter='228' and @page='157' and @line='24'] -opus/marginalien/marginal[@index='7781' and @letter='229' and @page='158' and @line='33'] -opus/marginalien/marginal[@index='7782' and @letter='237' and @page='179' and @line='11'] -opus/marginalien/marginal[@index='7783' and @letter='240' and @page='183' and @line='3'] -opus/marginalien/marginal[@index='7784' and @letter='240' and @page='183' and @line='7'] -opus/marginalien/marginal[@index='7785' and @letter='240' and @page='183' and @line='10'] -opus/marginalien/marginal[@index='7786' and @letter='240' and @page='183' and @line='12'] -opus/marginalien/marginal[@index='7787' and @letter='240' and @page='183' and @line='13'] -opus/marginalien/marginal[@index='7788' and @letter='240' and @page='183' and @line='22'] -opus/marginalien/marginal[@index='7789' and @letter='240' and @page='183' and @line='23'] -opus/marginalien/marginal[@index='778' and @letter='51' and @page='125' and @line='8'] -opus/marginalien/marginal[@index='7790' and @letter='240' and @page='183' and @line='24'] -opus/marginalien/marginal[@index='7791' and @letter='240' and @page='183' and @line='29'] -opus/marginalien/marginal[@index='7792' and @letter='240' and @page='183' and @line='30'] -opus/marginalien/marginal[@index='7793' and @letter='240' and @page='183' and @line='31'] -opus/marginalien/marginal[@index='7794' and @letter='240' and @page='183' and @line='31'] -opus/marginalien/marginal[@index='7795' and @letter='240' and @page='183' and @line='31'] -opus/marginalien/marginal[@index='7796' and @letter='240' and @page='183' and @line='32'] -opus/marginalien/marginal[@index='7797' and @letter='240' and @page='183' and @line='32'] -opus/marginalien/marginal[@index='7798' and @letter='240' and @page='183' and @line='32'] -opus/marginalien/marginal[@index='7799' and @letter='240' and @page='183' and @line='33'] -opus/marginalien/marginal[@index='779' and @letter='51' and @page='125' and @line='8'] -opus/marginalien/marginal[@index='77' and @letter='5' and @page='13' and @line='17'] -opus/marginalien/marginal[@index='7800' and @letter='240' and @page='183' and @line='33'] -opus/marginalien/marginal[@index='7801' and @letter='240' and @page='183' and @line='35'] -opus/marginalien/marginal[@index='7802' and @letter='240' and @page='183' and @line='36'] -opus/marginalien/marginal[@index='7803' and @letter='240' and @page='184' and @line='1'] -opus/marginalien/marginal[@index='7804' and @letter='240' and @page='184' and @line='4'] -opus/marginalien/marginal[@index='7805' and @letter='240' and @page='184' and @line='4'] -opus/marginalien/marginal[@index='7806' and @letter='240' and @page='184' and @line='4'] -opus/marginalien/marginal[@index='7807' and @letter='240' and @page='184' and @line='4'] -opus/marginalien/marginal[@index='7808' and @letter='240' and @page='184' and @line='14'] -opus/marginalien/marginal[@index='7809' and @letter='240' and @page='184' and @line='16'] -opus/marginalien/marginal[@index='780' and @letter='51' and @page='125' and @line='9'] -opus/marginalien/marginal[@index='7810' and @letter='240' and @page='184' and @line='17'] -opus/marginalien/marginal[@index='7811' and @letter='240' and @page='184' and @line='18'] -opus/marginalien/marginal[@index='7812' and @letter='240' and @page='184' and @line='19'] -opus/marginalien/marginal[@index='7813' and @letter='240' and @page='184' and @line='21'] -opus/marginalien/marginal[@index='7814' and @letter='240' and @page='184' and @line='22'] -opus/marginalien/marginal[@index='7815' and @letter='240' and @page='184' and @line='26'] -opus/marginalien/marginal[@index='7816' and @letter='240' and @page='184' and @line='26'] -opus/marginalien/marginal[@index='7817' and @letter='240' and @page='184' and @line='26'] -opus/marginalien/marginal[@index='7818' and @letter='240' and @page='184' and @line='28'] -opus/marginalien/marginal[@index='7819' and @letter='240' and @page='184' and @line='29'] -opus/marginalien/marginal[@index='781' and @letter='51' and @page='125' and @line='17'] -opus/marginalien/marginal[@index='7820' and @letter='240' and @page='184' and @line='30'] -opus/marginalien/marginal[@index='7821' and @letter='240' and @page='184' and @line='33'] -opus/marginalien/marginal[@index='7823' and @letter='240' and @page='184' and @line='34'] -opus/marginalien/marginal[@index='7824' and @letter='240' and @page='184' and @line='35'] -opus/marginalien/marginal[@index='7825' and @letter='240' and @page='185' and @line='33'] -opus/marginalien/marginal[@index='7826' and @letter='242' and @page='190' and @line='36'] -opus/marginalien/marginal[@index='7827' and @letter='248' and @page='209' and @line='22'] -opus/marginalien/marginal[@index='7828' and @letter='250' and @page='216' and @line='34'] -opus/marginalien/marginal[@index='7829' and @letter='252' and @page='223' and @line='7'] -opus/marginalien/marginal[@index='7830' and @letter='198' and @page='53' and @line='33'] -opus/marginalien/marginal[@index='7831' and @letter='198' and @page='53' and @line='35'] -opus/marginalien/marginal[@index='7832' and @letter='257' and @page='232' and @line='23'] -opus/marginalien/marginal[@index='7833' and @letter='257' and @page='232' and @line='26'] -opus/marginalien/marginal[@index='7834' and @letter='257' and @page='232' and @line='26'] -opus/marginalien/marginal[@index='7835' and @letter='257' and @page='232' and @line='28'] -opus/marginalien/marginal[@index='7836' and @letter='257' and @page='233' and @line='4'] -opus/marginalien/marginal[@index='7837' and @letter='257' and @page='233' and @line='5'] -opus/marginalien/marginal[@index='7838' and @letter='257' and @page='233' and @line='9'] -opus/marginalien/marginal[@index='7839' and @letter='257' and @page='233' and @line='13'] -opus/marginalien/marginal[@index='783' and @letter='51' and @page='125' and @line='24'] -opus/marginalien/marginal[@index='7840' and @letter='257' and @page='233' and @line='15'] -opus/marginalien/marginal[@index='7841' and @letter='257' and @page='233' and @line='16'] -opus/marginalien/marginal[@index='7842' and @letter='257' and @page='233' and @line='18'] -opus/marginalien/marginal[@index='7843' and @letter='257' and @page='233' and @line='18'] -opus/marginalien/marginal[@index='7844' and @letter='257' and @page='233' and @line='20'] -opus/marginalien/marginal[@index='7845' and @letter='257' and @page='233' and @line='21'] -opus/marginalien/marginal[@index='7846' and @letter='257' and @page='233' and @line='22'] -opus/marginalien/marginal[@index='7847' and @letter='257' and @page='233' and @line='25'] -opus/marginalien/marginal[@index='7848' and @letter='257' and @page='233' and @line='27'] -opus/marginalien/marginal[@index='7849' and @letter='257' and @page='233' and @line='34'] -opus/marginalien/marginal[@index='784' and @letter='51' and @page='125' and @line='27'] -opus/marginalien/marginal[@index='7850' and @letter='257' and @page='233' and @line='35'] -opus/marginalien/marginal[@index='7851' and @letter='257' and @page='233' and @line='35'] -opus/marginalien/marginal[@index='7852' and @letter='257' and @page='233' and @line='36'] -opus/marginalien/marginal[@index='7853' and @letter='257' and @page='233' and @line='37'] -opus/marginalien/marginal[@index='7854' and @letter='257' and @page='234' and @line='1'] -opus/marginalien/marginal[@index='7855' and @letter='257' and @page='234' and @line='4'] -opus/marginalien/marginal[@index='7856' and @letter='257' and @page='234' and @line='6'] -opus/marginalien/marginal[@index='7857' and @letter='257' and @page='234' and @line='9'] -opus/marginalien/marginal[@index='7858' and @letter='257' and @page='234' and @line='10'] -opus/marginalien/marginal[@index='7859' and @letter='257' and @page='234' and @line='11'] -opus/marginalien/marginal[@index='785' and @letter='51' and @page='125' and @line='32'] -opus/marginalien/marginal[@index='7860' and @letter='257' and @page='234' and @line='13'] -opus/marginalien/marginal[@index='7861' and @letter='257' and @page='234' and @line='13'] -opus/marginalien/marginal[@index='7862' and @letter='257' and @page='234' and @line='13'] -opus/marginalien/marginal[@index='7863' and @letter='257' and @page='234' and @line='16'] -opus/marginalien/marginal[@index='7864' and @letter='257' and @page='234' and @line='16'] -opus/marginalien/marginal[@index='7865' and @letter='257' and @page='234' and @line='18'] -opus/marginalien/marginal[@index='7866' and @letter='257' and @page='234' and @line='18'] -opus/marginalien/marginal[@index='7867' and @letter='257' and @page='234' and @line='18'] -opus/marginalien/marginal[@index='7868' and @letter='257' and @page='234' and @line='19'] -opus/marginalien/marginal[@index='7869' and @letter='257' and @page='234' and @line='20'] -opus/marginalien/marginal[@index='786' and @letter='51' and @page='125' and @line='33'] -opus/marginalien/marginal[@index='7870' and @letter='257' and @page='234' and @line='21'] -opus/marginalien/marginal[@index='7871' and @letter='257' and @page='234' and @line='23'] -opus/marginalien/marginal[@index='7872' and @letter='257' and @page='234' and @line='24'] -opus/marginalien/marginal[@index='7873' and @letter='257' and @page='234' and @line='28'] -opus/marginalien/marginal[@index='7875' and @letter='257' and @page='234' and @line='29'] -opus/marginalien/marginal[@index='7876' and @letter='257' and @page='234' and @line='31'] -opus/marginalien/marginal[@index='7877' and @letter='257' and @page='234' and @line='35'] -opus/marginalien/marginal[@index='7878' and @letter='257' and @page='234' and @line='37'] -opus/marginalien/marginal[@index='7879' and @letter='257' and @page='235' and @line='4'] -opus/marginalien/marginal[@index='787' and @letter='51' and @page='125' and @line='34'] -opus/marginalien/marginal[@index='7880' and @letter='257' and @page='235' and @line='5'] -opus/marginalien/marginal[@index='7881' and @letter='257' and @page='235' and @line='6'] -opus/marginalien/marginal[@index='7882' and @letter='257' and @page='235' and @line='13'] -opus/marginalien/marginal[@index='7883' and @letter='257' and @page='235' and @line='14'] -opus/marginalien/marginal[@index='7884' and @letter='257' and @page='235' and @line='16'] -opus/marginalien/marginal[@index='7885' and @letter='257' and @page='235' and @line='16'] -opus/marginalien/marginal[@index='7886' and @letter='257' and @page='235' and @line='19'] -opus/marginalien/marginal[@index='7887' and @letter='257' and @page='235' and @line='19'] -opus/marginalien/marginal[@index='7888' and @letter='257' and @page='235' and @line='23'] -opus/marginalien/marginal[@index='7889' and @letter='257' and @page='235' and @line='24'] -opus/marginalien/marginal[@index='788' and @letter='51' and @page='126' and @line='1'] -opus/marginalien/marginal[@index='7890' and @letter='257' and @page='235' and @line='24'] -opus/marginalien/marginal[@index='7891' and @letter='257' and @page='235' and @line='25'] -opus/marginalien/marginal[@index='7892' and @letter='257' and @page='235' and @line='25'] -opus/marginalien/marginal[@index='7893' and @letter='257' and @page='235' and @line='27'] -opus/marginalien/marginal[@index='7894' and @letter='257' and @page='235' and @line='28'] -opus/marginalien/marginal[@index='7895' and @letter='257' and @page='235' and @line='33'] -opus/marginalien/marginal[@index='7896' and @letter='257' and @page='235' and @line='34'] -opus/marginalien/marginal[@index='7897' and @letter='257' and @page='235' and @line='35'] -opus/marginalien/marginal[@index='7898' and @letter='257' and @page='236' and @line='5'] -opus/marginalien/marginal[@index='7899' and @letter='257' and @page='236' and @line='5'] -opus/marginalien/marginal[@index='789' and @letter='51' and @page='126' and @line='4'] -opus/marginalien/marginal[@index='78' and @letter='5' and @page='13' and @line='20'] -opus/marginalien/marginal[@index='7900' and @letter='257' and @page='236' and @line='7'] -opus/marginalien/marginal[@index='7901' and @letter='258' and @page='236' and @line='13'] -opus/marginalien/marginal[@index='7902' and @letter='258' and @page='236' and @line='15'] -opus/marginalien/marginal[@index='7903' and @letter='258' and @page='236' and @line='18'] -opus/marginalien/marginal[@index='7904' and @letter='258' and @page='236' and @line='27'] -opus/marginalien/marginal[@index='7905' and @letter='258' and @page='236' and @line='32'] -opus/marginalien/marginal[@index='7906' and @letter='258' and @page='237' and @line='4'] -opus/marginalien/marginal[@index='7907' and @letter='258' and @page='237' and @line='5'] -opus/marginalien/marginal[@index='7908' and @letter='258' and @page='237' and @line='9'] -opus/marginalien/marginal[@index='7909' and @letter='258' and @page='237' and @line='10'] -opus/marginalien/marginal[@index='790' and @letter='51' and @page='126' and @line='6'] -opus/marginalien/marginal[@index='7910' and @letter='258' and @page='237' and @line='11'] -opus/marginalien/marginal[@index='7911' and @letter='258' and @page='237' and @line='11'] -opus/marginalien/marginal[@index='7912' and @letter='258' and @page='237' and @line='28'] -opus/marginalien/marginal[@index='7913' and @letter='258' and @page='237' and @line='30'] -opus/marginalien/marginal[@index='7914' and @letter='258' and @page='237' and @line='30'] -opus/marginalien/marginal[@index='7916' and @letter='258' and @page='237' and @line='31'] -opus/marginalien/marginal[@index='7917' and @letter='258' and @page='237' and @line='31'] -opus/marginalien/marginal[@index='7918' and @letter='258' and @page='237' and @line='32'] -opus/marginalien/marginal[@index='7919' and @letter='258' and @page='237' and @line='33'] -opus/marginalien/marginal[@index='791' and @letter='52' and @page='126' and @line='11'] -opus/marginalien/marginal[@index='7920' and @letter='258' and @page='237' and @line='34'] -opus/marginalien/marginal[@index='7921' and @letter='258' and @page='237' and @line='36'] -opus/marginalien/marginal[@index='7922' and @letter='258' and @page='238' and @line='5'] -opus/marginalien/marginal[@index='7923' and @letter='258' and @page='238' and @line='6'] -opus/marginalien/marginal[@index='7924' and @letter='258' and @page='238' and @line='8'] -opus/marginalien/marginal[@index='7925' and @letter='258' and @page='238' and @line='9'] -opus/marginalien/marginal[@index='7926' and @letter='258' and @page='238' and @line='10'] -opus/marginalien/marginal[@index='7927' and @letter='258' and @page='238' and @line='11'] -opus/marginalien/marginal[@index='7928' and @letter='258' and @page='238' and @line='11'] -opus/marginalien/marginal[@index='7929' and @letter='258' and @page='238' and @line='11'] -opus/marginalien/marginal[@index='792' and @letter='52' and @page='126' and @line='16'] -opus/marginalien/marginal[@index='7930' and @letter='258' and @page='238' and @line='15'] -opus/marginalien/marginal[@index='7931' and @letter='258' and @page='238' and @line='16'] -opus/marginalien/marginal[@index='7932' and @letter='258' and @page='238' and @line='20'] -opus/marginalien/marginal[@index='7933' and @letter='258' and @page='238' and @line='20'] -opus/marginalien/marginal[@index='7934' and @letter='258' and @page='238' and @line='21'] -opus/marginalien/marginal[@index='7935' and @letter='258' and @page='238' and @line='23'] -opus/marginalien/marginal[@index='7936' and @letter='258' and @page='238' and @line='24'] -opus/marginalien/marginal[@index='7937' and @letter='258' and @page='238' and @line='28'] -opus/marginalien/marginal[@index='7938' and @letter='258' and @page='238' and @line='29'] -opus/marginalien/marginal[@index='7939' and @letter='258' and @page='238' and @line='30'] -opus/marginalien/marginal[@index='793' and @letter='52' and @page='126' and @line='23'] -opus/marginalien/marginal[@index='7940' and @letter='258' and @page='238' and @line='37'] -opus/marginalien/marginal[@index='7941' and @letter='258' and @page='239' and @line='4'] -opus/marginalien/marginal[@index='7942' and @letter='258' and @page='239' and @line='4'] -opus/marginalien/marginal[@index='7943' and @letter='258' and @page='239' and @line='4'] -opus/marginalien/marginal[@index='7944' and @letter='258' and @page='239' and @line='6'] -opus/marginalien/marginal[@index='7945' and @letter='258' and @page='239' and @line='7'] -opus/marginalien/marginal[@index='7946' and @letter='258' and @page='239' and @line='9'] -opus/marginalien/marginal[@index='7947' and @letter='258' and @page='239' and @line='12'] -opus/marginalien/marginal[@index='7948' and @letter='258' and @page='239' and @line='12'] -opus/marginalien/marginal[@index='7949' and @letter='258' and @page='239' and @line='14'] -opus/marginalien/marginal[@index='794' and @letter='52' and @page='126' and @line='28'] -opus/marginalien/marginal[@index='7950' and @letter='258' and @page='239' and @line='14'] -opus/marginalien/marginal[@index='7951' and @letter='258' and @page='239' and @line='15'] -opus/marginalien/marginal[@index='7952' and @letter='258' and @page='239' and @line='16'] -opus/marginalien/marginal[@index='7953' and @letter='258' and @page='239' and @line='20'] -opus/marginalien/marginal[@index='7954' and @letter='258' and @page='239' and @line='21'] -opus/marginalien/marginal[@index='7955' and @letter='258' and @page='239' and @line='23'] -opus/marginalien/marginal[@index='7956' and @letter='258' and @page='239' and @line='23'] -opus/marginalien/marginal[@index='7957' and @letter='258' and @page='239' and @line='24'] -opus/marginalien/marginal[@index='7958' and @letter='258' and @page='239' and @line='24'] -opus/marginalien/marginal[@index='7959' and @letter='258' and @page='239' and @line='25'] -opus/marginalien/marginal[@index='795' and @letter='52' and @page='126' and @line='30'] -opus/marginalien/marginal[@index='7960' and @letter='258' and @page='239' and @line='26'] -opus/marginalien/marginal[@index='7961' and @letter='258' and @page='239' and @line='30'] -opus/marginalien/marginal[@index='7962' and @letter='258' and @page='239' and @line='32'] -opus/marginalien/marginal[@index='7963' and @letter='258' and @page='239' and @line='33'] -opus/marginalien/marginal[@index='7964' and @letter='258' and @page='239' and @line='33'] -opus/marginalien/marginal[@index='7965' and @letter='258' and @page='239' and @line='35'] -opus/marginalien/marginal[@index='7966' and @letter='258' and @page='239' and @line='36'] -opus/marginalien/marginal[@index='7967' and @letter='258' and @page='240' and @line='2'] -opus/marginalien/marginal[@index='7968' and @letter='258' and @page='240' and @line='3'] -opus/marginalien/marginal[@index='7969' and @letter='258' and @page='240' and @line='7'] -opus/marginalien/marginal[@index='796' and @letter='52' and @page='126' and @line='34'] -opus/marginalien/marginal[@index='7970' and @letter='258' and @page='240' and @line='8'] -opus/marginalien/marginal[@index='7971' and @letter='258' and @page='240' and @line='11'] -opus/marginalien/marginal[@index='7972' and @letter='258' and @page='240' and @line='11'] -opus/marginalien/marginal[@index='7973' and @letter='258' and @page='240' and @line='13'] -opus/marginalien/marginal[@index='7974' and @letter='258' and @page='240' and @line='17'] -opus/marginalien/marginal[@index='7975' and @letter='258' and @page='240' and @line='18'] -opus/marginalien/marginal[@index='7976' and @letter='259' and @page='240' and @line='25'] -opus/marginalien/marginal[@index='7977' and @letter='259' and @page='240' and @line='29'] -opus/marginalien/marginal[@index='7978' and @letter='259' and @page='240' and @line='30'] -opus/marginalien/marginal[@index='7979' and @letter='259' and @page='240' and @line='31'] -opus/marginalien/marginal[@index='797' and @letter='52' and @page='127' and @line='4'] -opus/marginalien/marginal[@index='7980' and @letter='259' and @page='240' and @line='34'] -opus/marginalien/marginal[@index='7981' and @letter='259' and @page='241' and @line='8'] -opus/marginalien/marginal[@index='7982' and @letter='259' and @page='241' and @line='19'] -opus/marginalien/marginal[@index='7983' and @letter='259' and @page='241' and @line='25'] -opus/marginalien/marginal[@index='7984' and @letter='259' and @page='241' and @line='25'] -opus/marginalien/marginal[@index='7985' and @letter='259' and @page='241' and @line='28'] -opus/marginalien/marginal[@index='7986' and @letter='259' and @page='241' and @line='28'] -opus/marginalien/marginal[@index='7987' and @letter='259' and @page='241' and @line='31'] -opus/marginalien/marginal[@index='7988' and @letter='259' and @page='241' and @line='34'] -opus/marginalien/marginal[@index='7989' and @letter='259' and @page='241' and @line='36'] -opus/marginalien/marginal[@index='798' and @letter='52' and @page='127' and @line='9'] -opus/marginalien/marginal[@index='7990' and @letter='259' and @page='242' and @line='1'] -opus/marginalien/marginal[@index='7991' and @letter='259' and @page='242' and @line='8'] -opus/marginalien/marginal[@index='7992' and @letter='259' and @page='242' and @line='9'] -opus/marginalien/marginal[@index='7993' and @letter='259' and @page='242' and @line='10'] -opus/marginalien/marginal[@index='7994' and @letter='259' and @page='242' and @line='11'] -opus/marginalien/marginal[@index='7995' and @letter='259' and @page='242' and @line='25'] -opus/marginalien/marginal[@index='7996' and @letter='259' and @page='242' and @line='27'] -opus/marginalien/marginal[@index='7997' and @letter='259' and @page='242' and @line='28'] -opus/marginalien/marginal[@index='7998' and @letter='259' and @page='242' and @line='34'] -opus/marginalien/marginal[@index='7999' and @letter='259' and @page='242' and @line='37'] -opus/marginalien/marginal[@index='799' and @letter='52' and @page='127' and @line='9'] -opus/marginalien/marginal[@index='79' and @letter='5' and @page='13' and @line='26'] -opus/marginalien/marginal[@index='7' and @letter='1' and @page='2' and @line='26'] -opus/marginalien/marginal[@index='8000' and @letter='259' and @page='243' and @line='3'] -opus/marginalien/marginal[@index='8001' and @letter='259' and @page='243' and @line='4'] -opus/marginalien/marginal[@index='8002' and @letter='259' and @page='243' and @line='4'] -opus/marginalien/marginal[@index='8003' and @letter='259' and @page='243' and @line='5'] -opus/marginalien/marginal[@index='8004' and @letter='259' and @page='243' and @line='5'] -opus/marginalien/marginal[@index='8005' and @letter='259' and @page='243' and @line='6'] -opus/marginalien/marginal[@index='8006' and @letter='259' and @page='243' and @line='15'] -opus/marginalien/marginal[@index='8007' and @letter='259' and @page='243' and @line='21'] -opus/marginalien/marginal[@index='8008' and @letter='259' and @page='243' and @line='23'] -opus/marginalien/marginal[@index='8009' and @letter='259' and @page='243' and @line='24'] -opus/marginalien/marginal[@index='800' and @letter='52' and @page='127' and @line='15'] -opus/marginalien/marginal[@index='8010' and @letter='259' and @page='243' and @line='25'] -opus/marginalien/marginal[@index='8011' and @letter='259' and @page='243' and @line='27'] -opus/marginalien/marginal[@index='8012' and @letter='259' and @page='243' and @line='27'] -opus/marginalien/marginal[@index='8013' and @letter='259' and @page='243' and @line='30'] -opus/marginalien/marginal[@index='8014' and @letter='259' and @page='243' and @line='31'] -opus/marginalien/marginal[@index='8015' and @letter='259' and @page='243' and @line='33'] -opus/marginalien/marginal[@index='8016' and @letter='260' and @page='244' and @line='3'] -opus/marginalien/marginal[@index='8017' and @letter='260' and @page='244' and @line='7'] -opus/marginalien/marginal[@index='8018' and @letter='260' and @page='244' and @line='10'] -opus/marginalien/marginal[@index='8019' and @letter='260' and @page='244' and @line='11'] -opus/marginalien/marginal[@index='801' and @letter='52' and @page='127' and @line='17'] -opus/marginalien/marginal[@index='8020' and @letter='260' and @page='244' and @line='12'] -opus/marginalien/marginal[@index='8021' and @letter='260' and @page='244' and @line='14'] -opus/marginalien/marginal[@index='8022' and @letter='260' and @page='244' and @line='17'] -opus/marginalien/marginal[@index='8023' and @letter='260' and @page='244' and @line='19'] -opus/marginalien/marginal[@index='8024' and @letter='260' and @page='244' and @line='20'] -opus/marginalien/marginal[@index='8025' and @letter='260' and @page='244' and @line='21'] -opus/marginalien/marginal[@index='8026' and @letter='260' and @page='244' and @line='22'] -opus/marginalien/marginal[@index='8027' and @letter='260' and @page='244' and @line='24'] -opus/marginalien/marginal[@index='8028' and @letter='260' and @page='244' and @line='25'] -opus/marginalien/marginal[@index='8029' and @letter='260' and @page='244' and @line='25'] -opus/marginalien/marginal[@index='802' and @letter='52' and @page='127' and @line='18'] -opus/marginalien/marginal[@index='8030' and @letter='260' and @page='244' and @line='26'] -opus/marginalien/marginal[@index='8031' and @letter='260' and @page='244' and @line='29'] -opus/marginalien/marginal[@index='8032' and @letter='260' and @page='244' and @line='29'] -opus/marginalien/marginal[@index='8033' and @letter='260' and @page='244' and @line='30'] -opus/marginalien/marginal[@index='8034' and @letter='260' and @page='244' and @line='31'] -opus/marginalien/marginal[@index='8035' and @letter='260' and @page='244' and @line='33'] -opus/marginalien/marginal[@index='8036' and @letter='260' and @page='245' and @line='3'] -opus/marginalien/marginal[@index='8037' and @letter='259' and @page='245' and @line='6'] -opus/marginalien/marginal[@index='8038' and @letter='260' and @page='245' and @line='17'] -opus/marginalien/marginal[@index='8039' and @letter='260' and @page='245' and @line='18'] -opus/marginalien/marginal[@index='803' and @letter='52' and @page='127' and @line='20'] -opus/marginalien/marginal[@index='8040' and @letter='260' and @page='245' and @line='26'] -opus/marginalien/marginal[@index='8041' and @letter='260' and @page='245' and @line='30'] -opus/marginalien/marginal[@index='8042' and @letter='260' and @page='245' and @line='31'] -opus/marginalien/marginal[@index='8043' and @letter='260' and @page='245' and @line='32'] -opus/marginalien/marginal[@index='8044' and @letter='260' and @page='245' and @line='34'] -opus/marginalien/marginal[@index='8045' and @letter='260' and @page='246' and @line='5'] -opus/marginalien/marginal[@index='8046' and @letter='260' and @page='246' and @line='9'] -opus/marginalien/marginal[@index='8047' and @letter='260' and @page='246' and @line='10'] -opus/marginalien/marginal[@index='8048' and @letter='260' and @page='246' and @line='11'] -opus/marginalien/marginal[@index='8049' and @letter='260' and @page='246' and @line='12'] -opus/marginalien/marginal[@index='804' and @letter='52' and @page='127' and @line='20'] -opus/marginalien/marginal[@index='8050' and @letter='260' and @page='246' and @line='15'] -opus/marginalien/marginal[@index='8051' and @letter='260' and @page='246' and @line='15'] -opus/marginalien/marginal[@index='8052' and @letter='260' and @page='246' and @line='16'] -opus/marginalien/marginal[@index='8053' and @letter='260' and @page='246' and @line='22'] -opus/marginalien/marginal[@index='8054' and @letter='261' and @page='246' and @line='26'] -opus/marginalien/marginal[@index='8055' and @letter='261' and @page='246' and @line='26'] -opus/marginalien/marginal[@index='8056' and @letter='261' and @page='246' and @line='29'] -opus/marginalien/marginal[@index='8057' and @letter='261' and @page='246' and @line='30'] -opus/marginalien/marginal[@index='8058' and @letter='261' and @page='246' and @line='32'] -opus/marginalien/marginal[@index='8059' and @letter='261' and @page='247' and @line='4'] -opus/marginalien/marginal[@index='805' and @letter='52' and @page='127' and @line='22'] -opus/marginalien/marginal[@index='8060' and @letter='261' and @page='247' and @line='6'] -opus/marginalien/marginal[@index='8061' and @letter='261' and @page='247' and @line='6'] -opus/marginalien/marginal[@index='8062' and @letter='261' and @page='247' and @line='11'] -opus/marginalien/marginal[@index='8063' and @letter='262' and @page='247' and @line='16'] -opus/marginalien/marginal[@index='8064' and @letter='262' and @page='247' and @line='23'] -opus/marginalien/marginal[@index='8065' and @letter='262' and @page='247' and @line='27'] -opus/marginalien/marginal[@index='8066' and @letter='262' and @page='247' and @line='28'] -opus/marginalien/marginal[@index='8067' and @letter='262' and @page='247' and @line='29'] -opus/marginalien/marginal[@index='8068' and @letter='262' and @page='247' and @line='32'] -opus/marginalien/marginal[@index='8069' and @letter='262' and @page='247' and @line='34'] -opus/marginalien/marginal[@index='806' and @letter='52' and @page='127' and @line='22'] -opus/marginalien/marginal[@index='8070' and @letter='262' and @page='248' and @line='8'] -opus/marginalien/marginal[@index='8071' and @letter='262' and @page='248' and @line='22'] -opus/marginalien/marginal[@index='8072' and @letter='262' and @page='248' and @line='23'] -opus/marginalien/marginal[@index='8073' and @letter='262' and @page='248' and @line='23'] -opus/marginalien/marginal[@index='8074' and @letter='262' and @page='248' and @line='24'] -opus/marginalien/marginal[@index='8075' and @letter='262' and @page='248' and @line='26'] -opus/marginalien/marginal[@index='8076' and @letter='262' and @page='248' and @line='28'] -opus/marginalien/marginal[@index='8077' and @letter='262' and @page='248' and @line='28'] -opus/marginalien/marginal[@index='8078' and @letter='262' and @page='248' and @line='32'] -opus/marginalien/marginal[@index='8079' and @letter='262' and @page='248' and @line='35'] -opus/marginalien/marginal[@index='807' and @letter='52' and @page='127' and @line='24'] -opus/marginalien/marginal[@index='8080' and @letter='262' and @page='248' and @line='37'] -opus/marginalien/marginal[@index='8081' and @letter='262' and @page='249' and @line='1'] -opus/marginalien/marginal[@index='8082' and @letter='262' and @page='249' and @line='4'] -opus/marginalien/marginal[@index='8083' and @letter='262' and @page='249' and @line='4'] -opus/marginalien/marginal[@index='8084' and @letter='262' and @page='249' and @line='5'] -opus/marginalien/marginal[@index='8085' and @letter='262' and @page='250' and @line='10'] -opus/marginalien/marginal[@index='8086' and @letter='262' and @page='250' and @line='12'] -opus/marginalien/marginal[@index='8087' and @letter='263' and @page='250' and @line='22'] -opus/marginalien/marginal[@index='8088' and @letter='263' and @page='250' and @line='24'] -opus/marginalien/marginal[@index='8089' and @letter='263' and @page='250' and @line='29'] -opus/marginalien/marginal[@index='808' and @letter='52' and @page='127' and @line='25'] -opus/marginalien/marginal[@index='8090' and @letter='263' and @page='250' and @line='32'] -opus/marginalien/marginal[@index='8091' and @letter='263' and @page='250' and @line='33'] -opus/marginalien/marginal[@index='8092' and @letter='263' and @page='250' and @line='33'] -opus/marginalien/marginal[@index='8093' and @letter='263' and @page='250' and @line='34'] -opus/marginalien/marginal[@index='8094' and @letter='263' and @page='250' and @line='35'] -opus/marginalien/marginal[@index='8095' and @letter='263' and @page='251' and @line='3'] -opus/marginalien/marginal[@index='8096' and @letter='263' and @page='251' and @line='8'] -opus/marginalien/marginal[@index='8097' and @letter='263' and @page='251' and @line='11'] -opus/marginalien/marginal[@index='8098' and @letter='263' and @page='251' and @line='12'] -opus/marginalien/marginal[@index='8099' and @letter='263' and @page='251' and @line='14'] -opus/marginalien/marginal[@index='809' and @letter='52' and @page='127' and @line='25'] -opus/marginalien/marginal[@index='80' and @letter='5' and @page='13' and @line='28'] -opus/marginalien/marginal[@index='8100' and @letter='263' and @page='251' and @line='15'] -opus/marginalien/marginal[@index='8101' and @letter='263' and @page='251' and @line='16'] -opus/marginalien/marginal[@index='8102' and @letter='263' and @page='251' and @line='17'] -opus/marginalien/marginal[@index='8103' and @letter='263' and @page='251' and @line='18'] -opus/marginalien/marginal[@index='8104' and @letter='263' and @page='251' and @line='20'] -opus/marginalien/marginal[@index='8105' and @letter='263' and @page='251' and @line='22'] -opus/marginalien/marginal[@index='8106' and @letter='263' and @page='251' and @line='23'] -opus/marginalien/marginal[@index='8107' and @letter='263' and @page='251' and @line='24'] -opus/marginalien/marginal[@index='8108' and @letter='263' and @page='251' and @line='26'] -opus/marginalien/marginal[@index='8109' and @letter='263' and @page='251' and @line='26'] -opus/marginalien/marginal[@index='810' and @letter='52' and @page='127' and @line='26'] -opus/marginalien/marginal[@index='8110' and @letter='263' and @page='251' and @line='27'] -opus/marginalien/marginal[@index='8111' and @letter='263' and @page='251' and @line='27'] -opus/marginalien/marginal[@index='8112' and @letter='263' and @page='251' and @line='27'] -opus/marginalien/marginal[@index='8113' and @letter='263' and @page='251' and @line='32'] -opus/marginalien/marginal[@index='8114' and @letter='263' and @page='251' and @line='33'] -opus/marginalien/marginal[@index='8115' and @letter='263' and @page='251' and @line='36'] -opus/marginalien/marginal[@index='8116' and @letter='263' and @page='252' and @line='3'] -opus/marginalien/marginal[@index='8117' and @letter='263' and @page='252' and @line='4'] -opus/marginalien/marginal[@index='8118' and @letter='263' and @page='252' and @line='5'] -opus/marginalien/marginal[@index='8119' and @letter='263' and @page='252' and @line='8'] -opus/marginalien/marginal[@index='811' and @letter='52' and @page='127' and @line='26'] -opus/marginalien/marginal[@index='8120' and @letter='263' and @page='252' and @line='11'] -opus/marginalien/marginal[@index='8121' and @letter='263' and @page='252' and @line='22'] -opus/marginalien/marginal[@index='8122' and @letter='263' and @page='252' and @line='25'] -opus/marginalien/marginal[@index='8123' and @letter='263' and @page='252' and @line='26'] -opus/marginalien/marginal[@index='8124' and @letter='263' and @page='252' and @line='28'] -opus/marginalien/marginal[@index='8125' and @letter='264' and @page='252' and @line='31'] -opus/marginalien/marginal[@index='8126' and @letter='264' and @page='252' and @line='31'] -opus/marginalien/marginal[@index='8127' and @letter='264' and @page='252' and @line='32'] -opus/marginalien/marginal[@index='8128' and @letter='264' and @page='252' and @line='33'] -opus/marginalien/marginal[@index='8129' and @letter='264' and @page='252' and @line='34'] -opus/marginalien/marginal[@index='812' and @letter='52' and @page='127' and @line='27'] -opus/marginalien/marginal[@index='8130' and @letter='264' and @page='253' and @line='4'] -opus/marginalien/marginal[@index='8131' and @letter='264' and @page='253' and @line='5'] -opus/marginalien/marginal[@index='8132' and @letter='264' and @page='253' and @line='5'] -opus/marginalien/marginal[@index='8133' and @letter='264' and @page='253' and @line='6'] -opus/marginalien/marginal[@index='8134' and @letter='264' and @page='253' and @line='8'] -opus/marginalien/marginal[@index='8135' and @letter='264' and @page='253' and @line='9'] -opus/marginalien/marginal[@index='8136' and @letter='264' and @page='253' and @line='10'] -opus/marginalien/marginal[@index='8137' and @letter='264' and @page='253' and @line='11'] -opus/marginalien/marginal[@index='8138' and @letter='264' and @page='253' and @line='11'] -opus/marginalien/marginal[@index='8139' and @letter='264' and @page='253' and @line='12'] -opus/marginalien/marginal[@index='813' and @letter='52' and @page='127' and @line='29'] -opus/marginalien/marginal[@index='8140' and @letter='264' and @page='253' and @line='15'] -opus/marginalien/marginal[@index='8141' and @letter='264' and @page='253' and @line='16'] -opus/marginalien/marginal[@index='8142' and @letter='264' and @page='253' and @line='17'] -opus/marginalien/marginal[@index='8143' and @letter='264' and @page='253' and @line='18'] -opus/marginalien/marginal[@index='8144' and @letter='264' and @page='253' and @line='19'] -opus/marginalien/marginal[@index='8145' and @letter='264' and @page='253' and @line='25'] -opus/marginalien/marginal[@index='8146' and @letter='264' and @page='253' and @line='33'] -opus/marginalien/marginal[@index='8147' and @letter='264' and @page='253' and @line='33'] -opus/marginalien/marginal[@index='8148' and @letter='264' and @page='253' and @line='34'] -opus/marginalien/marginal[@index='8149' and @letter='264' and @page='253' and @line='36'] -opus/marginalien/marginal[@index='814' and @letter='52' and @page='127' and @line='30'] -opus/marginalien/marginal[@index='8150' and @letter='264' and @page='253' and @line='37'] -opus/marginalien/marginal[@index='8151' and @letter='264' and @page='254' and @line='7'] -opus/marginalien/marginal[@index='8152' and @letter='265' and @page='254' and @line='10'] -opus/marginalien/marginal[@index='8153' and @letter='265' and @page='254' and @line='11'] -opus/marginalien/marginal[@index='8154' and @letter='265' and @page='254' and @line='14'] -opus/marginalien/marginal[@index='8155' and @letter='265' and @page='254' and @line='21'] -opus/marginalien/marginal[@index='8156' and @letter='265' and @page='254' and @line='25'] -opus/marginalien/marginal[@index='8157' and @letter='265' and @page='254' and @line='26'] -opus/marginalien/marginal[@index='8158' and @letter='265' and @page='254' and @line='26'] -opus/marginalien/marginal[@index='8159' and @letter='265' and @page='254' and @line='27'] -opus/marginalien/marginal[@index='815' and @letter='52' and @page='127' and @line='31'] -opus/marginalien/marginal[@index='8160' and @letter='265' and @page='254' and @line='28'] -opus/marginalien/marginal[@index='8161' and @letter='265' and @page='254' and @line='29'] -opus/marginalien/marginal[@index='8162' and @letter='265' and @page='254' and @line='30'] -opus/marginalien/marginal[@index='8163' and @letter='265' and @page='254' and @line='33'] -opus/marginalien/marginal[@index='8164' and @letter='265' and @page='255' and @line='5'] -opus/marginalien/marginal[@index='8165' and @letter='265' and @page='255' and @line='10'] -opus/marginalien/marginal[@index='8166' and @letter='265' and @page='255' and @line='11'] -opus/marginalien/marginal[@index='8167' and @letter='266' and @page='255' and @line='14'] -opus/marginalien/marginal[@index='8168' and @letter='266' and @page='255' and @line='18'] -opus/marginalien/marginal[@index='8169' and @letter='266' and @page='255' and @line='18'] -opus/marginalien/marginal[@index='816' and @letter='52' and @page='127' and @line='32'] -opus/marginalien/marginal[@index='8170' and @letter='266' and @page='255' and @line='20'] -opus/marginalien/marginal[@index='8171' and @letter='266' and @page='255' and @line='23'] -opus/marginalien/marginal[@index='8172' and @letter='266' and @page='255' and @line='23'] -opus/marginalien/marginal[@index='8173' and @letter='266' and @page='255' and @line='25'] -opus/marginalien/marginal[@index='8174' and @letter='266' and @page='255' and @line='26'] -opus/marginalien/marginal[@index='8175' and @letter='266' and @page='255' and @line='29'] -opus/marginalien/marginal[@index='8176' and @letter='266' and @page='255' and @line='30'] -opus/marginalien/marginal[@index='8177' and @letter='266' and @page='255' and @line='35'] -opus/marginalien/marginal[@index='8178' and @letter='266' and @page='256' and @line='5'] -opus/marginalien/marginal[@index='8179' and @letter='266' and @page='256' and @line='7'] -opus/marginalien/marginal[@index='817' and @letter='52' and @page='128' and @line='8'] -opus/marginalien/marginal[@index='8180' and @letter='266' and @page='256' and @line='7'] -opus/marginalien/marginal[@index='8181' and @letter='266' and @page='256' and @line='12'] -opus/marginalien/marginal[@index='8182' and @letter='266' and @page='256' and @line='13'] -opus/marginalien/marginal[@index='8183' and @letter='266' and @page='256' and @line='19'] -opus/marginalien/marginal[@index='8184' and @letter='266' and @page='256' and @line='19'] -opus/marginalien/marginal[@index='8185' and @letter='266' and @page='256' and @line='21'] -opus/marginalien/marginal[@index='8186' and @letter='266' and @page='256' and @line='22'] -opus/marginalien/marginal[@index='8187' and @letter='266' and @page='256' and @line='23'] -opus/marginalien/marginal[@index='8188' and @letter='266' and @page='256' and @line='24'] -opus/marginalien/marginal[@index='8189' and @letter='266' and @page='256' and @line='25'] -opus/marginalien/marginal[@index='818' and @letter='52' and @page='128' and @line='21'] -opus/marginalien/marginal[@index='8190' and @letter='266' and @page='256' and @line='26'] -opus/marginalien/marginal[@index='8191' and @letter='266' and @page='256' and @line='26'] -opus/marginalien/marginal[@index='8192' and @letter='267' and @page='256' and @line='32'] -opus/marginalien/marginal[@index='8193' and @letter='267' and @page='256' and @line='34'] -opus/marginalien/marginal[@index='8194' and @letter='267' and @page='257' and @line='1'] -opus/marginalien/marginal[@index='8195' and @letter='267' and @page='257' and @line='2'] -opus/marginalien/marginal[@index='8196' and @letter='267' and @page='257' and @line='5'] -opus/marginalien/marginal[@index='8197' and @letter='267' and @page='257' and @line='7'] -opus/marginalien/marginal[@index='8198' and @letter='267' and @page='257' and @line='8'] -opus/marginalien/marginal[@index='8199' and @letter='267' and @page='257' and @line='13'] -opus/marginalien/marginal[@index='819' and @letter='52' and @page='128' and @line='25'] -opus/marginalien/marginal[@index='81' and @letter='5' and @page='13' and @line='28'] -opus/marginalien/marginal[@index='8200' and @letter='267' and @page='257' and @line='18'] -opus/marginalien/marginal[@index='8201' and @letter='267' and @page='257' and @line='19'] -opus/marginalien/marginal[@index='8202' and @letter='267' and @page='257' and @line='20'] -opus/marginalien/marginal[@index='8203' and @letter='267' and @page='257' and @line='21'] -opus/marginalien/marginal[@index='8204' and @letter='267' and @page='257' and @line='23'] -opus/marginalien/marginal[@index='8205' and @letter='267' and @page='257' and @line='27'] -opus/marginalien/marginal[@index='8206' and @letter='267' and @page='257' and @line='27'] -opus/marginalien/marginal[@index='8207' and @letter='267' and @page='257' and @line='30'] -opus/marginalien/marginal[@index='8208' and @letter='267' and @page='257' and @line='31'] -opus/marginalien/marginal[@index='8209' and @letter='267' and @page='257' and @line='32'] -opus/marginalien/marginal[@index='820' and @letter='52' and @page='128' and @line='29'] -opus/marginalien/marginal[@index='8210' and @letter='267' and @page='257' and @line='32'] -opus/marginalien/marginal[@index='8211' and @letter='267' and @page='257' and @line='34'] -opus/marginalien/marginal[@index='8212' and @letter='267' and @page='258' and @line='4'] -opus/marginalien/marginal[@index='8213' and @letter='267' and @page='258' and @line='6'] -opus/marginalien/marginal[@index='8214' and @letter='267' and @page='258' and @line='8'] -opus/marginalien/marginal[@index='8215' and @letter='267' and @page='258' and @line='8'] -opus/marginalien/marginal[@index='8216' and @letter='267' and @page='258' and @line='9'] -opus/marginalien/marginal[@index='8217' and @letter='267' and @page='258' and @line='9'] -opus/marginalien/marginal[@index='8218' and @letter='267' and @page='258' and @line='15'] -opus/marginalien/marginal[@index='821' and @letter='53' and @page='129' and @line='5'] -opus/marginalien/marginal[@index='8220' and @letter='268' and @page='258' and @line='25'] -opus/marginalien/marginal[@index='8221' and @letter='268' and @page='258' and @line='27'] -opus/marginalien/marginal[@index='8222' and @letter='268' and @page='258' and @line='33'] -opus/marginalien/marginal[@index='8223' and @letter='268' and @page='259' and @line='9'] -opus/marginalien/marginal[@index='8224' and @letter='268' and @page='259' and @line='11'] -opus/marginalien/marginal[@index='8225' and @letter='268' and @page='259' and @line='13'] -opus/marginalien/marginal[@index='8226' and @letter='268' and @page='259' and @line='16'] -opus/marginalien/marginal[@index='8227' and @letter='268' and @page='259' and @line='19'] -opus/marginalien/marginal[@index='8228' and @letter='269' and @page='260' and @line='6'] -opus/marginalien/marginal[@index='8229' and @letter='269' and @page='260' and @line='14'] -opus/marginalien/marginal[@index='822' and @letter='53' and @page='129' and @line='11'] -opus/marginalien/marginal[@index='8230' and @letter='269' and @page='260' and @line='16'] -opus/marginalien/marginal[@index='8231' and @letter='269' and @page='260' and @line='17'] -opus/marginalien/marginal[@index='8232' and @letter='269' and @page='260' and @line='19'] -opus/marginalien/marginal[@index='8233' and @letter='269' and @page='260' and @line='23'] -opus/marginalien/marginal[@index='8234' and @letter='269' and @page='260' and @line='24'] -opus/marginalien/marginal[@index='8235' and @letter='269' and @page='260' and @line='28'] -opus/marginalien/marginal[@index='8236' and @letter='270' and @page='261' and @line='5'] -opus/marginalien/marginal[@index='8237' and @letter='270' and @page='261' and @line='6'] -opus/marginalien/marginal[@index='8238' and @letter='270' and @page='261' and @line='7'] -opus/marginalien/marginal[@index='8239' and @letter='270' and @page='261' and @line='9'] -opus/marginalien/marginal[@index='823' and @letter='53' and @page='129' and @line='25'] -opus/marginalien/marginal[@index='8240' and @letter='270' and @page='261' and @line='10'] -opus/marginalien/marginal[@index='8241' and @letter='270' and @page='261' and @line='17'] -opus/marginalien/marginal[@index='8242' and @letter='270' and @page='261' and @line='22'] -opus/marginalien/marginal[@index='8243' and @letter='270' and @page='261' and @line='26'] -opus/marginalien/marginal[@index='8244' and @letter='270' and @page='261' and @line='29'] -opus/marginalien/marginal[@index='8245' and @letter='270' and @page='261' and @line='30'] -opus/marginalien/marginal[@index='8246' and @letter='270' and @page='261' and @line='33'] -opus/marginalien/marginal[@index='8247' and @letter='270' and @page='261' and @line='34'] -opus/marginalien/marginal[@index='8248' and @letter='270' and @page='261' and @line='35'] -opus/marginalien/marginal[@index='8249' and @letter='270' and @page='261' and @line='36'] -opus/marginalien/marginal[@index='824' and @letter='53' and @page='130' and @line='9'] -opus/marginalien/marginal[@index='8250' and @letter='270' and @page='262' and @line='1'] -opus/marginalien/marginal[@index='8251' and @letter='270' and @page='262' and @line='5'] -opus/marginalien/marginal[@index='8252' and @letter='270' and @page='262' and @line='10'] -opus/marginalien/marginal[@index='8253' and @letter='271' and @page='262' and @line='21'] -opus/marginalien/marginal[@index='8254' and @letter='271' and @page='262' and @line='22'] -opus/marginalien/marginal[@index='8255' and @letter='271' and @page='262' and @line='22'] -opus/marginalien/marginal[@index='8256' and @letter='271' and @page='262' and @line='25'] -opus/marginalien/marginal[@index='8257' and @letter='271' and @page='262' and @line='27'] -opus/marginalien/marginal[@index='8258' and @letter='271' and @page='262' and @line='30'] -opus/marginalien/marginal[@index='8259' and @letter='271' and @page='262' and @line='30'] -opus/marginalien/marginal[@index='825' and @letter='53' and @page='130' and @line='14'] -opus/marginalien/marginal[@index='8260' and @letter='271' and @page='262' and @line='31'] -opus/marginalien/marginal[@index='8261' and @letter='271' and @page='262' and @line='32'] -opus/marginalien/marginal[@index='8262' and @letter='271' and @page='262' and @line='32'] -opus/marginalien/marginal[@index='8263' and @letter='271' and @page='262' and @line='33'] -opus/marginalien/marginal[@index='8264' and @letter='271' and @page='262' and @line='33'] -opus/marginalien/marginal[@index='8265' and @letter='271' and @page='263' and @line='1'] -opus/marginalien/marginal[@index='8266' and @letter='271' and @page='263' and @line='2'] -opus/marginalien/marginal[@index='8267' and @letter='271' and @page='263' and @line='6'] -opus/marginalien/marginal[@index='8268' and @letter='271' and @page='263' and @line='15'] -opus/marginalien/marginal[@index='8269' and @letter='271' and @page='263' and @line='16'] -opus/marginalien/marginal[@index='826' and @letter='53' and @page='130' and @line='17'] -opus/marginalien/marginal[@index='8270' and @letter='271' and @page='263' and @line='22'] -opus/marginalien/marginal[@index='8271' and @letter='271' and @page='263' and @line='24'] -opus/marginalien/marginal[@index='8272' and @letter='271' and @page='263' and @line='28'] -opus/marginalien/marginal[@index='8273' and @letter='271' and @page='263' and @line='31'] -opus/marginalien/marginal[@index='8274' and @letter='271' and @page='263' and @line='32'] -opus/marginalien/marginal[@index='8275' and @letter='271' and @page='263' and @line='34'] -opus/marginalien/marginal[@index='8276' and @letter='271' and @page='263' and @line='36'] -opus/marginalien/marginal[@index='8277' and @letter='271' and @page='263' and @line='37'] -opus/marginalien/marginal[@index='8278' and @letter='271' and @page='264' and @line='4'] -opus/marginalien/marginal[@index='8279' and @letter='271' and @page='264' and @line='5'] -opus/marginalien/marginal[@index='827' and @letter='53' and @page='130' and @line='33'] -opus/marginalien/marginal[@index='8280' and @letter='271' and @page='264' and @line='5'] -opus/marginalien/marginal[@index='8281' and @letter='271' and @page='264' and @line='6'] -opus/marginalien/marginal[@index='8282' and @letter='271' and @page='264' and @line='9'] -opus/marginalien/marginal[@index='8283' and @letter='271' and @page='264' and @line='10'] -opus/marginalien/marginal[@index='8284' and @letter='271' and @page='264' and @line='11'] -opus/marginalien/marginal[@index='8285' and @letter='271' and @page='264' and @line='12'] -opus/marginalien/marginal[@index='8286' and @letter='271' and @page='264' and @line='13'] -opus/marginalien/marginal[@index='8287' and @letter='271' and @page='264' and @line='15'] -opus/marginalien/marginal[@index='8288' and @letter='271' and @page='264' and @line='21'] -opus/marginalien/marginal[@index='8289' and @letter='271' and @page='264' and @line='26'] -opus/marginalien/marginal[@index='828' and @letter='53' and @page='131' and @line='7'] -opus/marginalien/marginal[@index='8290' and @letter='271' and @page='264' and @line='29'] -opus/marginalien/marginal[@index='8291' and @letter='271' and @page='264' and @line='30'] -opus/marginalien/marginal[@index='8292' and @letter='271' and @page='264' and @line='32'] -opus/marginalien/marginal[@index='8293' and @letter='271' and @page='264' and @line='35'] -opus/marginalien/marginal[@index='8294' and @letter='271' and @page='265' and @line='2'] -opus/marginalien/marginal[@index='8295' and @letter='271' and @page='265' and @line='5'] -opus/marginalien/marginal[@index='8296' and @letter='271' and @page='265' and @line='5'] -opus/marginalien/marginal[@index='8297' and @letter='271' and @page='265' and @line='6'] -opus/marginalien/marginal[@index='8298' and @letter='271' and @page='265' and @line='7'] -opus/marginalien/marginal[@index='8299' and @letter='271' and @page='265' and @line='10'] -opus/marginalien/marginal[@index='829' and @letter='53' and @page='131' and @line='10'] -opus/marginalien/marginal[@index='8300' and @letter='271' and @page='265' and @line='13'] -opus/marginalien/marginal[@index='8301' and @letter='271' and @page='265' and @line='13'] -opus/marginalien/marginal[@index='8302' and @letter='271' and @page='265' and @line='15'] -opus/marginalien/marginal[@index='8303' and @letter='271' and @page='265' and @line='16'] -opus/marginalien/marginal[@index='8304' and @letter='271' and @page='265' and @line='17'] -opus/marginalien/marginal[@index='8305' and @letter='271' and @page='265' and @line='18'] -opus/marginalien/marginal[@index='8306' and @letter='271' and @page='265' and @line='18'] -opus/marginalien/marginal[@index='8307' and @letter='271' and @page='265' and @line='22'] -opus/marginalien/marginal[@index='8308' and @letter='271' and @page='265' and @line='23'] -opus/marginalien/marginal[@index='8309' and @letter='271' and @page='265' and @line='26'] -opus/marginalien/marginal[@index='830' and @letter='53' and @page='131' and @line='12'] -opus/marginalien/marginal[@index='8310' and @letter='271' and @page='265' and @line='28'] -opus/marginalien/marginal[@index='8311' and @letter='271' and @page='265' and @line='30'] -opus/marginalien/marginal[@index='8312' and @letter='271' and @page='265' and @line='33'] -opus/marginalien/marginal[@index='8313' and @letter='271' and @page='265' and @line='34'] -opus/marginalien/marginal[@index='8314' and @letter='271' and @page='265' and @line='35'] -opus/marginalien/marginal[@index='8315' and @letter='271' and @page='266' and @line='4'] -opus/marginalien/marginal[@index='8316' and @letter='271' and @page='266' and @line='4'] -opus/marginalien/marginal[@index='8317' and @letter='271' and @page='266' and @line='15'] -opus/marginalien/marginal[@index='8318' and @letter='271' and @page='266' and @line='16'] -opus/marginalien/marginal[@index='8319' and @letter='271' and @page='266' and @line='17'] -opus/marginalien/marginal[@index='831' and @letter='53' and @page='131' and @line='20'] -opus/marginalien/marginal[@index='8320' and @letter='271' and @page='266' and @line='19'] -opus/marginalien/marginal[@index='8321' and @letter='271' and @page='266' and @line='21'] -opus/marginalien/marginal[@index='8322' and @letter='271' and @page='266' and @line='22'] -opus/marginalien/marginal[@index='8323' and @letter='272' and @page='266' and @line='32'] -opus/marginalien/marginal[@index='8324' and @letter='272' and @page='267' and @line='5'] -opus/marginalien/marginal[@index='8325' and @letter='272' and @page='267' and @line='6'] -opus/marginalien/marginal[@index='8326' and @letter='272' and @page='267' and @line='10'] -opus/marginalien/marginal[@index='8327' and @letter='272' and @page='267' and @line='12'] -opus/marginalien/marginal[@index='8328' and @letter='272' and @page='267' and @line='22'] -opus/marginalien/marginal[@index='8329' and @letter='272' and @page='267' and @line='25'] -opus/marginalien/marginal[@index='832' and @letter='53' and @page='131' and @line='26'] -opus/marginalien/marginal[@index='8330' and @letter='272' and @page='267' and @line='32'] -opus/marginalien/marginal[@index='8331' and @letter='272' and @page='267' and @line='35'] -opus/marginalien/marginal[@index='8332' and @letter='272' and @page='267' and @line='36'] -opus/marginalien/marginal[@index='8333' and @letter='272' and @page='268' and @line='3'] -opus/marginalien/marginal[@index='8334' and @letter='272' and @page='268' and @line='4'] -opus/marginalien/marginal[@index='8335' and @letter='272' and @page='268' and @line='10'] -opus/marginalien/marginal[@index='8336' and @letter='273' and @page='268' and @line='19'] -opus/marginalien/marginal[@index='8337' and @letter='273' and @page='268' and @line='22'] -opus/marginalien/marginal[@index='8338' and @letter='273' and @page='268' and @line='27'] -opus/marginalien/marginal[@index='8339' and @letter='273' and @page='268' and @line='29'] -opus/marginalien/marginal[@index='833' and @letter='53' and @page='131' and @line='29'] -opus/marginalien/marginal[@index='8340' and @letter='273' and @page='268' and @line='30'] -opus/marginalien/marginal[@index='8341' and @letter='273' and @page='269' and @line='5'] -opus/marginalien/marginal[@index='8342' and @letter='273' and @page='269' and @line='6'] -opus/marginalien/marginal[@index='8343' and @letter='273' and @page='269' and @line='6'] -opus/marginalien/marginal[@index='8344' and @letter='273' and @page='269' and @line='7'] -opus/marginalien/marginal[@index='8345' and @letter='273' and @page='269' and @line='8'] -opus/marginalien/marginal[@index='8346' and @letter='273' and @page='269' and @line='9'] -opus/marginalien/marginal[@index='8347' and @letter='273' and @page='269' and @line='12'] -opus/marginalien/marginal[@index='8348' and @letter='273' and @page='269' and @line='13'] -opus/marginalien/marginal[@index='8349' and @letter='273' and @page='269' and @line='15'] -opus/marginalien/marginal[@index='834' and @letter='53' and @page='131' and @line='33'] -opus/marginalien/marginal[@index='8350' and @letter='273' and @page='269' and @line='15'] -opus/marginalien/marginal[@index='8351' and @letter='273' and @page='269' and @line='16'] -opus/marginalien/marginal[@index='8352' and @letter='273' and @page='269' and @line='16'] -opus/marginalien/marginal[@index='8353' and @letter='273' and @page='269' and @line='17'] -opus/marginalien/marginal[@index='8354' and @letter='273' and @page='269' and @line='19'] -opus/marginalien/marginal[@index='8355' and @letter='273' and @page='269' and @line='21'] -opus/marginalien/marginal[@index='8356' and @letter='273' and @page='269' and @line='22'] -opus/marginalien/marginal[@index='8357' and @letter='273' and @page='269' and @line='24'] -opus/marginalien/marginal[@index='8358' and @letter='273' and @page='269' and @line='32'] -opus/marginalien/marginal[@index='8359' and @letter='273' and @page='269' and @line='34'] -opus/marginalien/marginal[@index='835' and @letter='53' and @page='132' and @line='3'] -opus/marginalien/marginal[@index='8360' and @letter='273' and @page='269' and @line='34'] -opus/marginalien/marginal[@index='8361' and @letter='273' and @page='269' and @line='35'] -opus/marginalien/marginal[@index='8362' and @letter='273' and @page='269' and @line='37'] -opus/marginalien/marginal[@index='8363' and @letter='273' and @page='269' and @line='37'] -opus/marginalien/marginal[@index='8364' and @letter='273' and @page='270' and @line='1'] -opus/marginalien/marginal[@index='8365' and @letter='273' and @page='270' and @line='5'] -opus/marginalien/marginal[@index='8366' and @letter='273' and @page='270' and @line='8'] -opus/marginalien/marginal[@index='8367' and @letter='274' and @page='270' and @line='20'] -opus/marginalien/marginal[@index='8368' and @letter='274' and @page='270' and @line='26'] -opus/marginalien/marginal[@index='8369' and @letter='274' and @page='270' and @line='26'] -opus/marginalien/marginal[@index='836' and @letter='53' and @page='132' and @line='9'] -opus/marginalien/marginal[@index='8370' and @letter='274' and @page='270' and @line='28'] -opus/marginalien/marginal[@index='8371' and @letter='274' and @page='270' and @line='29'] -opus/marginalien/marginal[@index='8372' and @letter='274' and @page='270' and @line='34'] -opus/marginalien/marginal[@index='8373' and @letter='274' and @page='271' and @line='2'] -opus/marginalien/marginal[@index='8374' and @letter='274' and @page='271' and @line='3'] -opus/marginalien/marginal[@index='8375' and @letter='274' and @page='271' and @line='5'] -opus/marginalien/marginal[@index='8376' and @letter='274' and @page='271' and @line='10'] -opus/marginalien/marginal[@index='8377' and @letter='274' and @page='271' and @line='10'] -opus/marginalien/marginal[@index='8378' and @letter='274' and @page='271' and @line='13'] -opus/marginalien/marginal[@index='8379' and @letter='274' and @page='271' and @line='14'] -opus/marginalien/marginal[@index='837' and @letter='53' and @page='132' and @line='12'] -opus/marginalien/marginal[@index='8380' and @letter='274' and @page='271' and @line='14'] -opus/marginalien/marginal[@index='8381' and @letter='274' and @page='271' and @line='15'] -opus/marginalien/marginal[@index='8382' and @letter='274' and @page='271' and @line='18'] -opus/marginalien/marginal[@index='8383' and @letter='275' and @page='271' and @line='30'] -opus/marginalien/marginal[@index='8384' and @letter='275' and @page='271' and @line='32'] -opus/marginalien/marginal[@index='8385' and @letter='275' and @page='271' and @line='34'] -opus/marginalien/marginal[@index='8386' and @letter='275' and @page='271' and @line='35'] -opus/marginalien/marginal[@index='8387' and @letter='275' and @page='271' and @line='35'] -opus/marginalien/marginal[@index='8388' and @letter='275' and @page='272' and @line='1'] -opus/marginalien/marginal[@index='8389' and @letter='275' and @page='272' and @line='4'] -opus/marginalien/marginal[@index='838' and @letter='53' and @page='132' and @line='18'] -opus/marginalien/marginal[@index='8390' and @letter='275' and @page='272' and @line='5'] -opus/marginalien/marginal[@index='8391' and @letter='275' and @page='272' and @line='12'] -opus/marginalien/marginal[@index='8392' and @letter='275' and @page='272' and @line='14'] -opus/marginalien/marginal[@index='8393' and @letter='275' and @page='272' and @line='18'] -opus/marginalien/marginal[@index='8394' and @letter='275' and @page='272' and @line='20'] -opus/marginalien/marginal[@index='8395' and @letter='276' and @page='272' and @line='31'] -opus/marginalien/marginal[@index='8396' and @letter='276' and @page='272' and @line='32'] -opus/marginalien/marginal[@index='8397' and @letter='276' and @page='273' and @line='2'] -opus/marginalien/marginal[@index='8398' and @letter='276' and @page='273' and @line='3'] -opus/marginalien/marginal[@index='8399' and @letter='276' and @page='273' and @line='5'] -opus/marginalien/marginal[@index='839' and @letter='53' and @page='132' and @line='19'] -opus/marginalien/marginal[@index='83' and @letter='5' and @page='14' and @line='2'] -opus/marginalien/marginal[@index='8400' and @letter='276' and @page='273' and @line='8'] -opus/marginalien/marginal[@index='8401' and @letter='276' and @page='273' and @line='15'] -opus/marginalien/marginal[@index='8402' and @letter='276' and @page='273' and @line='16'] -opus/marginalien/marginal[@index='8403' and @letter='276' and @page='273' and @line='18'] -opus/marginalien/marginal[@index='8404' and @letter='276' and @page='273' and @line='26'] -opus/marginalien/marginal[@index='8405' and @letter='276' and @page='273' and @line='32'] -opus/marginalien/marginal[@index='8406' and @letter='276' and @page='273' and @line='36'] -opus/marginalien/marginal[@index='8407' and @letter='276' and @page='273' and @line='36'] -opus/marginalien/marginal[@index='8408' and @letter='276' and @page='273' and @line='37'] -opus/marginalien/marginal[@index='8409' and @letter='276' and @page='273' and @line='37'] -opus/marginalien/marginal[@index='840' and @letter='53' and @page='132' and @line='22'] -opus/marginalien/marginal[@index='8410' and @letter='276' and @page='274' and @line='2'] -opus/marginalien/marginal[@index='8411' and @letter='276' and @page='274' and @line='5'] -opus/marginalien/marginal[@index='8412' and @letter='276' and @page='274' and @line='8'] -opus/marginalien/marginal[@index='8413' and @letter='276' and @page='274' and @line='8'] -opus/marginalien/marginal[@index='8414' and @letter='276' and @page='274' and @line='11'] -opus/marginalien/marginal[@index='8415' and @letter='276' and @page='274' and @line='11'] -opus/marginalien/marginal[@index='8416' and @letter='276' and @page='274' and @line='11'] -opus/marginalien/marginal[@index='8417' and @letter='276' and @page='274' and @line='14'] -opus/marginalien/marginal[@index='8418' and @letter='276' and @page='274' and @line='15'] -opus/marginalien/marginal[@index='8419' and @letter='276' and @page='274' and @line='16'] -opus/marginalien/marginal[@index='841' and @letter='53' and @page='132' and @line='27'] -opus/marginalien/marginal[@index='8420' and @letter='276' and @page='274' and @line='17'] -opus/marginalien/marginal[@index='8421' and @letter='276' and @page='274' and @line='17'] -opus/marginalien/marginal[@index='8422' and @letter='276' and @page='274' and @line='30'] -opus/marginalien/marginal[@index='8423' and @letter='276' and @page='274' and @line='30'] -opus/marginalien/marginal[@index='8424' and @letter='276' and @page='274' and @line='30'] -opus/marginalien/marginal[@index='8425' and @letter='276' and @page='274' and @line='33'] -opus/marginalien/marginal[@index='8426' and @letter='276' and @page='274' and @line='35'] -opus/marginalien/marginal[@index='8427' and @letter='276' and @page='274' and @line='35'] -opus/marginalien/marginal[@index='8428' and @letter='276' and @page='274' and @line='36'] -opus/marginalien/marginal[@index='8429' and @letter='276' and @page='274' and @line='37'] -opus/marginalien/marginal[@index='842' and @letter='54' and @page='133' and @line='8'] -opus/marginalien/marginal[@index='8430' and @letter='276' and @page='274' and @line='37'] -opus/marginalien/marginal[@index='8431' and @letter='276' and @page='275' and @line='1'] -opus/marginalien/marginal[@index='8432' and @letter='276' and @page='275' and @line='2'] -opus/marginalien/marginal[@index='8433' and @letter='277' and @page='275' and @line='9'] -opus/marginalien/marginal[@index='8434' and @letter='277' and @page='275' and @line='12'] -opus/marginalien/marginal[@index='8435' and @letter='277' and @page='275' and @line='15'] -opus/marginalien/marginal[@index='8436' and @letter='277' and @page='275' and @line='20'] -opus/marginalien/marginal[@index='8437' and @letter='277' and @page='275' and @line='21'] -opus/marginalien/marginal[@index='8438' and @letter='277' and @page='275' and @line='22'] -opus/marginalien/marginal[@index='8439' and @letter='277' and @page='275' and @line='28'] -opus/marginalien/marginal[@index='843' and @letter='54' and @page='133' and @line='15'] -opus/marginalien/marginal[@index='8440' and @letter='277' and @page='276' and @line='1'] -opus/marginalien/marginal[@index='8441' and @letter='277' and @page='276' and @line='4'] -opus/marginalien/marginal[@index='8442' and @letter='277' and @page='276' and @line='11'] -opus/marginalien/marginal[@index='8443' and @letter='277' and @page='276' and @line='12'] -opus/marginalien/marginal[@index='8444' and @letter='277' and @page='276' and @line='13'] -opus/marginalien/marginal[@index='8445' and @letter='277' and @page='276' and @line='16'] -opus/marginalien/marginal[@index='8446' and @letter='277' and @page='276' and @line='18'] -opus/marginalien/marginal[@index='8447' and @letter='278' and @page='276' and @line='34'] -opus/marginalien/marginal[@index='8448' and @letter='278' and @page='276' and @line='35'] -opus/marginalien/marginal[@index='8449' and @letter='278' and @page='277' and @line='8'] -opus/marginalien/marginal[@index='844' and @letter='54' and @page='133' and @line='16'] -opus/marginalien/marginal[@index='8450' and @letter='278' and @page='277' and @line='12'] -opus/marginalien/marginal[@index='8451' and @letter='278' and @page='277' and @line='21'] -opus/marginalien/marginal[@index='8452' and @letter='278' and @page='277' and @line='24'] -opus/marginalien/marginal[@index='8453' and @letter='278' and @page='277' and @line='29'] -opus/marginalien/marginal[@index='8454' and @letter='278' and @page='277' and @line='29'] -opus/marginalien/marginal[@index='8455' and @letter='279' and @page='278' and @line='4'] -opus/marginalien/marginal[@index='8456' and @letter='279' and @page='278' and @line='7'] -opus/marginalien/marginal[@index='8457' and @letter='279' and @page='278' and @line='14'] -opus/marginalien/marginal[@index='8458' and @letter='279' and @page='278' and @line='15'] -opus/marginalien/marginal[@index='8459' and @letter='279' and @page='278' and @line='25'] -opus/marginalien/marginal[@index='845' and @letter='54' and @page='133' and @line='17'] -opus/marginalien/marginal[@index='8460' and @letter='279' and @page='278' and @line='29'] -opus/marginalien/marginal[@index='8461' and @letter='279' and @page='279' and @line='5'] -opus/marginalien/marginal[@index='8462' and @letter='279' and @page='279' and @line='6'] -opus/marginalien/marginal[@index='8463' and @letter='279' and @page='279' and @line='6'] -opus/marginalien/marginal[@index='8464' and @letter='279' and @page='279' and @line='7'] -opus/marginalien/marginal[@index='8465' and @letter='279' and @page='279' and @line='8'] -opus/marginalien/marginal[@index='8466' and @letter='279' and @page='279' and @line='11'] -opus/marginalien/marginal[@index='8467' and @letter='279' and @page='279' and @line='13'] -opus/marginalien/marginal[@index='8468' and @letter='279' and @page='279' and @line='14'] -opus/marginalien/marginal[@index='8469' and @letter='279' and @page='279' and @line='15'] -opus/marginalien/marginal[@index='846' and @letter='54' and @page='133' and @line='18'] -opus/marginalien/marginal[@index='8470' and @letter='279' and @page='279' and @line='23'] -opus/marginalien/marginal[@index='8471' and @letter='279' and @page='279' and @line='29'] -opus/marginalien/marginal[@index='8472' and @letter='279' and @page='279' and @line='33'] -opus/marginalien/marginal[@index='8473' and @letter='279' and @page='279' and @line='34'] -opus/marginalien/marginal[@index='8474' and @letter='279' and @page='279' and @line='35'] -opus/marginalien/marginal[@index='8475' and @letter='279' and @page='280' and @line='3'] -opus/marginalien/marginal[@index='8476' and @letter='279' and @page='280' and @line='8'] -opus/marginalien/marginal[@index='8477' and @letter='279' and @page='280' and @line='9'] -opus/marginalien/marginal[@index='8478' and @letter='279' and @page='280' and @line='10'] -opus/marginalien/marginal[@index='8479' and @letter='279' and @page='280' and @line='13'] -opus/marginalien/marginal[@index='847' and @letter='54' and @page='133' and @line='22'] -opus/marginalien/marginal[@index='8480' and @letter='279' and @page='280' and @line='13'] -opus/marginalien/marginal[@index='8481' and @letter='279' and @page='280' and @line='14'] -opus/marginalien/marginal[@index='8482' and @letter='279' and @page='280' and @line='17'] -opus/marginalien/marginal[@index='8483' and @letter='279' and @page='280' and @line='18'] -opus/marginalien/marginal[@index='8484' and @letter='280' and @page='280' and @line='31'] -opus/marginalien/marginal[@index='8485' and @letter='280' and @page='280' and @line='33'] -opus/marginalien/marginal[@index='8486' and @letter='280' and @page='281' and @line='5'] -opus/marginalien/marginal[@index='8487' and @letter='280' and @page='281' and @line='7'] -opus/marginalien/marginal[@index='8488' and @letter='280' and @page='281' and @line='7'] -opus/marginalien/marginal[@index='8489' and @letter='280' and @page='281' and @line='9'] -opus/marginalien/marginal[@index='848' and @letter='54' and @page='133' and @line='24'] -opus/marginalien/marginal[@index='8490' and @letter='280' and @page='281' and @line='17'] -opus/marginalien/marginal[@index='8491' and @letter='280' and @page='281' and @line='19'] -opus/marginalien/marginal[@index='8492' and @letter='280' and @page='281' and @line='19'] -opus/marginalien/marginal[@index='8493' and @letter='280' and @page='281' and @line='20'] -opus/marginalien/marginal[@index='8494' and @letter='280' and @page='281' and @line='26'] -opus/marginalien/marginal[@index='8495' and @letter='280' and @page='281' and @line='29'] -opus/marginalien/marginal[@index='8496' and @letter='280' and @page='281' and @line='34'] -opus/marginalien/marginal[@index='8497' and @letter='280' and @page='281' and @line='36'] -opus/marginalien/marginal[@index='8498' and @letter='280' and @page='282' and @line='4'] -opus/marginalien/marginal[@index='8499' and @letter='280' and @page='282' and @line='8'] -opus/marginalien/marginal[@index='849' and @letter='54' and @page='133' and @line='26'] -opus/marginalien/marginal[@index='84' and @letter='5' and @page='14' and @line='2'] -opus/marginalien/marginal[@index='8500' and @letter='280' and @page='282' and @line='20'] -opus/marginalien/marginal[@index='8501' and @letter='280' and @page='282' and @line='31'] -opus/marginalien/marginal[@index='8502' and @letter='280' and @page='282' and @line='37'] -opus/marginalien/marginal[@index='8503' and @letter='280' and @page='283' and @line='3'] -opus/marginalien/marginal[@index='8504' and @letter='280' and @page='283' and @line='19'] -opus/marginalien/marginal[@index='8505' and @letter='280' and @page='283' and @line='30'] -opus/marginalien/marginal[@index='8506' and @letter='280' and @page='283' and @line='32'] -opus/marginalien/marginal[@index='8507' and @letter='280' and @page='283' and @line='35'] -opus/marginalien/marginal[@index='8508' and @letter='280' and @page='283' and @line='36'] -opus/marginalien/marginal[@index='8509' and @letter='280' and @page='283' and @line='37'] -opus/marginalien/marginal[@index='850' and @letter='54' and @page='133' and @line='28'] -opus/marginalien/marginal[@index='8510' and @letter='280' and @page='284' and @line='1'] -opus/marginalien/marginal[@index='8511' and @letter='280' and @page='284' and @line='7'] -opus/marginalien/marginal[@index='8512' and @letter='281' and @page='284' and @line='14'] -opus/marginalien/marginal[@index='8513' and @letter='281' and @page='284' and @line='14'] -opus/marginalien/marginal[@index='8514' and @letter='281' and @page='284' and @line='20'] -opus/marginalien/marginal[@index='8515' and @letter='281' and @page='284' and @line='22'] -opus/marginalien/marginal[@index='8516' and @letter='281' and @page='284' and @line='24'] -opus/marginalien/marginal[@index='8517' and @letter='281' and @page='284' and @line='25'] -opus/marginalien/marginal[@index='8518' and @letter='281' and @page='284' and @line='26'] -opus/marginalien/marginal[@index='8519' and @letter='281' and @page='284' and @line='27'] -opus/marginalien/marginal[@index='851' and @letter='54' and @page='133' and @line='29'] -opus/marginalien/marginal[@index='8520' and @letter='281' and @page='284' and @line='28'] -opus/marginalien/marginal[@index='8521' and @letter='281' and @page='284' and @line='30'] -opus/marginalien/marginal[@index='8522' and @letter='281' and @page='284' and @line='31'] -opus/marginalien/marginal[@index='8523' and @letter='281' and @page='285' and @line='1'] -opus/marginalien/marginal[@index='8524' and @letter='281' and @page='285' and @line='2'] -opus/marginalien/marginal[@index='8525' and @letter='281' and @page='285' and @line='5'] -opus/marginalien/marginal[@index='8526' and @letter='281' and @page='285' and @line='6'] -opus/marginalien/marginal[@index='8527' and @letter='281' and @page='285' and @line='6'] -opus/marginalien/marginal[@index='8528' and @letter='281' and @page='285' and @line='7'] -opus/marginalien/marginal[@index='8529' and @letter='281' and @page='285' and @line='9'] -opus/marginalien/marginal[@index='852' and @letter='54' and @page='133' and @line='31'] -opus/marginalien/marginal[@index='8530' and @letter='281' and @page='285' and @line='17'] -opus/marginalien/marginal[@index='8531' and @letter='281' and @page='285' and @line='18'] -opus/marginalien/marginal[@index='8532' and @letter='281' and @page='285' and @line='18'] -opus/marginalien/marginal[@index='8533' and @letter='281' and @page='285' and @line='21'] -opus/marginalien/marginal[@index='8534' and @letter='281' and @page='285' and @line='22'] -opus/marginalien/marginal[@index='8535' and @letter='281' and @page='285' and @line='23'] -opus/marginalien/marginal[@index='8536' and @letter='281' and @page='285' and @line='23'] -opus/marginalien/marginal[@index='8537' and @letter='281' and @page='285' and @line='29'] -opus/marginalien/marginal[@index='8538' and @letter='281' and @page='286' and @line='1'] -opus/marginalien/marginal[@index='8539' and @letter='281' and @page='286' and @line='3'] -opus/marginalien/marginal[@index='853' and @letter='54' and @page='134' and @line='14'] -opus/marginalien/marginal[@index='8540' and @letter='76' and @page='197' and @line='16'] -opus/marginalien/marginal[@index='8541' and @letter='282' and @page='286' and @line='23'] -opus/marginalien/marginal[@index='8542' and @letter='282' and @page='286' and @line='24'] -opus/marginalien/marginal[@index='8543' and @letter='282' and @page='286' and @line='26'] -opus/marginalien/marginal[@index='8544' and @letter='282' and @page='286' and @line='29'] -opus/marginalien/marginal[@index='8545' and @letter='282' and @page='286' and @line='29'] -opus/marginalien/marginal[@index='8546' and @letter='282' and @page='286' and @line='31'] -opus/marginalien/marginal[@index='8547' and @letter='282' and @page='286' and @line='31'] -opus/marginalien/marginal[@index='8548' and @letter='282' and @page='286' and @line='34'] -opus/marginalien/marginal[@index='8549' and @letter='282' and @page='287' and @line='4'] -opus/marginalien/marginal[@index='854' and @letter='55' and @page='134' and @line='23'] -opus/marginalien/marginal[@index='8550' and @letter='282' and @page='287' and @line='8'] -opus/marginalien/marginal[@index='8551' and @letter='282' and @page='287' and @line='10'] -opus/marginalien/marginal[@index='8552' and @letter='282' and @page='287' and @line='19'] -opus/marginalien/marginal[@index='8553' and @letter='282' and @page='287' and @line='21'] -opus/marginalien/marginal[@index='8554' and @letter='282' and @page='287' and @line='21'] -opus/marginalien/marginal[@index='8555' and @letter='282' and @page='287' and @line='23'] -opus/marginalien/marginal[@index='8556' and @letter='282' and @page='287' and @line='36'] -opus/marginalien/marginal[@index='8557' and @letter='282' and @page='288' and @line='1'] -opus/marginalien/marginal[@index='8558' and @letter='282' and @page='288' and @line='2'] -opus/marginalien/marginal[@index='8559' and @letter='282' and @page='288' and @line='3'] -opus/marginalien/marginal[@index='855' and @letter='55' and @page='134' and @line='24'] -opus/marginalien/marginal[@index='8560' and @letter='282' and @page='288' and @line='4'] -opus/marginalien/marginal[@index='8561' and @letter='282' and @page='288' and @line='6'] -opus/marginalien/marginal[@index='8562' and @letter='282' and @page='288' and @line='16'] -opus/marginalien/marginal[@index='8563' and @letter='282' and @page='288' and @line='18'] -opus/marginalien/marginal[@index='8564' and @letter='282' and @page='288' and @line='22'] -opus/marginalien/marginal[@index='8565' and @letter='282' and @page='288' and @line='31'] -opus/marginalien/marginal[@index='8566' and @letter='282' and @page='288' and @line='34'] -opus/marginalien/marginal[@index='8567' and @letter='282' and @page='289' and @line='6'] -opus/marginalien/marginal[@index='8568' and @letter='282' and @page='289' and @line='11'] -opus/marginalien/marginal[@index='8569' and @letter='282' and @page='289' and @line='11'] -opus/marginalien/marginal[@index='856' and @letter='55' and @page='134' and @line='24'] -opus/marginalien/marginal[@index='8570' and @letter='282' and @page='289' and @line='12'] -opus/marginalien/marginal[@index='8571' and @letter='282' and @page='289' and @line='13'] -opus/marginalien/marginal[@index='8572' and @letter='282' and @page='289' and @line='13'] -opus/marginalien/marginal[@index='8573' and @letter='282' and @page='289' and @line='14'] -opus/marginalien/marginal[@index='8574' and @letter='282' and @page='289' and @line='16'] -opus/marginalien/marginal[@index='8575' and @letter='282' and @page='289' and @line='22'] -opus/marginalien/marginal[@index='857' and @letter='55' and @page='134' and @line='24'] -opus/marginalien/marginal[@index='858' and @letter='55' and @page='134' and @line='25'] -opus/marginalien/marginal[@index='85' and @letter='5' and @page='14' and @line='2'] -opus/marginalien/marginal[@index='860' and @letter='55' and @page='134' and @line='28'] -opus/marginalien/marginal[@index='861' and @letter='55' and @page='134' and @line='28'] -opus/marginalien/marginal[@index='862' and @letter='55' and @page='134' and @line='30'] -opus/marginalien/marginal[@index='863' and @letter='55' and @page='134' and @line='31'] -opus/marginalien/marginal[@index='864' and @letter='55' and @page='134' and @line='34'] -opus/marginalien/marginal[@index='865' and @letter='55' and @page='135' and @line='6'] -opus/marginalien/marginal[@index='866' and @letter='55' and @page='135' and @line='20'] -opus/marginalien/marginal[@index='867' and @letter='55' and @page='135' and @line='30'] -opus/marginalien/marginal[@index='868' and @letter='55' and @page='135' and @line='35'] -opus/marginalien/marginal[@index='869' and @letter='55' and @page='136' and @line='14'] -opus/marginalien/marginal[@index='86' and @letter='5' and @page='14' and @line='3'] -opus/marginalien/marginal[@index='870' and @letter='55' and @page='136' and @line='24'] -opus/marginalien/marginal[@index='871' and @letter='55' and @page='136' and @line='34'] -opus/marginalien/marginal[@index='872' and @letter='55' and @page='136' and @line='35'] -opus/marginalien/marginal[@index='873' and @letter='55' and @page='136' and @line='37'] -opus/marginalien/marginal[@index='874' and @letter='55' and @page='137' and @line='1'] -opus/marginalien/marginal[@index='875' and @letter='55' and @page='137' and @line='2'] -opus/marginalien/marginal[@index='876' and @letter='55' and @page='137' and @line='5'] -opus/marginalien/marginal[@index='877' and @letter='55' and @page='137' and @line='5'] -opus/marginalien/marginal[@index='878' and @letter='55' and @page='137' and @line='6'] -opus/marginalien/marginal[@index='879' and @letter='55' and @page='137' and @line='6'] -opus/marginalien/marginal[@index='87' and @letter='5' and @page='14' and @line='3'] -opus/marginalien/marginal[@index='880' and @letter='55' and @page='137' and @line='10'] -opus/marginalien/marginal[@index='881' and @letter='56' and @page='137' and @line='18'] -opus/marginalien/marginal[@index='882' and @letter='56' and @page='137' and @line='22'] -opus/marginalien/marginal[@index='883' and @letter='56' and @page='137' and @line='27'] -opus/marginalien/marginal[@index='884' and @letter='56' and @page='137' and @line='29'] -opus/marginalien/marginal[@index='885' and @letter='56' and @page='138' and @line='11'] -opus/marginalien/marginal[@index='886' and @letter='56' and @page='138' and @line='12'] -opus/marginalien/marginal[@index='887' and @letter='56' and @page='138' and @line='13'] -opus/marginalien/marginal[@index='888' and @letter='56' and @page='138' and @line='24'] -opus/marginalien/marginal[@index='889' and @letter='56' and @page='138' and @line='28'] -opus/marginalien/marginal[@index='88' and @letter='6' and @page='14' and @line='8'] -opus/marginalien/marginal[@index='890' and @letter='56' and @page='138' and @line='34'] -opus/marginalien/marginal[@index='891' and @letter='57' and @page='139' and @line='26'] -opus/marginalien/marginal[@index='892' and @letter='57' and @page='139' and @line='28'] -opus/marginalien/marginal[@index='893' and @letter='57' and @page='139' and @line='31'] -opus/marginalien/marginal[@index='894' and @letter='57' and @page='139' and @line='32'] -opus/marginalien/marginal[@index='895' and @letter='57' and @page='140' and @line='5'] -opus/marginalien/marginal[@index='896' and @letter='57' and @page='140' and @line='6'] -opus/marginalien/marginal[@index='897' and @letter='57' and @page='140' and @line='7'] -opus/marginalien/marginal[@index='898' and @letter='57' and @page='140' and @line='9'] -opus/marginalien/marginal[@index='899' and @letter='57' and @page='140' and @line='10'] -opus/marginalien/marginal[@index='89' and @letter='6' and @page='14' and @line='15'] -opus/marginalien/marginal[@index='8' and @letter='1' and @page='2' and @line='27'] -opus/marginalien/marginal[@index='900' and @letter='57' and @page='140' and @line='12'] -opus/marginalien/marginal[@index='901' and @letter='57' and @page='140' and @line='13'] -opus/marginalien/marginal[@index='902' and @letter='57' and @page='140' and @line='13'] -opus/marginalien/marginal[@index='903' and @letter='57' and @page='140' and @line='22'] -opus/marginalien/marginal[@index='904' and @letter='57' and @page='140' and @line='26'] -opus/marginalien/marginal[@index='905' and @letter='57' and @page='140' and @line='27'] -opus/marginalien/marginal[@index='906' and @letter='57' and @page='140' and @line='30'] -opus/marginalien/marginal[@index='907' and @letter='57' and @page='140' and @line='32'] -opus/marginalien/marginal[@index='908' and @letter='57' and @page='140' and @line='33'] -opus/marginalien/marginal[@index='909' and @letter='57' and @page='140' and @line='33'] -opus/marginalien/marginal[@index='90' and @letter='6' and @page='14' and @line='16'] -opus/marginalien/marginal[@index='910' and @letter='57' and @page='140' and @line='34'] -opus/marginalien/marginal[@index='911' and @letter='57' and @page='140' and @line='34'] -opus/marginalien/marginal[@index='912' and @letter='57' and @page='140' and @line='35'] -opus/marginalien/marginal[@index='913' and @letter='57' and @page='140' and @line='36'] -opus/marginalien/marginal[@index='914' and @letter='58' and @page='141' and @line='12'] -opus/marginalien/marginal[@index='915' and @letter='58' and @page='141' and @line='17'] -opus/marginalien/marginal[@index='916' and @letter='58' and @page='141' and @line='26'] -opus/marginalien/marginal[@index='917' and @letter='58' and @page='141' and @line='34'] -opus/marginalien/marginal[@index='918' and @letter='58' and @page='142' and @line='6'] -opus/marginalien/marginal[@index='919' and @letter='58' and @page='142' and @line='11'] -opus/marginalien/marginal[@index='91' and @letter='6' and @page='14' and @line='16'] -opus/marginalien/marginal[@index='920' and @letter='58' and @page='142' and @line='14'] -opus/marginalien/marginal[@index='921' and @letter='58' and @page='142' and @line='24'] -opus/marginalien/marginal[@index='922' and @letter='58' and @page='142' and @line='26'] -opus/marginalien/marginal[@index='924' and @letter='58' and @page='142' and @line='33'] -opus/marginalien/marginal[@index='926' and @letter='58' and @page='142' and @line='37'] -opus/marginalien/marginal[@index='927' and @letter='58' and @page='143' and @line='1'] -opus/marginalien/marginal[@index='928' and @letter='58' and @page='143' and @line='6'] -opus/marginalien/marginal[@index='929' and @letter='58' and @page='143' and @line='8'] -opus/marginalien/marginal[@index='92' and @letter='6' and @page='14' and @line='20'] -opus/marginalien/marginal[@index='930' and @letter='58' and @page='143' and @line='14'] -opus/marginalien/marginal[@index='931' and @letter='58' and @page='143' and @line='20'] -opus/marginalien/marginal[@index='932' and @letter='58' and @page='143' and @line='20'] -opus/marginalien/marginal[@index='933' and @letter='58' and @page='143' and @line='22'] -opus/marginalien/marginal[@index='9344' and @letter='36' and @page='91' and @line='32'] -opus/marginalien/marginal[@index='9345' and @letter='64' and @page='161' and @line='10'] -opus/marginalien/marginal[@index='9346' and @letter='71' and @page='175' and @line='1'] -opus/marginalien/marginal[@index='9347' and @letter='77' and @page='202' and @line='5'] -opus/marginalien/marginal[@index='9348' and @letter='78' and @page='206' and @line='30'] -opus/marginalien/marginal[@index='9349' and @letter='111' and @page='244' and @line='29'] -opus/marginalien/marginal[@index='934' and @letter='58' and @page='143' and @line='23'] -opus/marginalien/marginal[@index='9350' and @letter='105' and @page='232' and @line='36'] -opus/marginalien/marginal[@index='935' and @letter='58' and @page='143' and @line='25'] -opus/marginalien/marginal[@index='936' and @letter='58' and @page='143' and @line='28'] -opus/marginalien/marginal[@index='937' and @letter='58' and @page='143' and @line='29'] -opus/marginalien/marginal[@index='938' and @letter='58' and @page='143' and @line='30'] -opus/marginalien/marginal[@index='939' and @letter='58' and @page='143' and @line='31'] -opus/marginalien/marginal[@index='93' and @letter='6' and @page='14' and @line='27'] -opus/marginalien/marginal[@index='940' and @letter='58' and @page='143' and @line='31'] -opus/marginalien/marginal[@index='941' and @letter='58' and @page='143' and @line='32'] -opus/marginalien/marginal[@index='942' and @letter='58' and @page='143' and @line='33'] -opus/marginalien/marginal[@index='943' and @letter='58' and @page='143' and @line='34'] -opus/marginalien/marginal[@index='944' and @letter='58' and @page='143' and @line='36'] -opus/marginalien/marginal[@index='945' and @letter='58' and @page='144' and @line='2'] -opus/marginalien/marginal[@index='946' and @letter='58' and @page='144' and @line='14'] -opus/marginalien/marginal[@index='947' and @letter='58' and @page='144' and @line='19'] -opus/marginalien/marginal[@index='948' and @letter='58' and @page='144' and @line='24'] -opus/marginalien/marginal[@index='949' and @letter='59' and @page='144' and @line='31'] -opus/marginalien/marginal[@index='94' and @letter='6' and @page='14' and @line='27'] -opus/marginalien/marginal[@index='950' and @letter='59' and @page='144' and @line='34'] -opus/marginalien/marginal[@index='951' and @letter='59' and @page='144' and @line='34'] -opus/marginalien/marginal[@index='952' and @letter='59' and @page='145' and @line='4'] -opus/marginalien/marginal[@index='953' and @letter='59' and @page='145' and @line='4'] -opus/marginalien/marginal[@index='954' and @letter='59' and @page='145' and @line='6'] -opus/marginalien/marginal[@index='955' and @letter='59' and @page='145' and @line='7'] -opus/marginalien/marginal[@index='956' and @letter='59' and @page='145' and @line='9'] -opus/marginalien/marginal[@index='957' and @letter='59' and @page='145' and @line='11'] -opus/marginalien/marginal[@index='958' and @letter='59' and @page='145' and @line='11'] -opus/marginalien/marginal[@index='959' and @letter='59' and @page='145' and @line='13'] -opus/marginalien/marginal[@index='95' and @letter='6' and @page='14' and @line='28'] -opus/marginalien/marginal[@index='960' and @letter='59' and @page='145' and @line='16'] -opus/marginalien/marginal[@index='961' and @letter='59' and @page='145' and @line='18'] -opus/marginalien/marginal[@index='962' and @letter='59' and @page='145' and @line='18'] -opus/marginalien/marginal[@index='963' and @letter='59' and @page='145' and @line='20'] -opus/marginalien/marginal[@index='964' and @letter='59' and @page='145' and @line='22'] -opus/marginalien/marginal[@index='965' and @letter='59' and @page='145' and @line='20'] -opus/marginalien/marginal[@index='966' and @letter='59' and @page='145' and @line='22'] -opus/marginalien/marginal[@index='967' and @letter='59' and @page='145' and @line='30'] -opus/marginalien/marginal[@index='968' and @letter='59' and @page='145' and @line='32'] -opus/marginalien/marginal[@index='969' and @letter='59' and @page='145' and @line='33'] -opus/marginalien/marginal[@index='96' and @letter='6' and @page='14' and @line='29'] -opus/marginalien/marginal[@index='970' and @letter='59' and @page='145' and @line='34'] -opus/marginalien/marginal[@index='971' and @letter='59' and @page='145' and @line='35'] -opus/marginalien/marginal[@index='972' and @letter='59' and @page='145' and @line='37'] -opus/marginalien/marginal[@index='973' and @letter='59' and @page='146' and @line='1'] -opus/marginalien/marginal[@index='974' and @letter='59' and @page='146' and @line='13'] -opus/marginalien/marginal[@index='975' and @letter='59' and @page='146' and @line='16'] -opus/marginalien/marginal[@index='976' and @letter='59' and @page='146' and @line='18'] -opus/marginalien/marginal[@index='977' and @letter='59' and @page='146' and @line='21'] -opus/marginalien/marginal[@index='978' and @letter='59' and @page='146' and @line='23'] -opus/marginalien/marginal[@index='979' and @letter='59' and @page='146' and @line='23'] -opus/marginalien/marginal[@index='97' and @letter='6' and @page='15' and @line='3'] -opus/marginalien/marginal[@index='980' and @letter='59' and @page='146' and @line='29'] -opus/marginalien/marginal[@index='981' and @letter='59' and @page='146' and @line='37'] -opus/marginalien/marginal[@index='982' and @letter='59' and @page='147' and @line='4'] -opus/marginalien/marginal[@index='983' and @letter='60' and @page='147' and @line='8'] -opus/marginalien/marginal[@index='984' and @letter='60' and @page='147' and @line='10'] -opus/marginalien/marginal[@index='985' and @letter='60' and @page='147' and @line='17'] -opus/marginalien/marginal[@index='986' and @letter='60' and @page='147' and @line='19'] -opus/marginalien/marginal[@index='987' and @letter='60' and @page='147' and @line='23'] -opus/marginalien/marginal[@index='988' and @letter='60' and @page='147' and @line='25'] -opus/marginalien/marginal[@index='989' and @letter='60' and @page='147' and @line='30'] -opus/marginalien/marginal[@index='98' and @letter='6' and @page='15' and @line='6'] -opus/marginalien/marginal[@index='990' and @letter='60' and @page='147' and @line='31'] -opus/marginalien/marginal[@index='991' and @letter='60' and @page='148' and @line='3'] -opus/marginalien/marginal[@index='992' and @letter='60' and @page='148' and @line='4'] -opus/marginalien/marginal[@index='993' and @letter='60' and @page='148' and @line='5'] -opus/marginalien/marginal[@index='994' and @letter='60' and @page='148' and @line='10'] -opus/marginalien/marginal[@index='995' and @letter='60' and @page='148' and @line='14'] -opus/marginalien/marginal[@index='996' and @letter='60' and @page='148' and @line='18'] -opus/marginalien/marginal[@index='997' and @letter='60' and @page='148' and @line='21'] -opus/marginalien/marginal[@index='998' and @letter='60' and @page='148' and @line='22'] -opus/marginalien/marginal[@index='999' and @letter='60' and @page='148' and @line='22'] -opus/marginalien/marginal[@index='99' and @letter='6' and @page='15' and @line='10'] -opus/marginalien/marginal[@index='9' and @letter='1' and @page='2' and @line='29'] -opus/marginalien/marginal/intlink[@letter='100' and @page='220' and @line='23' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='102' and @page='222' and @line='17' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='103' and @page='223' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='103' and @page='225' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='104' and @page='226' and @line='10' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='105' and @page='232' and @line='36' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='10' and @page='27' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='10' and @page='27' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='111' and @page='244' and @line='29' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='112' and @page='245' and @line='21' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='112' and @page='245' and @line='23' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='115' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='115' and @page='252' and @line='8' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='117' and @page='254' and @line='26' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='118' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='119' and @page='257' and @line='29' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='119' and @page='257' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='11' and @page='31' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='120' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='120' and @page='262' and @line='2' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='121' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='121' and @page='262' and @line='27' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='122' and @page='263' and @line='21' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='122' and @page='263' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='122' and @page='264' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='123' and @page='265' and @line='6' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='124' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='124' and @page='267' and @line='12' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='125' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='125' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='125' and @page='268' and @line='32' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='126' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='127' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='127' and @page='273' and @line='33' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='128' and @page='274' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='129' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='129' and @page='278' and @line='32' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='130' and @page='281' and @line='19' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='130' and @page='281' and @line='27' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='130' and @page='281' and @line='33' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='130' and @page='281' and @line='35' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='131' and @page='283' and @line='10' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='132' and @page='285' and @line='12' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='133' and @page='286' and @line='26' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='136' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='136' and @page='293' and @line='16' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='136' and @page='294' and @line='18' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='136' and @page='295' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='136' and @page='295' and @line='17' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='136' and @page='295' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='137' and @page='296' and @line='20' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='137' and @page='298' and @line='16' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='137' and @page='298' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='138' and @page='299' and @line='21' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='139' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='139' and @page='304' and @line='20' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='139' and @page='305' and @line='25' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='139' and @page='305' and @line='26' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='139' and @page='305' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='139' and @page='306' and @line='33' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='139' and @page='307' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='139' and @page='308' and @line='27' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='140' and @page='310' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='142' and @page='314' and @line='12' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='143' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='143' and @page='315' and @line='10' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='143' and @page='321' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='143' and @page='325' and @line='12' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='143' and @page='328' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='144' and @page='331' and @line='20' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='145' and @page='333' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='145' and @page='333' and @line='13' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='145' and @page='333' and @line='6' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='145' and @page='335' and @line='19' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='145' and @page='335' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='145' and @page='335' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='145' and @page='336' and @line='19' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='145' and @page='336' and @line='20' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='145' and @page='336' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='145' and @page='337' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='145' and @page='337' and @line='35' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='145' and @page='338' and @line='14' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='145' and @page='338' and @line='15' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='146' and @page='339' and @line='32' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='146' and @page='344' and @line='26' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='146' and @page='345' and @line='23' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='147' and @page='346' and @line='13' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='147' and @page='346' and @line='33' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='147' and @page='347' and @line='26' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='148' and @page='348' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='148' and @page='351' and @line='2' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='148' and @page='352' and @line='21' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='148' and @page='353' and @line='10' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='149' and @page='353' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='149' and @page='353' and @line='33' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='149' and @page='354' and @line='33' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='149' and @page='354' and @line='36' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='149' and @page='355' and @line='10' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='149' and @page='355' and @line='1' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='149' and @page='356' and @line='10' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='149' and @page='356' and @line='34' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='149' and @page='356' and @line='35' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='149' and @page='357' and @line='22' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='14' and @page='36' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='14' and @page='38' and @line='32' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='150' and @page='358' and @line='19' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='150' and @page='360' and @line='13' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='150' and @page='361' and @line='25' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='150' and @page='361' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='151' and @page='361' and @line='29' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='151' and @page='362' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='151' and @page='363' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='151' and @page='363' and @line='17' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='151' and @page='363' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='152' and @page='363' and @line='27' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='152' and @page='364' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='152' and @page='364' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='152' and @page='365' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='152' and @page='365' and @line='31' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='152' and @page='365' and @line='32' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='152' and @page='366' and @line='6' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='152' and @page='367' and @line='25' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='152' and @page='367' and @line='35' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='152' and @page='367' and @line='36' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='152' and @page='368' and @line='19' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='152' and @page='368' and @line='4' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='152' and @page='369' and @line='15' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='153' and @page='373' and @line='21' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='373' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='373' and @line='31' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='374' and @line='21' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='376' and @line='12' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='376' and @line='27' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='376' and @line='29' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='376' and @line='33' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='377' and @line='1' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='377' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='377' and @line='35' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='377' and @line='4' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='378' and @line='1' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='378' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='378' and @line='25' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='378' and @line='32' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='378' and @line='4' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='379' and @line='1' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='380' and @line='10' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='380' and @line='21' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='380' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='380' and @line='31' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='380' and @line='34' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='380' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='153' and @page='381' and @line='3' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='154' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='154' and @page='382' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='154' and @page='383' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='154' and @page='383' and @line='2' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='154' and @page='385' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='154' and @page='385' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='155' and @page='386' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='155' and @page='386' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='155' and @page='387' and @line='4' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='155' and @page='388' and @line='16' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='155' and @page='388' and @line='19' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='155' and @page='389' and @line='22' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='155' and @page='389' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='155' and @page='389' and @line='2' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='155' and @page='389' and @line='3' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='155' and @page='390' and @line='31' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='156' and @page='391' and @line='17' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='156' and @page='391' and @line='27' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='156' and @page='392' and @line='25' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='156' and @page='392' and @line='8' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='156' and @page='393' and @line='21' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='156' and @page='393' and @line='4' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='156' and @page='394' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='157' and @page='396' and @line='12' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='157' and @page='396' and @line='4' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='157' and @page='396' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='157' and @page='398' and @line='20' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='157' and @page='398' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='157' and @page='398' and @line='29' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='157' and @page='399' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='157' and @page='399' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='157' and @page='399' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='157' and @page='400' and @line='13' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='157' and @page='400' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='157' and @page='400' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='158' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='159' and @page='403' and @line='16' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='159' and @page='403' and @line='18' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='159' and @page='403' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='159' and @page='403' and @line='32' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='159' and @page='404' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='159' and @page='405' and @line='22' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='159' and @page='405' and @line='6' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='159' and @page='405' and @line='9' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='159' and @page='406' and @line='19' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='159' and @page='407' and @line='20' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='159' and @page='407' and @line='2' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='15' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='15' and @page='41' and @line='2' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='15' and @page='41' and @line='6' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='15' and @page='42' and @line='17' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='160' and @page='408' and @line='21' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='160' and @page='409' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='161' and @page='411' and @line='33' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='161' and @page='413' and @line='33' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='161' and @page='421' and @line='2' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='162' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='162' and @page='422' and @line='22' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='162' and @page='423' and @line='35' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='162' and @page='424' and @line='6' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='163' and @page='425' and @line='1' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='163' and @page='425' and @line='25' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='163' and @page='425' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='163' and @page='425' and @line='3' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='163' and @page='426' and @line='22' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='163' and @page='427' and @line='10' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='163' and @page='427' and @line='16' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='163' and @page='427' and @line='22' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='163' and @page='427' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='163' and @page='428' and @line='35' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='163' and @page='429' and @line='13' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='163' and @page='429' and @line='16' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='163' and @page='429' and @line='7' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='163' and @page='430' and @line='1' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='164' and @page='434' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='165' and @page='434' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='165' and @page='435' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='165' and @page='435' and @line='37' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='165' and @page='436' and @line='20' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='165' and @page='436' and @line='36' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='165' and @page='436' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='165' and @page='437' and @line='1' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='165' and @page='437' and @line='34' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='165' and @page='437' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='166' and @page='439' and @line='32' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='166' and @page='440' and @line='13' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='167' and @page='441' and @line='35' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='167' and @page='441' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='168' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='168' and @page='445' and @line='3' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='169' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='169' and @page='446' and @line='23' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='169' and @page='446' and @line='25' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='169' and @page='446' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='169' and @page='447' and @line='18' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='170' and @page='448' and @line='2' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='170' and @page='450' and @line='23' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='170' and @page='451' and @line='16' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='170' and @page='451' and @line='17' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='170' and @page='451' and @line='25' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='170' and @page='451' and @line='35' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='170' and @page='452' and @line='1' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='170' and @page='452' and @line='25' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='170' and @page='452' and @line='32' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='171' and @page='453' and @line='22' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='171' and @page='454' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='173' and @page='457' and @line='36' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='174' and @page='1' and @line='15' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='174' and @page='2' and @line='7' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='178' and @page='10' and @line='10' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='178' and @page='9' and @line='2' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='178' and @page='9' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='179' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='179' and @page='11' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='179' and @page='14' and @line='14' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='17' and @page='47' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='17' and @page='47' and @line='32' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='180' and @page='16' and @line='18' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='180' and @page='17' and @line='21' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='180' and @page='17' and @line='2' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='180' and @page='17' and @line='6' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='181' and @page='18' and @line='23' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='182' and @page='19' and @line='20' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='182' and @page='19' and @line='21' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='182' and @page='20' and @line='22' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='182' and @page='21' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='182' and @page='22' and @line='34' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='182' and @page='23' and @line='22' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='182' and @page='23' and @line='7' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='183' and @page='24' and @line='20' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='183' and @page='24' and @line='31' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='184' and @page='27' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='185' and @page='31' and @line='27' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='188' and @page='35' and @line='31' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='189' and @page='37' and @line='5' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='189' and @page='37' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='18' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='191' and @page='39' and @line='22' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='191' and @page='40' and @line='4' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='192' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='192' and @page='40' and @line='25' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='193' and @page='42' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='193' and @page='42' and @line='29' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='194' and @page='44' and @line='17' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='194' and @page='45' and @line='17' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='196' and @page='47' and @line='8' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='197' and @page='49' and @line='13' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='197' and @page='51' and @line='15' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='197' and @page='52' and @line='21' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='197' and @page='52' and @line='23' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='198' and @page='55' and @line='3' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='198' and @page='55' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='19' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='200' and @page='58' and @line='19' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='200' and @page='59' and @line='17' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='201' and @page='60' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='201' and @page='61' and @line='13' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='201' and @page='61' and @line='18' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='201' and @page='61' and @line='26' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='201' and @page='61' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='202' and @page='62' and @line='3' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='202' and @page='62' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='202' and @page='63' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='202' and @page='63' and @line='34' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='202' and @page='64' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='202' and @page='65' and @line='1' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='202' and @page='65' and @line='26' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='202' and @page='65' and @line='35' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='202' and @page='66' and @line='25' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='202' and @page='67' and @line='34' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='203' and @page='69' and @line='6' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='203' and @page='69' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='203' and @page='71' and @line='36' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='203' and @page='72' and @line='3' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='203' and @page='74' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='203' and @page='75' and @line='8' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='204' and @page='78' and @line='13' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='204' and @page='78' and @line='27' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='204' and @page='80' and @line='22' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='208' and @page='93' and @line='17' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='209' and @page='100' and @line='27' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='209' and @page='98' and @line='14' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='210' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='212' and @page='104' and @line='12' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='212' and @page='106' and @line='2' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='212' and @page='108' and @line='13' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='212' and @page='108' and @line='15' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='214' and @page='112' and @line='4' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='214' and @page='115' and @line='1' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='215' and @page='119' and @line='32' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='216' and @page='122' and @line='17' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='216' and @page='122' and @line='34' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='216' and @page='123' and @line='7' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='217' and @page='123' and @line='31' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='217' and @page='124' and @line='7' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='217' and @page='125' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='218' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='219' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='219' and @page='127' and @line='20' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='219' and @page='127' and @line='20' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='219' and @page='127' and @line='27' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='219' and @page='127' and @line='34' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='219' and @page='128' and @line='14' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='219' and @page='128' and @line='17' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='219' and @page='128' and @line='18' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='219' and @page='128' and @line='1' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='219' and @page='128' and @line='20' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='219' and @page='128' and @line='23' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='219' and @page='128' and @line='25' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='219' and @page='128' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='219' and @page='128' and @line='8' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='219' and @page='129' and @line='14' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='219' and @page='129' and @line='18' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='219' and @page='129' and @line='23' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='219' and @page='129' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='219' and @page='129' and @line='33' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='219' and @page='129' and @line='37' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='219' and @page='129' and @line='7' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='219' and @page='130' and @line='6' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='220' and @page='130' and @line='29' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='220' and @page='130' and @line='31' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='220' and @page='131' and @line='9' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='220' and @page='131' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='220' and @page='132' and @line='36' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='220' and @page='133' and @line='2' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='221' and @page='134' and @line='15' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='221' and @page='134' and @line='19' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='221' and @page='134' and @line='20' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='221' and @page='134' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='221' and @page='134' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='221' and @page='135' and @line='10' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='221' and @page='135' and @line='18' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='221' and @page='135' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='221' and @page='135' and @line='2' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='221' and @page='135' and @line='32' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='221' and @page='135' and @line='35' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='221' and @page='135' and @line='3' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='221' and @page='135' and @line='4' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='221' and @page='135' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='222' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='222' and @page='136' and @line='17' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='222' and @page='136' and @line='20' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='222' and @page='137' and @line='35' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='222' and @page='137' and @line='6' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='222' and @page='138' and @line='3' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='223' and @page='140' and @line='17' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='223' and @page='140' and @line='26' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='223' and @page='141' and @line='6' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='224' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='224' and @page='143' and @line='18' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='224' and @page='143' and @line='23' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='224' and @page='143' and @line='33' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='225' and @page='144' and @line='8' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='225' and @page='145' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='225' and @page='145' and @line='6' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='226' and @page='147' and @line='23' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='226' and @page='147' and @line='3' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='227' and @page='150' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='227' and @page='153' and @line='33' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='228' and @page='156' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='228' and @page='157' and @line='25' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='230' and @page='159' and @line='8' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='230' and @page='160' and @line='1' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='231' and @page='160' and @line='33' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='231' and @page='162' and @line='2' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='232' and @page='163' and @line='36' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='232' and @page='164' and @line='7' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='233' and @page='166' and @line='27' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='233' and @page='168' and @line='35' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='234' and @page='170' and @line='22' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='234' and @page='170' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='234' and @page='170' and @line='8' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='234' and @page='170' and @line='9' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='234' and @page='171' and @line='4' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='236' and @page='176' and @line='19' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='236' and @page='177' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='236' and @page='177' and @line='31' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='236' and @page='178' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='237' and @page='178' and @line='25' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='237' and @page='179' and @line='21' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='238' and @page='180' and @line='8' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='239' and @page='181' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='239' and @page='181' and @line='27' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='239' and @page='182' and @line='22' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='239' and @page='182' and @line='23' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='23' and @page='63' and @line='33' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='240' and @page='183' and @line='10' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='240' and @page='183' and @line='23' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='240' and @page='183' and @line='31' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='240' and @page='183' and @line='33' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='240' and @page='184' and @line='33' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='240' and @page='184' and @line='3' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='240' and @page='185' and @line='20' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='241' and @page='188' and @line='18' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='242' and @page='191' and @line='25' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='242' and @page='193' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='243' and @page='194' and @line='20' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='243' and @page='194' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='243' and @page='195' and @line='1' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='244' and @page='198' and @line='1' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='244' and @page='198' and @line='20' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='244' and @page='199' and @line='37' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='246' and @page='202' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='247' and @page='206' and @line='25' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='249' and @page='212' and @line='10' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='251' and @page='219' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='252' and @page='220' and @line='31' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='254' and @page='226' and @line='26' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='254' and @page='229' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='256' and @page='231' and @line='29' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='257' and @page='233' and @line='13' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='257' and @page='233' and @line='36' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='257' and @page='235' and @line='13' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='259' and @page='242' and @line='236' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='259' and @page='242' and @line='29' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='259' and @page='434' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='25' and @page='68' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='260' and @page='244' and @line='3' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='260' and @page='244' and @line='6' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='260' and @page='246' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='262' and @page='248' and @line='13' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='262' and @page='248' and @line='23' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='262' and @page='248' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='263' and @page='251' and @line='7' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='263' and @page='252' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='263' and @page='253' and @line='16' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='264' and @page='253' and @line='18' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='264' and @page='253' and @line='19' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='265' and @page='254' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='265' and @page='255' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='266' and @page='255' and @line='23' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='271' and @page='262' and @line='25' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='271' and @page='262' and @line='32' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='271' and @page='265' and @line='18' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='273' and @page='269' and @line='35' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='276' and @page='274' and @line='19' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='277' and @page='276' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='277' and @page='276' and @line='3' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='278' and @page='276' and @line='26' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='278' and @page='277' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='27' and @page='73' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='284' and @page='292' and @line='35' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='28' and @page='75' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='29' and @page='77' and @line='2' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='29' and @page='77' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='32' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='33' and @page='86' and @line='12' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='34' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='35' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='35' and @page='89' and @line='18' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='35' and @page='90' and @line='34' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='36' and @page='92' and @line='20' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='36' and @page='93' and @line='19' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='40' and @page='101' and @line='4' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='40' and @page='102' and @line='18' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='43' and @page='108' and @line='17' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='43' and @page='109' and @line='34' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='44' and @page='111' and @line='14' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='44' and @page='112' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='45' and @page='113' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='46' and @page='115' and @line='12' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='46' and @page='116' and @line='18' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='4' and @page='10' and @line='37' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='4' and @page='12' and @line='20' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='51' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='51' and @page='125' and @line='25' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='51' and @page='125' and @line='33' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='51' and @page='125' and @line='8' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='52' and @page='126' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='52' and @page='128' and @line='29' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='53' and @page='131' and @line='29' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='53' and @page='131' and @line='34' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='54' and @page='133' and @line='34' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='54' and @page='133' and @line='8' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='55' and @page='134' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='55' and @page='137' and @line='2' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='55' and @page='137' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='56' and @page='137' and @line='18' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='56' and @page='137' and @line='22' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='57' and @page='139' and @line='26' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='57' and @page='140' and @line='12' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='58' and @page='141' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='58' and @page='142' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='58' and @page='143' and @line='36' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='59' and @page='145' and @line='21' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='60' and @page='148' and @line='18' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='60' and @page='148' and @line='3' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='60' and @page='149' and @line='1' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='61' and @page='152' and @line='18' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='63' and @page='158' and @line='11' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='64' and @page='161' and @line='10' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='64' and @page='161' and @line='4' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='64' and @page='162' and @line='15' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='71' and @page='173' and @line='33' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='71' and @page='174' and @line='24' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='71' and @page='175' and @line='1' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='71' and @page='175' and @line='37' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='71' and @page='176' and @line='17' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='72' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='72' and @page='180' and @line='14' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='72' and @page='180' and @line='6' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='72' and @page='182' and @line='23' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='72' and @page='182' and @line='25' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='72' and @page='183' and @line='23' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='73' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='74' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='74' and @page='188' and @line='28' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='74' and @page='188' and @line='31' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='74' and @page='189' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='74' and @page='190' and @line='16' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='75' and @page='194' and @line='2' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='75' and @page='195' and @line='16' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='76' and @page='198' and @line='25' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='76' and @page='199' and @line='26' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='77' and @page='201' and @line='7' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='77' and @page='202' and @line='5' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='77' and @page='204' and @line='27' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='78' and @page='206' and @line='30' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='7' and @page='17' and @line='27' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='81' and @linktext='false'] -opus/marginalien/marginal/intlink[@letter='81' and @page='209' and @line='17' and @linktext='true'] -opus/marginalien/marginal/intlink[@letter='98' and @page='219' and @line='22' and @linktext='true'] -opus/marginalien/marginal/link[@ref='abbt' and @subref='abbt-einfluss' and @linktext='true'] -opus/marginalien/marginal/link[@ref='achenwall' and @subref='achenwall-abriss' and @linktext='true'] -opus/marginalien/marginal/link[@ref='achenwall' and @subref='achenwall-staatsklugheit' and @linktext='true'] -opus/marginalien/marginal/link[@ref='addison' and @linktext='true'] -opus/marginalien/marginal/link[@ref='addison' and @subref='addison-medals' and @linktext='true'] -opus/marginalien/marginal/link[@ref='addison' and @subref='addison-spectator' and @linktext='false'] -opus/marginalien/marginal/link[@ref='aderkas' and @linktext='true'] -opus/marginalien/marginal/link[@ref='aepinus' and @subref='aepinus-briefe' and @linktext='true'] -opus/marginalien/marginal/link[@ref='aichinger' and @subref='aichinger-sprach' and @linktext='true'] -opus/marginalien/marginal/link[@ref='aischylos' and @subref='aischylos-tragoediae' and @linktext='true'] -opus/marginalien/marginal/link[@ref='algarotti' and @subref='algarotti-russia' and @linktext='true'] -opus/marginalien/marginal/link[@ref='alting' and @subref='alting-compendium' and @linktext='true'] -opus/marginalien/marginal/link[@ref='amfrye' and @linktext='true'] -opus/marginalien/marginal/link[@ref='anakreon' and @linktext='true'] -opus/marginalien/marginal/link[@ref='apo-jud' and @subref='apo-jud14' and @linktext='false'] -opus/marginalien/marginal/link[@ref='apo-makk2' and @subref='apo-makk2-1' and @linktext='false'] -opus/marginalien/marginal/link[@ref='apo-sir' and @subref='apo-sir18' and @linktext='false'] -opus/marginalien/marginal/link[@ref='apo-sir' and @subref='apo-sir22' and @linktext='false'] -opus/marginalien/marginal/link[@ref='apo-sir' and @subref='apo-sir31' and @linktext='false'] -opus/marginalien/marginal/link[@ref='apo-sir' and @subref='apo-sir33' and @linktext='false'] -opus/marginalien/marginal/link[@ref='apo-sir' and @subref='apo-sir35' and @linktext='false'] -opus/marginalien/marginal/link[@ref='apo-sir' and @subref='apo-sir50' and @linktext='false'] -opus/marginalien/marginal/link[@ref='apo-sir' and @subref='apo-sir6' and @linktext='false'] -opus/marginalien/marginal/link[@ref='apo-std' and @subref='apo-std1' and @linktext='false'] -opus/marginalien/marginal/link[@ref='apo-std' and @subref='apo-std2' and @linktext='false'] -opus/marginalien/marginal/link[@ref='apotheker' and @linktext='true'] -opus/marginalien/marginal/link[@ref='apo-tob' and @subref='apo-tob5' and @linktext='false'] -opus/marginalien/marginal/link[@ref='apo-tob' and @subref='apo-tob6' and @linktext='false'] -opus/marginalien/marginal/link[@ref='apuleius' and @linktext='true'] -opus/marginalien/marginal/link[@ref='archimedes' and @subref='archimedes-circuli' and @linktext='true'] -opus/marginalien/marginal/link[@ref='arcq' and @subref='arcq-militaire' and @linktext='true'] -opus/marginalien/marginal/link[@ref='arcq' and @subref='arcq-osman' and @linktext='true'] -opus/marginalien/marginal/link[@ref='argis' and @linktext='true'] -opus/marginalien/marginal/link[@ref='aristainetos' and @linktext='true'] -opus/marginalien/marginal/link[@ref='aristophanes' and @subref='aristophanes-wolken' and @linktext='true'] -opus/marginalien/marginal/link[@ref='aristoteles' and @linktext='false'] -opus/marginalien/marginal/link[@ref='aristoteles' and @subref='aristoteles-analytik' and @linktext='true'] -opus/marginalien/marginal/link[@ref='aristoteles' and @subref='aristoteles-caelo' and @linktext='true'] -opus/marginalien/marginal/link[@ref='aristoteles' and @subref='aristoteles-metaphysik' and @linktext='true'] -opus/marginalien/marginal/link[@ref='aristoteles' and @subref='aristoteles-opera' and @linktext='true'] -opus/marginalien/marginal/link[@ref='aristoteles' and @subref='aristoteles-physik' and @linktext='true'] -opus/marginalien/marginal/link[@ref='arnaud' and @linktext='true'] -opus/marginalien/marginal/link[@ref='asop' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-chr2' and @subref='at-chr2-18' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-chr2' and @subref='at-chr2-9' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-es' and @subref='at-es4' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-es' and @subref='at-es8' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-es' and @subref='at-es9' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hab' and @subref='at-hab3' and @linktext='false'] -opus/marginalien/marginal/link[@ref='athenagoras' and @subref='athenagoras-apologia' and @linktext='true'] -opus/marginalien/marginal/link[@ref='athenaios' and @subref='athenaios-casaubonus' and @linktext='true'] -opus/marginalien/marginal/link[@ref='at-hes' and @subref='at-hes10' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hes' and @subref='at-hes13' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hes' and @subref='at-hes14' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hes' and @subref='at-hes33' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hes' and @subref='at-hes4' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hi' and @subref='at-hi13' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hi' and @subref='at-hi17' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hi' and @subref='at-hi21' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hi' and @subref='at-hi28' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hi' and @subref='at-hi31' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hi' and @subref='at-hi34' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hi' and @subref='at-hi36' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hi' and @subref='at-hi3' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hi' and @subref='at-hi40' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hi' and @subref='at-hi41' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hi' and @subref='at-hi42' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hi' and @subref='at-hi6' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hi' and @subref='at-hi8' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hi' and @subref='at-hi' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hld' and @subref='at-hld3' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hld' and @subref='at-hld4' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hld' and @subref='at-hld7' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-hos' and @subref='at-hos5' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jer' and @subref='at-jer12' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jer' and @subref='at-jer13' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jer' and @subref='at-jer17' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jer' and @subref='at-jer20' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jer' and @subref='at-jer29' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jer' and @subref='at-jer2' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jer' and @subref='at-jer38' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jer' and @subref='at-jer48' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jer' and @subref='at-jer5' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jer' and @subref='at-jer7' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jer' and @subref='at-jer9' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @subref='at-jes1' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @subref='at-jes22' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @subref='at-jes25' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @subref='at-jes28' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @subref='at-jes29' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @subref='at-jes2' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @subref='at-jes30' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @subref='at-jes31' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @subref='at-jes33' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @subref='at-jes37' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @subref='at-jes44' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @subref='at-jes48' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @subref='at-jes53' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @subref='at-jes54' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @subref='at-jes57' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @subref='at-jes58' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @subref='at-jes5' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @subref='at-jes60' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-jes' and @subref='at-jes8' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-koe1' and @subref='at-koe1-17' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-koe1' and @subref='at-koe1-18' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-koe1' and @subref='at-koe1-22' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-koe1' and @subref='at-koe1-6' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-koe1' and @subref='at-koe1-7' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-koe2' and @subref='at-koe2-10' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-koe2' and @subref='at-koe2-20' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-koe2' and @subref='at-koe2-2' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-koe2' and @subref='at-koe2-9' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mal' and @subref='at-mal3' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo1' and @subref='at-mo1-10' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo1' and @subref='at-mo1-16' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo1' and @subref='at-mo1-17' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo1' and @subref='at-mo1-18' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo1' and @subref='at-mo1-19' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo1' and @subref='at-mo1-28' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo1' and @subref='at-mo1-33' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo1' and @subref='at-mo1-35' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo1' and @subref='at-mo1-38' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo1' and @subref='at-mo1-41' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo1' and @subref='at-mo1-45' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo1' and @subref='at-mo1-4' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo1' and @subref='at-mo1-50' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo1' and @subref='at-mo1-6' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo1' and @subref='at-mo1-7' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo1' and @subref='at-mo1-8' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo2' and @subref='at-mo2-10' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo2' and @subref='at-mo2-15' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo2' and @subref='at-mo2-1' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo2' and @subref='at-mo2-23' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo2' and @subref='at-mo2-27' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo2' and @subref='at-mo2-33' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo2' and @subref='at-mo2-34' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo2' and @subref='at-mo2-9' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo3' and @subref='at-mo3-12' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo3' and @subref='at-mo3-19' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo3' and @subref='at-mo3-9' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo4' and @subref='at-mo4-16' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo5' and @subref='at-mo5-10' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo5' and @subref='at-mo5-11' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo5' and @subref='at-mo5-1' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo5' and @subref='at-mo5-21' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo5' and @subref='at-mo5-28' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo5' and @subref='at-mo5-31' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo5' and @subref='at-mo5-8' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-mo5' and @subref='at-mo5-9' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-neh' and @subref='at-neh4' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-pr' and @subref='at-pr10' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-pr' and @subref='at-pr12' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-pr' and @subref='at-pr2' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-pr' and @subref='at-pr7' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-pr' and @subref='at-pr8' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps104' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps106' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps110' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps120' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps129' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps12' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps13' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps141' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps143' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps148' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps18' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps19' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps1' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps24' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps27' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps28' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps2' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps30' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps33' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps36' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps42' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps44' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps45' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps50' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps55' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps71' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps77' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps78' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps80' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps82' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps88' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps89' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps8' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps91' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ps' and @subref='at-ps99' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ri' and @subref='at-ri13' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-ri' and @subref='at-ri16' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-sa' and @subref='at-sa13' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-sa' and @subref='at-sa2' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-sam1' and @subref='at-sam1-19' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-sam1' and @subref='at-sam1-1' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-sam1' and @subref='at-sam1-20' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-sam1' and @subref='at-sam1-22' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-sam1' and @subref='at-sam1-26' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-sam1' and @subref='at-sam1-30' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-sam1' and @subref='at-sam1-3' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-sam2' and @subref='at-sam2-11' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-sam2' and @subref='at-sam2-14' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-sam2' and @subref='at-sam2-16' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-sam2' and @subref='at-sam2-19' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-sam2' and @subref='at-sam2-21' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-sam2' and @subref='at-sam2-23' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-spr' and @subref='at-spr10' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-spr' and @subref='at-spr12' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-spr' and @subref='at-spr13' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-spr' and @subref='at-spr15' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-spr' and @subref='at-spr16' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-spr' and @subref='at-spr17' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-spr' and @subref='at-spr21' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-spr' and @subref='at-spr23' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-spr' and @subref='at-spr24' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-spr' and @subref='at-spr25' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-spr' and @subref='at-spr27' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-spr' and @subref='at-spr3' and @linktext='false'] -opus/marginalien/marginal/link[@ref='at-spr' and @subref='at-spr8' and @linktext='false'] -opus/marginalien/marginal/link[@ref='attelmeyer' and @linktext='true'] -opus/marginalien/marginal/link[@ref='atticus' and @linktext='true'] -opus/marginalien/marginal/link[@ref='augustinus' and @subref='august-civit' and @linktext='true'] -opus/marginalien/marginal/link[@ref='ausfuehrliche-kritische-nachrichten' and @linktext='true'] -opus/marginalien/marginal/link[@ref='auvigny' and @subref='auvigny-nero' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bacon' and @subref='bacon-fidelibus' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bacon' and @subref='bacon-sapientia' and @linktext='true'] -opus/marginalien/marginal/link[@ref='baglivi' and @linktext='true'] -opus/marginalien/marginal/link[@ref='ballstadt' and @subref='ballstadt-anecdota' and @linktext='true'] -opus/marginalien/marginal/link[@ref='balzac' and @subref='balzac-socrate' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bar' and @subref='bar-antihegesias' and @linktext='true'] -opus/marginalien/marginal/link[@ref='basedow' and @linktext='true'] -opus/marginalien/marginal/link[@ref='basedow' and @subref='basedow-methoden' and @linktext='true'] -opus/marginalien/marginal/link[@ref='baumann' and @linktext='true'] -opus/marginalien/marginal/link[@ref='baumgarten-ag' and @linktext='true'] -opus/marginalien/marginal/link[@ref='baumgarten-ag' and @subref='baumgarten-aesthetica' and @linktext='true'] -opus/marginalien/marginal/link[@ref='baumgarten' and @subref='baumgarten-pauli' and @linktext='true'] -opus/marginalien/marginal/link[@ref='baumgarten-sj' and @linktext='false'] -opus/marginalien/marginal/link[@ref='baumgarten-sj' and @subref='baumgarten-joel' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bayle' and @linktext='true'] -opus/marginalien/marginal/link[@ref='beaumelle' and @subref='beaumelle-maintenon' and @linktext='true'] -opus/marginalien/marginal/link[@ref='beaumelle' and @subref='beaumelle-voltaire' and @linktext='true'] -opus/marginalien/marginal/link[@ref='beaumont' and @subref='beaumont-commerce' and @linktext='true'] -opus/marginalien/marginal/link[@ref='beausobre' and @linktext='true'] -opus/marginalien/marginal/link[@ref='beausobre' and @subref='beausobre-epicure' and @linktext='true'] -opus/marginalien/marginal/link[@ref='belger' and @linktext='false'] -opus/marginalien/marginal/link[@ref='bell' and @subref='bell-preisschrift' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bellarmin' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bellegarde' and @subref='bellegarde-erziehung' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bengel' and @linktext='false'] -opus/marginalien/marginal/link[@ref='bengel' and @subref='bengel-johannis' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bengel' and @subref='bengel-ordo' and @linktext='true'] -opus/marginalien/marginal/link[@ref='benoit' and @subref='benoit-journal' and @linktext='true'] -opus/marginalien/marginal/link[@ref='benoit' and @subref='benoit-principes' and @linktext='true'] -opus/marginalien/marginal/link[@ref='benson' and @subref='benson-abhandlungen' and @linktext='true'] -opus/marginalien/marginal/link[@ref='berens-c' and @linktext='false'] -opus/marginalien/marginal/link[@ref='berens-g' and @linktext='false'] -opus/marginalien/marginal/link[@ref='berger' and @subref='berger-universalhistorie' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bergmann' and @linktext='true'] -opus/marginalien/marginal/link[@ref='berkeley' and @subref='berkeley-dialogues' and @linktext='true'] -opus/marginalien/marginal/link[@ref='berkeley' and @subref='berkeley-miscellany' and @linktext='true'] -opus/marginalien/marginal/link[@ref='berlinische' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bernd' and @subref='bernd-leben' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bernd' and @subref='bernd-stand' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bernis' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bertram' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bielfeld' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bierling' and @subref='lineamenta' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bischoff' and @subref='bischoff-cadmus' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bitaube' and @subref='bitaube-examen' and @linktext='true'] -opus/marginalien/marginal/link[@ref='blacklock' and @linktext='true'] -opus/marginalien/marginal/link[@ref='blervache' and @subref='blervache-commerce' and @linktext='true'] -opus/marginalien/marginal/link[@ref='blervache' and @subref='blervache-reformateur' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bleterie' and @subref='bleterie-julien' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bode' and @subref='bode-sacerdotalis' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bodmer' and @subref='bodmer-caesar' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bodmer' and @subref='bodmer-fragmente' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bodmer' and @subref='bodmer-ulysses' and @linktext='true'] -opus/marginalien/marginal/link[@ref='boerhaave' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bogatzky' and @subref='bogatzky-schatz' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bohmer' and @subref='bohmer-zeitrechnung' and @linktext='false'] -opus/marginalien/marginal/link[@ref='bohmer' and @subref='bohmer-zeitrechnung' and @linktext='true'] -opus/marginalien/marginal/link[@ref='boileau' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bolinbroke' and @subref='bolinbroke-history' and @linktext='true'] -opus/marginalien/marginal/link[@ref='boltz' and @linktext='true'] -opus/marginalien/marginal/link[@ref='borde' and @subref='borde-prediction' and @linktext='true'] -opus/marginalien/marginal/link[@ref='borremansius' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bos' and @subref='bos-graec' and @linktext='true'] -opus/marginalien/marginal/link[@ref='botticher' and @linktext='true'] -opus/marginalien/marginal/link[@ref='boulanger' and @linktext='true'] -opus/marginalien/marginal/link[@ref='boyer' and @linktext='true'] -opus/marginalien/marginal/link[@ref='boyer' and @subref='boyer-beiträge' and @linktext='true'] -opus/marginalien/marginal/link[@ref='boyer' and @subref='boyer-ocellus' and @linktext='true'] -opus/marginalien/marginal/link[@ref='boysen' and @subref='boysen-beytrage' and @linktext='true'] -opus/marginalien/marginal/link[@ref='breitenbauch' and @subref='breitenbauch-schilderungen' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bremse' and @linktext='true'] -opus/marginalien/marginal/link[@ref='briqueville' and @subref='briqueville-reflexions' and @linktext='true'] -opus/marginalien/marginal/link[@ref='brown' and @subref='brown-morals' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bucer' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bucholtz-k-ja' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bucholtz-k-mc' and @linktext='true'] -opus/marginalien/marginal/link[@ref='budberg-bh' and @linktext='false'] -opus/marginalien/marginal/link[@ref='budberg-of' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bue-e-1988' and @linktext='false'] -opus/marginalien/marginal/link[@ref='bunellus' and @subref='bunellus-galli' and @linktext='true'] -opus/marginalien/marginal/link[@ref='burckardt' and @subref='burckardt-poesien' and @linktext='true'] -opus/marginalien/marginal/link[@ref='burk' and @subref='burk-gnomon' and @linktext='true'] -opus/marginalien/marginal/link[@ref='burnet' and @linktext='true'] -opus/marginalien/marginal/link[@ref='bury' and @subref='bury-histoire' and @linktext='true'] -opus/marginalien/marginal/link[@ref='buttlar-ej' and @linktext='false'] -opus/marginalien/marginal/link[@ref='buttlar-ej' and @linktext='true'] -opus/marginalien/marginal/link[@ref='buxtorf' and @subref='buxtorf-lexicon' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cajetan' and @linktext='true'] -opus/marginalien/marginal/link[@ref='campanella' and @linktext='true'] -opus/marginalien/marginal/link[@ref='campenhausen-jc' and @linktext='false'] -opus/marginalien/marginal/link[@ref='campigneulles' and @linktext='true'] -opus/marginalien/marginal/link[@ref='canstein' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cardanus' and @subref='cardanus-utilitate' and @linktext='true'] -opus/marginalien/marginal/link[@ref='carpzov' and @subref='carpzov-critica' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cassel' and @subref='cassel-lardner' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cataneo' and @subref='cataneo-espritloix' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cato' and @linktext='false'] -opus/marginalien/marginal/link[@ref='chatelet' and @subref='chatelet-physique' and @linktext='true'] -opus/marginalien/marginal/link[@ref='chetardie' and @subref='chetardie-instruction' and @linktext='true'] -opus/marginalien/marginal/link[@ref='chladenius' and @linktext='true'] -opus/marginalien/marginal/link[@ref='chladenius' and @subref='chladenius-auslegung' and @linktext='true'] -opus/marginalien/marginal/link[@ref='chladenius' and @subref='chladenius-betrachtungen' and @linktext='true'] -opus/marginalien/marginal/link[@ref='chladenius' and @subref='chladenius-geschichte' and @linktext='true'] -opus/marginalien/marginal/link[@ref='chladenius' and @subref='chladenius-logica' and @linktext='true'] -opus/marginalien/marginal/link[@ref='chladenius' and @subref='chladenius-philosophia' and @linktext='true'] -opus/marginalien/marginal/link[@ref='chladenius' and @subref='chladenius-wahrscheinlich' and @linktext='true'] -opus/marginalien/marginal/link[@ref='christiani' and @linktext='true'] -opus/marginalien/marginal/link[@ref='christlieb' and @subref='christlieb-beurtheilung' and @linktext='true'] -opus/marginalien/marginal/link[@ref='chrysostomos-d' and @subref='chrysostomos-ilio' and @linktext='true'] -opus/marginalien/marginal/link[@ref='chrysostomus' and @subref='chrysostomus-predigten' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cicero' and @subref='cic-att' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cicero' and @subref='cic-brut' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cicero' and @subref='cic-div' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cicero' and @subref='cic-off' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cicero' and @subref='cic-ora' and @linktext='true'] -opus/marginalien/marginal/link[@ref='clairaut' and @linktext='true'] -opus/marginalien/marginal/link[@ref='clairaut' and @subref='clairaut-geo' and @linktext='true'] -opus/marginalien/marginal/link[@ref='clara' and @linktext='true'] -opus/marginalien/marginal/link[@ref='clausnitzer' and @subref='clausnitzer-predigten' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cless' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cless' and @subref='cless-observationes' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cleveland' and @subref='cleveland-anglois' and @linktext='true'] -opus/marginalien/marginal/link[@ref='clodius' and @subref='clodius-grammatica' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cohausen' and @subref='cohausen-clericus' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cohausen' and @subref='cohausen-helmont' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cohausen' and @subref='cohausen-nasi' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cohausen' and @subref='cohausen-neothea' and @linktext='true'] -opus/marginalien/marginal/link[@ref='colli' and @subref='colli-causis' and @linktext='true'] -opus/marginalien/marginal/link[@ref='collier' and @subref='collier-clavis' and @linktext='true'] -opus/marginalien/marginal/link[@ref='collins' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cornaro' and @linktext='true'] -opus/marginalien/marginal/link[@ref='courcelles' and @linktext='true'] -opus/marginalien/marginal/link[@ref='coyer' and @linktext='true'] -opus/marginalien/marginal/link[@ref='coyer' and @subref='coyer-annee' and @linktext='true'] -opus/marginalien/marginal/link[@ref='coyer' and @subref='coyer-defense' and @linktext='true'] -opus/marginalien/marginal/link[@ref='coyer' and @subref='coyer-dissertations' and @linktext='true'] -opus/marginalien/marginal/link[@ref='coyer' and @subref='coyer-frivole' and @linktext='true'] -opus/marginalien/marginal/link[@ref='coyer' and @subref='coyer-noblesse' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cramer-ja' and @subref='cramer-bered' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cramer-ja' and @subref='cramer-nord' and @linktext='false'] -opus/marginalien/marginal/link[@ref='crebillon' and @subref='crebillon-nuit' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cretlau-dw' and @linktext='true'] -opus/marginalien/marginal/link[@ref='creutz' and @linktext='true'] -opus/marginalien/marginal/link[@ref='creutz' and @subref='creutz-seneca' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cromwell' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cronegk' and @subref='cronegk-einsamkeiten' and @linktext='true'] -opus/marginalien/marginal/link[@ref='crusius' and @subref='crusius-frischlin' and @linktext='true'] -opus/marginalien/marginal/link[@ref='cudworth' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dach' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dach' and @subref='sorbuisa' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dacier' and @subref='dacier-commentaires' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dacier' and @subref='dacier-vie' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dale' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dangeuil' and @subref='dangeuil-remarques' and @linktext='true'] -opus/marginalien/marginal/link[@ref='danziger' and @linktext='true'] -opus/marginalien/marginal/link[@ref='daphne' and @linktext='true'] -opus/marginalien/marginal/link[@ref='debbert' and @linktext='true'] -opus/marginalien/marginal/link[@ref='decore' and @subref='decore-elemens' and @linktext='true'] -opus/marginalien/marginal/link[@ref='degner' and @linktext='false'] -opus/marginalien/marginal/link[@ref='delaborde' and @subref='delaborde-clavessin' and @linktext='true'] -opus/marginalien/marginal/link[@ref='demosthenes' and @linktext='false'] -opus/marginalien/marginal/link[@ref='demosthenes' and @linktext='true'] -opus/marginalien/marginal/link[@ref='denham' and @subref='denham-abhandlung' and @linktext='true'] -opus/marginalien/marginal/link[@ref='desessartz' and @subref='desessartz-traite' and @linktext='true'] -opus/marginalien/marginal/link[@ref='desfontaines' and @subref='desfontaines-parnasse' and @linktext='true'] -opus/marginalien/marginal/link[@ref='deslandes' and @linktext='true'] -opus/marginalien/marginal/link[@ref='devillers' and @subref='devillers-physiques' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dickinson' and @subref='dickinson-delphi' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dieu' and @subref='dieu-grammatica' and @linktext='true'] -opus/marginalien/marginal/link[@ref='ditton' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dodsley' and @subref='dodsley-collection' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dodsley' and @subref='dodsley-preceptor' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dommerich' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dommerich' and @subref='dommerich-fragmentum' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dommerich' and @subref='dommerich-versibvs' and @linktext='true'] -opus/marginalien/marginal/link[@ref='donat' and @linktext='false'] -opus/marginalien/marginal/link[@ref='donat' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dryden' and @subref='dryden-oedipus' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dubos' and @subref='dubos-reflexions' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dudgeon' and @subref='dudgeon-reflexions' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dufour' and @subref='dufour-lettre' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dujardin' and @subref='dujardin-rienzy' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dupuy' and @subref='dupuy-sophocle' and @linktext='true'] -opus/marginalien/marginal/link[@ref='durosoy' and @subref='durosoy-dix' and @linktext='true'] -opus/marginalien/marginal/link[@ref='duryer' and @subref='alcoran' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dusch' and @linktext='false'] -opus/marginalien/marginal/link[@ref='dusch' and @subref='dusch-moralische' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dusch' and @subref='dusch-wissenschaften' and @linktext='true'] -opus/marginalien/marginal/link[@ref='dusch' and @subref='toppe' and @linktext='true'] -opus/marginalien/marginal/link[@ref='effen' and @linktext='true'] -opus/marginalien/marginal/link[@ref='eliberitanus' and @linktext='true'] -opus/marginalien/marginal/link[@ref='elmanicus' and @subref='elmanicus-historia' and @linktext='true'] -opus/marginalien/marginal/link[@ref='elsner' and @subref='elsner-gedanken' and @linktext='true'] -opus/marginalien/marginal/link[@ref='encyclopedie'] -opus/marginalien/marginal/link[@ref='engelbrecht' and @linktext='true'] -opus/marginalien/marginal/link[@ref='ennius' and @subref='ennius-sat' and @linktext='true'] -opus/marginalien/marginal/link[@ref='epikur' and @linktext='true'] -opus/marginalien/marginal/link[@ref='erotianus' and @linktext='true'] -opus/marginalien/marginal/link[@ref='erpen' and @subref='erpen-grammatik' and @linktext='true'] -opus/marginalien/marginal/link[@ref='eschenbach' and @subref='eschenbach-epigenes' and @linktext='true'] -opus/marginalien/marginal/link[@ref='eskuche' and @subref='eskuche-versuch' and @linktext='true'] -opus/marginalien/marginal/link[@ref='essich' and @subref='essich-historie' and @linktext='true'] -opus/marginalien/marginal/link[@ref='estève' and @linktext='true'] -opus/marginalien/marginal/link[@ref='euripides' and @linktext='true'] -opus/marginalien/marginal/link[@ref='eusebios' and @linktext='true'] -opus/marginalien/marginal/link[@ref='fabricius' and @subref='fabricius-codex' and @linktext='true'] -opus/marginalien/marginal/link[@ref='fagnan' and @subref='fagnan-miroir' and @linktext='true'] -opus/marginalien/marginal/link[@ref='faulques' and @subref='faulques-abassai' and @linktext='true'] -opus/marginalien/marginal/link[@ref='faulques' and @subref='faulques-amitie' and @linktext='true'] -opus/marginalien/marginal/link[@ref='faulques' and @subref='faulques-contes' and @linktext='true'] -opus/marginalien/marginal/link[@ref='faulques' and @subref='faulques-guerre' and @linktext='true'] -opus/marginalien/marginal/link[@ref='faulques' and @subref='faulques-prejuges' and @linktext='true'] -opus/marginalien/marginal/link[@ref='fehre' and @linktext='true'] -opus/marginalien/marginal/link[@ref='ficino' and @linktext='false'] -opus/marginalien/marginal/link[@ref='fiortifiocca' and @subref='vitadirenzo' and @linktext='true'] -opus/marginalien/marginal/link[@ref='fischer-jf' and @linktext='true'] -opus/marginalien/marginal/link[@ref='fischer-jf' and @subref='fischer-platonis' and @linktext='true'] -opus/marginalien/marginal/link[@ref='fischer-kk' and @linktext='true'] -opus/marginalien/marginal/link[@ref='fleming-p' and @linktext='true'] -opus/marginalien/marginal/link[@ref='flottwell' and @linktext='false'] -opus/marginalien/marginal/link[@ref='fontenelle' and @subref='fontenelle-lettres' and @linktext='true'] -opus/marginalien/marginal/link[@ref='fontenelle' and @subref='fontenelle-oracles' and @linktext='true'] -opus/marginalien/marginal/link[@ref='fontenelle' and @subref='fontenelle-ouvres' and @linktext='true'] -opus/marginalien/marginal/link[@ref='formey' and @subref='formey-journal' and @linktext='true'] -opus/marginalien/marginal/link[@ref='freron' and @linktext='true'] -opus/marginalien/marginal/link[@ref='fresnoy' and @subref='fresnoy-arte' and @linktext='true'] -opus/marginalien/marginal/link[@ref='friedrich-II' and @linktext='false'] -opus/marginalien/marginal/link[@ref='friedrich-II' and @subref='fr-kriegskunst' and @linktext='true'] -opus/marginalien/marginal/link[@ref='friedrich-II' and @subref='fr-lettres' and @linktext='true'] -opus/marginalien/marginal/link[@ref='friedrich-II' and @subref='fr-mort' and @linktext='true'] -opus/marginalien/marginal/link[@ref='friedrich-II' and @subref='fr-poesies' and @linktext='false'] -opus/marginalien/marginal/link[@ref='fritz' and @subref='fritz-tragodiae' and @linktext='true'] -opus/marginalien/marginal/link[@ref='fuchs' and @subref='fuchs-gedichte' and @linktext='true'] -opus/marginalien/marginal/link[@ref='funck' and @subref='funck-rechtsgelahrsamkeit' and @linktext='true'] -opus/marginalien/marginal/link[@ref='funck-jo' and @linktext='true'] -opus/marginalien/marginal/link[@ref='gagnier' and @subref='viedemahomet' and @linktext='true'] -opus/marginalien/marginal/link[@ref='gale' and @subref='gale-rhetores' and @linktext='false'] -opus/marginalien/marginal/link[@ref='gale' and @subref='gale-rhetores' and @linktext='true'] -opus/marginalien/marginal/link[@ref='garnier' and @subref='garnier-lettres' and @linktext='true'] -opus/marginalien/marginal/link[@ref='gaudio' and @subref='gaudio-scelta' and @linktext='true'] -opus/marginalien/marginal/link[@ref='gellert-cf' and @subref='gellert-comoedia' and @linktext='true'] -opus/marginalien/marginal/link[@ref='gellert-cf' and @subref='gellert-graefin' and @linktext='true'] -opus/marginalien/marginal/link[@ref='gellius' and @linktext='false'] -opus/marginalien/marginal/link[@ref='gellius-jg' and @subref='gellius-jg-geschichte' and @linktext='true'] -opus/marginalien/marginal/link[@ref='gemmingen' and @subref='gemmingen-briefe' and @linktext='true'] -opus/marginalien/marginal/link[@ref='georg' and @linktext='true'] -opus/marginalien/marginal/link[@ref='georg' and @subref='georg-hexameron' and @linktext='true'] -opus/marginalien/marginal/link[@ref='gerhard' and @linktext='true'] -opus/marginalien/marginal/link[@ref='gerhardt' and @subref='gerhardt-ruhen' and @linktext='false'] -opus/marginalien/marginal/link[@ref='gesner-jm' and @subref='gesner-jm-eclogae' and @linktext='true'] -opus/marginalien/marginal/link[@ref='gesner-k' and @linktext='true'] -opus/marginalien/marginal/link[@ref='gichtel' and @linktext='true'] -opus/marginalien/marginal/link[@ref='giese' and @subref='giese-predigten' and @linktext='true'] -opus/marginalien/marginal/link[@ref='girard' and @subref='girard-synonimes' and @linktext='true'] -opus/marginalien/marginal/link[@ref='giseke' and @linktext='true'] -opus/marginalien/marginal/link[@ref='giseke' and @subref='giseke-predigten' and @linktext='true'] -opus/marginalien/marginal/link[@ref='glass' and @linktext='true'] -opus/marginalien/marginal/link[@ref='gleim' and @linktext='false'] -opus/marginalien/marginal/link[@ref='gleim' and @subref='gleim-fabeln' and @linktext='true'] -opus/marginalien/marginal/link[@ref='gleim' and @subref='gleim-sieges' and @linktext='true'] -opus/marginalien/marginal/link[@ref='gleim' and @subref='gleim-versuch' and @linktext='true'] -opus/marginalien/marginal/link[@ref='goclenius' and @subref='goclenius-gramm' and @linktext='true'] -opus/marginalien/marginal/link[@ref='goldsmith' and @subref='goldsmith-letters' and @linktext='true'] -opus/marginalien/marginal/link[@ref='gottsched' and @subref='gottsched-schaubuehne' and @linktext='true'] -opus/marginalien/marginal/link[@ref='gottsched' and @subref='gottsched-sprachkunst' and @linktext='false'] -opus/marginalien/marginal/link[@ref='gotz-jn' and @subref='gotz-anakreon' and @linktext='true'] -opus/marginalien/marginal/link[@ref='goudar' and @subref='goudar-lisbonne' and @linktext='true'] -opus/marginalien/marginal/link[@ref='goze' and @subref='goze-betrachtung' and @linktext='true'] -opus/marginalien/marginal/link[@ref='gra-h-2002b' and @linktext='false'] -opus/marginalien/marginal/link[@ref='gra-h-2005b' and @linktext='false'] -opus/marginalien/marginal/link[@ref='gra-h-2008' and @linktext='false'] -opus/marginalien/marginal/link[@ref='gra-h-2011' and @linktext='false'] -opus/marginalien/marginal/link[@ref='gra-h-2012' and @linktext='false'] -opus/marginalien/marginal/link[@ref='graville' and @subref='graville-ami' and @linktext='true'] -opus/marginalien/marginal/link[@ref='graville' and @subref='graville-homme' and @linktext='true'] -opus/marginalien/marginal/link[@ref='gregorovius' and @linktext='true'] -opus/marginalien/marginal/link[@ref='gresset' and @subref='lachartreuse' and @linktext='true'] -opus/marginalien/marginal/link[@ref='grimm-fm' and @subref='grimm-fm-petit' and @linktext='true'] -opus/marginalien/marginal/link[@ref='groeben-je' and @linktext='true'] -opus/marginalien/marginal/link[@ref='groeben-wl' and @linktext='true'] -opus/marginalien/marginal/link[@ref='grundler' and @subref='grundler-predigten' and @linktext='true'] -opus/marginalien/marginal/link[@ref='grundt' and @linktext='true'] -opus/marginalien/marginal/link[@ref='grynäus' and @linktext='true'] -opus/marginalien/marginal/link[@ref='guadagnoli' and @subref='guadagnoli-breves' and @linktext='true'] -opus/marginalien/marginal/link[@ref='guichard' and @linktext='true'] -opus/marginalien/marginal/link[@ref='guyon' and @subref='guyon-histoire' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hackspan' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hagedorn' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hagedorn' and @subref='freundschaft' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hagedorn' and @subref='haged-oden' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hagedorn' and @subref='horatz' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hahn' and @subref='hahn-gehorsam' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hahn' and @subref='hahn-soliditas' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hahn-echb' and @subref='hahn-echb-lettres' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hahn-jb' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hallervord' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hamann' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hamann' and @subref='bibl-betrachtungen' and @linktext='false'] -opus/marginalien/marginal/link[@ref='hamann' and @subref='gedanken-lieder' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hamann' and @subref='hamann-essais' and @linktext='false'] -opus/marginalien/marginal/link[@ref='hamann' and @subref='hamann-exercitium' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hamann' and @subref='hamann-glose' and @linktext='false'] -opus/marginalien/marginal/link[@ref='hamann' and @subref='hamann-glose' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hamann' and @subref='hamann-magi' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hamann' and @subref='hamann-project' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hamann' and @subref='h-dangeuil'] -opus/marginalien/marginal/link[@ref='hamann' and @subref='h-dangeuil' and @linktext='false'] -opus/marginalien/marginal/link[@ref='hamann-vjc' and @linktext='false'] -opus/marginalien/marginal/link[@ref='hamb-beytraege'] -opus/marginalien/marginal/link[@ref='hamb-correspondenten' and @linktext='false'] -opus/marginalien/marginal/link[@ref='hamberger' and @subref='hamberger-nachrichten' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hanow' and @linktext='true'] -opus/marginalien/marginal/link[@ref='happel' and @subref='happel-welt' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hardt' and @subref='hardt-reformationis' and @linktext='false'] -opus/marginalien/marginal/link[@ref='harvey' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hase' and @linktext='false'] -opus/marginalien/marginal/link[@ref='haug' and @subref='haug-stunden' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hawkesworth' and @subref='hawkesworth-adventurer' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hawkesworth' and @subref='hawkesworth-almoran' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hederich' and @subref='hederich-g' and @linktext='false'] -opus/marginalien/marginal/link[@ref='hederich' and @subref='hederich-g' and @linktext='true'] -opus/marginalien/marginal/link[@ref='helck' and @subref='helck-fabeln' and @linktext='true'] -opus/marginalien/marginal/link[@ref='henault' and @subref='henault-abrege' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hervey' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hervey' and @subref='hervey-erbaulich' and @linktext='false'] -opus/marginalien/marginal/link[@ref='hervey' and @subref='hervey-mitissa' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hesiod' and @linktext='false'] -opus/marginalien/marginal/link[@ref='hesiod' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hesiod' and @subref='hesiod-opera' and @linktext='false'] -opus/marginalien/marginal/link[@ref='hessen-ludwig-erbprinz' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hesshus' and @subref='hesshus-explicatio' and @linktext='false'] -opus/marginalien/marginal/link[@ref='hesshus' and @subref='hesshus-explicatio' and @linktext='true'] -opus/marginalien/marginal/link[@ref='heumann' and @linktext='true'] -opus/marginalien/marginal/link[@ref='heumann-j' and @subref='heumann-j-geist' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hiller' and @subref='hiller-levitische' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hiller' and @subref='hiller-verantwortung' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hillmer' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hindersin' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hippel' and @subref='hippel-gruft' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hippokrates' and @linktext='false'] -opus/marginalien/marginal/link[@ref='hippokrates' and @subref='hippokrates-epistel' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hirzel' and @subref='hirzel-bauer' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hof-v-1979' and @linktext='false'] -opus/marginalien/marginal/link[@ref='holberg' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hollmann' and @linktext='true'] -opus/marginalien/marginal/link[@ref='homer' and @subref='froschkrieg' and @linktext='false'] -opus/marginalien/marginal/link[@ref='homer' and @subref='homer-hym' and @linktext='false'] -opus/marginalien/marginal/link[@ref='homer' and @subref='homer-hym' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hommel' and @subref='hommel-einfalle' and @linktext='true'] -opus/marginalien/marginal/link[@ref='horaz' and @subref='horaz-epistel' and @linktext='false'] -opus/marginalien/marginal/link[@ref='horaz' and @subref='horaz-oden-solms' and @linktext='true'] -opus/marginalien/marginal/link[@ref='horaz' and @subref='horaz-opera' and @linktext='true'] -opus/marginalien/marginal/link[@ref='horaz' and @subref='horaz-saturae' and @linktext='false'] -opus/marginalien/marginal/link[@ref='huber' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hubner' and @linktext='true'] -opus/marginalien/marginal/link[@ref='huet' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hulshoff' and @subref='hulshoff-widerlegung' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hume' and @linktext='false'] -opus/marginalien/marginal/link[@ref='hume' and @subref='hume-geschichte' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hurd' and @subref='hurd-letters' and @linktext='true'] -opus/marginalien/marginal/link[@ref='hus' and @linktext='true'] -opus/marginalien/marginal/link[@ref='igelstrom' and @linktext='true'] -opus/marginalien/marginal/link[@ref='iselin' and @subref='iselin-traeume' and @linktext='true'] -opus/marginalien/marginal/link[@ref='isokrates' and @linktext='true'] -opus/marginalien/marginal/link[@ref='jacobi-cf' and @subref='jacobi-cf-offenbarung' and @linktext='true'] -opus/marginalien/marginal/link[@ref='jacobi-jc' and @linktext='true'] -opus/marginalien/marginal/link[@ref='jaucourt' and @subref='jaucourt-leibnitz' and @linktext='true'] -opus/marginalien/marginal/link[@ref='jephson' and @subref='jephson-abhandlung' and @linktext='true'] -opus/marginalien/marginal/link[@ref='jester' and @linktext='true'] -opus/marginalien/marginal/link[@ref='joachim' and @subref='joachim-unterricht' and @linktext='true'] -opus/marginalien/marginal/link[@ref='joecher-lexicon' and @linktext='true'] -opus/marginalien/marginal/link[@ref='joncourt' and @linktext='true'] -opus/marginalien/marginal/link[@ref='joncourt' and @subref='joncourt-nouvelle' and @linktext='true'] -opus/marginalien/marginal/link[@ref='joncourt' and @subref='joncourt-sciences' and @linktext='true'] -opus/marginalien/marginal/link[@ref='jor-s-1988a' and @linktext='false'] -opus/marginalien/marginal/link[@ref='jortin' and @subref='jortin-history' and @linktext='true'] -opus/marginalien/marginal/link[@ref='josephus' and @linktext='true'] -opus/marginalien/marginal/link[@ref='josephus' and @subref='josephus-bell' and @linktext='true'] -opus/marginalien/marginal/link[@ref='journal-etranger' and @linktext='true'] -opus/marginalien/marginal/link[@ref='juengling' and @linktext='true'] -opus/marginalien/marginal/link[@ref='justi' and @subref='justi-schauplatz' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kalle' and @subref='kalle-fundamenta' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kalmar' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kalmar' and @subref='kalmar-bate' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kalmar' and @subref='kalmar-dissertatio' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kalmar' and @subref='kalmar-reply' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kant' and @subref='kant-deutlichkeit' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kant' and @subref='kant-geisterseher' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kant' and @subref='kant-kopfes' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kant' and @subref='kant-spitzfindigkeit' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kantemir' and @subref='kantemir-satyren' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kant-metaphysicae' and @linktext='true'] -opus/marginalien/marginal/link[@ref='karoline' and @linktext='true'] -opus/marginalien/marginal/link[@ref='karsch' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kastner' and @linktext='true'] -opus/marginalien/marginal/link[@ref='katharina' and @linktext='false'] -opus/marginalien/marginal/link[@ref='keralio' and @subref='keralio-fables' and @linktext='true'] -opus/marginalien/marginal/link[@ref='keyser' and @linktext='true'] -opus/marginalien/marginal/link[@ref='king-w' and @subref='king-mali' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kirchweger' and @subref='kirchweger-aurea' and @linktext='true'] -opus/marginalien/marginal/link[@ref='klein-ce' and @subref='klein-stockholm' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kleinow' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kleist' and @linktext='false'] -opus/marginalien/marginal/link[@ref='kleist-gch' and @linktext='true'] -opus/marginalien/marginal/link[@ref='klopstock' and @subref='klopstock-allgegen' and @linktext='false'] -opus/marginalien/marginal/link[@ref='klopstock' and @subref='klopstock-art' and @linktext='false'] -opus/marginalien/marginal/link[@ref='klopstock' and @subref='klopstock-bescheiden' and @linktext='false'] -opus/marginalien/marginal/link[@ref='klopstock' and @subref='klopstock-fehler' and @linktext='false'] -opus/marginalien/marginal/link[@ref='klopstock' and @subref='klopstock-julian' and @linktext='false'] -opus/marginalien/marginal/link[@ref='klopstock' and @subref='klopstock-messias' and @linktext='true'] -opus/marginalien/marginal/link[@ref='klopstock' and @subref='klopstock-publico' and @linktext='false'] -opus/marginalien/marginal/link[@ref='klopstock' and @subref='klopstock-range' and @linktext='false'] -opus/marginalien/marginal/link[@ref='klopstock' and @subref='klopstock-sprache' and @linktext='false'] -opus/marginalien/marginal/link[@ref='knittel' and @subref='knittel-neue' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kno-r-1999' and @linktext='false'] -opus/marginalien/marginal/link[@ref='knutzen' and @linktext='true'] -opus/marginalien/marginal/link[@ref='koch' and @subref='koch-daniel' and @linktext='true'] -opus/marginalien/marginal/link[@ref='koch' and @subref='koch-glaube' and @linktext='true'] -opus/marginalien/marginal/link[@ref='koch' and @subref='koch-pharos' and @linktext='true'] -opus/marginalien/marginal/link[@ref='koch-fr' and @subref='koch-fr-starke' and @linktext='true'] -opus/marginalien/marginal/link[@ref='koh-j-1997' and @linktext='false'] -opus/marginalien/marginal/link[@ref='kolbe' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kongehl' and @linktext='true'] -opus/marginalien/marginal/link[@ref='konigliche-d-g' and @linktext='true'] -opus/marginalien/marginal/link[@ref='konigsberger-f-g' and @linktext='false'] -opus/marginalien/marginal/link[@ref='kornmann' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kortholt' and @subref='kortholt-leibnitii' and @linktext='true'] -opus/marginalien/marginal/link[@ref='krunitz' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kuhlmann' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kurella' and @linktext='true'] -opus/marginalien/marginal/link[@ref='kypke' and @subref='kypke-graecum' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lacombe' and @subref='lacombe-histoire' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lactanz' and @subref='lactanz-div' and @linktext='false'] -opus/marginalien/marginal/link[@ref='lacy-pe' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lambert' and @subref='lambert-histoire' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lambert-jh' and @subref='lambert-jh-cosmologische' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lamettrie' and @subref='lamettrie-machine' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lamettrie' and @subref='lamettrie-ouvrage' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lamotte' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lardner' and @subref='lardner-demoniacs' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lauson' and @subref='ewigkeit' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lauson' and @subref='lauson-gafforio' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lavalette' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lavini' and @subref='lavini-neueste' and @linktext='true'] -opus/marginalien/marginal/link[@ref='law-j' and @linktext='true'] -opus/marginalien/marginal/link[@ref='law-j' and @subref='law-money' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lebret' and @linktext='true'] -opus/marginalien/marginal/link[@ref='leibniz' and @linktext='true'] -opus/marginalien/marginal/link[@ref='leibniz' and @subref='leibniz-theodizee' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lenclos' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lennox' and @subref='lennox-henriette' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lessing' and @subref='kleinigkeiten' and @linktext='false'] -opus/marginalien/marginal/link[@ref='lessing' and @subref='lessing_schriften_i' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lessing' and @subref='lessing-theatral' and @linktext='true'] -opus/marginalien/marginal/link[@ref='leusden' and @subref='leusden-nt' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lichtwer' and @subref='lichtwer-fabeln' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lieberkuehn' and @subref='lieberkuehn-arzeneyen' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lightfoot' and @subref='lightfoot-horae' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lightfoot' and @subref='lightfoot-opera' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lilienthal-m' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lilienthal-m' and @subref='Lilienthal-geschichte' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lilienthal-th' and @subref='diegutesache' and @linktext='true'] -opus/marginalien/marginal/link[@ref='limbourg' and @subref='limbourg-caracteres' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lindhammer' and @subref='lindhammer-apostelgeschichte' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lindner-jef' and @linktext='false'] -opus/marginalien/marginal/link[@ref='lindner-jg' and @subref='lindner-gedaechtnisfeier' and @linktext='false'] -opus/marginalien/marginal/link[@ref='lindner-jg' and @subref='lindner-peter' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lindner-jg' and @subref='lindner-schulweisheit' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lindner-jg' and @subref='lindner-schulz' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lindner-jg' and @subref='lindner-sohn' and @linktext='false'] -opus/marginalien/marginal/link[@ref='lindner-jg' and @subref='lindner-sohn' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lindner-jg' and @subref='schreibart' and @linktext='false'] -opus/marginalien/marginal/link[@ref='lindner-m' and @linktext='false'] -opus/marginalien/marginal/link[@ref='livius' and @linktext='true'] -opus/marginalien/marginal/link[@ref='livius' and @subref='livius-urbe' and @linktext='true'] -opus/marginalien/marginal/link[@ref='locatelli' and @subref='moscowitische' and @linktext='true'] -opus/marginalien/marginal/link[@ref='locke' and @linktext='true'] -opus/marginalien/marginal/link[@ref='loen' and @linktext='true'] -opus/marginalien/marginal/link[@ref='logau' and @subref='logau-cynegetia' and @linktext='true'] -opus/marginalien/marginal/link[@ref='logau' and @subref='logau-sinngedichte' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lossius' and @subref='lossius-midian' and @linktext='true'] -opus/marginalien/marginal/link[@ref='loubere' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lucanus' and @subref='lucanus-bello' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lucas' and @subref='lucas-weg' and @linktext='true'] -opus/marginalien/marginal/link[@ref='ludke' and @subref='ludke-briefe' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lukian' and @subref='lukian-mortuorum' and @linktext='true'] -opus/marginalien/marginal/link[@ref='luzac' and @subref='luzac-essai' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lycophron' and @subref='lycophron-poema' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lyttelton' and @linktext='true'] -opus/marginalien/marginal/link[@ref='lyttelton' and @subref='lyttelton-dialogues' and @linktext='true'] -opus/marginalien/marginal/link[@ref='machiavelli' and @linktext='false'] -opus/marginalien/marginal/link[@ref='machiavelli' and @linktext='true'] -opus/marginalien/marginal/link[@ref='mackenzie' and @subref='mackenzie-geschichte' and @linktext='true'] -opus/marginalien/marginal/link[@ref='macpherson' and @subref='macpherson-fingal' and @linktext='true'] -opus/marginalien/marginal/link[@ref='mailly-l' and @subref='mailly-rome' and @linktext='true'] -opus/marginalien/marginal/link[@ref='mainvilliers' and @subref='mainvilliers-petreade' and @linktext='true'] -opus/marginalien/marginal/link[@ref='mallet' and @linktext='true'] -opus/marginalien/marginal/link[@ref='mallet' and @subref='mallet-orateurs' and @linktext='true'] -opus/marginalien/marginal/link[@ref='manilius' and @subref='manilius-astro' and @linktext='false'] -opus/marginalien/marginal/link[@ref='manteuffel-cl' and @linktext='true'] -opus/marginalien/marginal/link[@ref='manzini' and @subref='manzini-weisen' and @linktext='true'] -opus/marginalien/marginal/link[@ref='marcaurel' and @subref='marcaurel-ipso' and @linktext='true'] -opus/marginalien/marginal/link[@ref='marchand' and @subref='marchand-cotton' and @linktext='true'] -opus/marginalien/marginal/link[@ref='marchand' and @subref='marchand-peruquen' and @linktext='true'] -opus/marginalien/marginal/link[@ref='marck' and @subref='marck-sibyllinis' and @linktext='true'] -opus/marginalien/marginal/link[@ref='marin' and @subref='marin-saladin' and @linktext='true'] -opus/marginalien/marginal/link[@ref='marmontel' and @subref='marmontel-dichtkunst' and @linktext='true'] -opus/marginalien/marginal/link[@ref='marmontel' and @subref='marmontel-moralische' and @linktext='true'] -opus/marginalien/marginal/link[@ref='marnesia' and @subref='marnesia-lettres' and @linktext='true'] -opus/marginalien/marginal/link[@ref='marpurg' and @linktext='true'] -opus/marginalien/marginal/link[@ref='marpurg' and @subref='marpurg-musik' and @linktext='true'] -opus/marginalien/marginal/link[@ref='masch' and @subref='masch-betrachtungen' and @linktext='true'] -opus/marginalien/marginal/link[@ref='maubert' and @linktext='true'] -opus/marginalien/marginal/link[@ref='maximos' and @subref='maximos-dissertationes' and @linktext='true'] -opus/marginalien/marginal/link[@ref='may' and @subref='may-weisheit' and @linktext='true'] -opus/marginalien/marginal/link[@ref='meck' and @linktext='true'] -opus/marginalien/marginal/link[@ref='meier-gf' and @subref='meier-anfangsgruende' and @linktext='true'] -opus/marginalien/marginal/link[@ref='meinhard' and @subref='meinhard-versuche' and @linktext='true'] -opus/marginalien/marginal/link[@ref='melanchthon' and @linktext='true'] -opus/marginalien/marginal/link[@ref='melanges' and @linktext='false'] -opus/marginalien/marginal/link[@ref='mendelssohn' and @subref='mendelssohn-empfindungen' and @linktext='true'] -opus/marginalien/marginal/link[@ref='mendelssohn' and @subref='mendelssohn-fulberti' and @linktext='false'] -opus/marginalien/marginal/link[@ref='mendelssohn-fulberti' and @linktext='true'] -opus/marginalien/marginal/link[@ref='mengden-ce' and @linktext='true'] -opus/marginalien/marginal/link[@ref='mengden-eb' and @linktext='true'] -opus/marginalien/marginal/link[@ref='mengden-ga' and @linktext='true'] -opus/marginalien/marginal/link[@ref='mengs' and @subref='mengs-gedanken' and @linktext='true'] -opus/marginalien/marginal/link[@ref='menschenfreund' and @linktext='true'] -opus/marginalien/marginal/link[@ref='merian' and @linktext='true'] -opus/marginalien/marginal/link[@ref='meurer' and @linktext='true'] -opus/marginalien/marginal/link[@ref='meynieres' and @subref='meynieres-melanges' and @linktext='true'] -opus/marginalien/marginal/link[@ref='meynieres' and @subref='meynieres-observations' and @linktext='true'] -opus/marginalien/marginal/link[@ref='meynieres' and @subref='meynieres-reflexions' and @linktext='true'] -opus/marginalien/marginal/link[@ref='michaelis-jd' and @subref='michaelis-commentationes' and @linktext='true'] -opus/marginalien/marginal/link[@ref='michaelis-jd' and @subref='michaelis-einleitung' and @linktext='true'] -opus/marginalien/marginal/link[@ref='michaelis-jd' and @subref='michaelis-jd-fragen' and @linktext='true'] -opus/marginalien/marginal/link[@ref='milton' and @linktext='false'] -opus/marginalien/marginal/link[@ref='milton' and @linktext='true'] -opus/marginalien/marginal/link[@ref='milton' and @subref='milton-regained' and @linktext='true'] -opus/marginalien/marginal/link[@ref='moeris' and @subref='moeris-lexikon' and @linktext='true'] -opus/marginalien/marginal/link[@ref='moldenhawer' and @linktext='true'] -opus/marginalien/marginal/link[@ref='moldenhawer' and @subref='moldenhawer-alterthuemer' and @linktext='true'] -opus/marginalien/marginal/link[@ref='moliere' and @linktext='true'] -opus/marginalien/marginal/link[@ref='montesquieu' and @linktext='false'] -opus/marginalien/marginal/link[@ref='montfaucon' and @subref='montfaucon-antiquitates' and @linktext='true'] -opus/marginalien/marginal/link[@ref='montpensier' and @subref='montpensier-memoires' and @linktext='true'] -opus/marginalien/marginal/link[@ref='moreri' and @subref='moreri-dictionnaire' and @linktext='true'] -opus/marginalien/marginal/link[@ref='morinus' and @subref='morinus-dissertationes' and @linktext='true'] -opus/marginalien/marginal/link[@ref='mornay' and @subref='mornay-mystere' and @linktext='true'] -opus/marginalien/marginal/link[@ref='moschus' and @linktext='true'] -opus/marginalien/marginal/link[@ref='mosellanus' and @linktext='true'] -opus/marginalien/marginal/link[@ref='moser' and @subref='moser-augen' and @linktext='true'] -opus/marginalien/marginal/link[@ref='moser' and @subref='moser-herr' and @linktext='false'] -opus/marginalien/marginal/link[@ref='moserj' and @subref='moserj-arminius' and @linktext='true'] -opus/marginalien/marginal/link[@ref='moserj' and @subref='moserj-harlekin' and @linktext='false'] -opus/marginalien/marginal/link[@ref='mosheim' and @subref='mosheim-erklärung' and @linktext='true'] -opus/marginalien/marginal/link[@ref='mosheim' and @subref='mosheim-pastoral' and @linktext='true'] -opus/marginalien/marginal/link[@ref='mourges' and @subref='mourges-plan' and @linktext='true'] -opus/marginalien/marginal/link[@ref='moyne' and @linktext='true'] -opus/marginalien/marginal/link[@ref='muralt' and @linktext='true'] -opus/marginalien/marginal/link[@ref='musschenbroek' and @subref='musschenbroek-physic' and @linktext='true'] -opus/marginalien/marginal/link[@ref='mylius' and @subref='mylius-schriften' and @linktext='true'] -opus/marginalien/marginal/link[@ref='nad-j-1949b' and @linktext='false'] -opus/marginalien/marginal/link[@ref='neumann' and @linktext='true'] -opus/marginalien/marginal/link[@ref='nicolai-g' and @linktext='true'] -opus/marginalien/marginal/link[@ref='nicolay' and @subref='nicolay-elegien' and @linktext='true'] -opus/marginalien/marginal/link[@ref='nonnos' and @linktext='true'] -opus/marginalien/marginal/link[@ref='noverre' and @subref='noverre-lettres' and @linktext='true'] -opus/marginalien/marginal/link[@ref='nt-2jo' and @subref='nt-2jo-11' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-2jo' and @subref='nt-2jo-9' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-apg' and @subref='nt-apg13' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-apg' and @subref='nt-apg1' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-apg' and @subref='nt-apg20' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-apg' and @subref='nt-apg23' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-apg' and @subref='nt-apg6' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-apg' and @subref='nt-apg8' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-apg' and @subref='nt-apg9' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-eph' and @subref='nt-eph2' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-eph' and @subref='nt-eph4' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-gal' and @subref='nt-gal4' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-gal' and @subref='nt-gal5' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-heb' and @subref='nt-heb13' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-heb' and @subref='nt-heb3' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-heb' and @subref='nt-heb9' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-jak' and @subref='nt-jak2' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-jak' and @subref='nt-jak3' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-jo' and @subref='nt-jo5' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-joh1' and @subref='nt-joh1-2' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-joh1' and @subref='nt-joh1-3' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-joh1' and @subref='nt-joh1-5' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-jud' and @subref='nt-jud1' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-kol' and @subref='nt-kol2' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-kor1' and @subref='nt-kor1-12' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-kor1' and @subref='nt-kor1-16' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-kor1' and @subref='nt-kor1-7' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-kor1' and @subref='nt-kor1-9' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-kor2' and @subref='nt-kor2-13' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-kor2' and @subref='nt-kor2-9' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-lk' and @subref='nt-lk13' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-lk' and @subref='nt-lk15' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-lk' and @subref='nt-lk7' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-lk' and @subref='nt-lk8' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-mk' and @subref='nt-mk10' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-mk' and @subref='nt-mk11' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-mk' and @subref='nt-mk13' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-mk' and @subref='nt-mk7' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-mt' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-mt' and @subref='nt-mt24' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-off' and @subref='nt-off10' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-off' and @subref='nt-off22' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-off' and @subref='nt-off4' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-off' and @subref='nt-off7' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-pet1-2' and @subref='nt-pet1-2' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-pet2' and @subref='nt-pet2-1' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-pet2' and @subref='nt-pet2-2' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-pet2' and @subref='nt-pet2-3' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-phil' and @subref='nt-phil1' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-roe' and @subref='nt-roe10' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-roe' and @subref='nt-roe11' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-roe' and @subref='nt-roe15' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-roe' and @subref='nt-roe4' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-roe' and @subref='nt-roe9' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-th1' and @subref='nt-th1-2' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-th1' and @subref='nt-th1-5' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-th2' and @subref='nt-th2-2' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-tim2' and @subref='nt-tim2-2' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-tit' and @subref='nt-tit1' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nt-tit' and @subref='nt-tit3' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nuppenau-hl' and @linktext='false'] -opus/marginalien/marginal/link[@ref='nuppenau-jg' and @linktext='true'] -opus/marginalien/marginal/link[@ref='oest' and @subref='oest-bremische' and @linktext='true'] -opus/marginalien/marginal/link[@ref='oest' and @subref='oest-schlüsse'] -opus/marginalien/marginal/link[@ref='oest' and @subref='oest-siechbett' and @linktext='true'] -opus/marginalien/marginal/link[@ref='opitz-m' and @subref='opitz-poeterey' and @linktext='true'] -opus/marginalien/marginal/link[@ref='orrery' and @subref='orrery-briefe' and @linktext='true'] -opus/marginalien/marginal/link[@ref='ortmann' and @subref='ortmann-briefe' and @linktext='true'] -opus/marginalien/marginal/link[@ref='osten-w' and @linktext='true'] -opus/marginalien/marginal/link[@ref='ovid' and @linktext='false'] -opus/marginalien/marginal/link[@ref='ovid' and @linktext='true'] -opus/marginalien/marginal/link[@ref='ovid' and @subref='ovid-epist' and @linktext='false'] -opus/marginalien/marginal/link[@ref='ovid' and @subref='ovid-fasti' and @linktext='true'] -opus/marginalien/marginal/link[@ref='ovid' and @subref='ovid-tristia' and @linktext='true'] -opus/marginalien/marginal/link[@ref='palmstrauch' and @linktext='true'] -opus/marginalien/marginal/link[@ref='panciroli' and @subref='panciroli-rerum' and @linktext='true'] -opus/marginalien/marginal/link[@ref='pascal' and @linktext='true'] -opus/marginalien/marginal/link[@ref='passionei' and @linktext='true'] -opus/marginalien/marginal/link[@ref='pausanias' and @linktext='true'] -opus/marginalien/marginal/link[@ref='pausanias' and @subref='pausanias-opera' and @linktext='true'] -opus/marginalien/marginal/link[@ref='perrin' and @subref='perrin-julie' and @linktext='true'] -opus/marginalien/marginal/link[@ref='persius' and @subref='persius-satiren' and @linktext='true'] -opus/marginalien/marginal/link[@ref='petrarca' and @linktext='true'] -opus/marginalien/marginal/link[@ref='petty' and @subref='petty-essays' and @linktext='true'] -opus/marginalien/marginal/link[@ref='pfalz-zweibruecken-karoline' and @linktext='true'] -opus/marginalien/marginal/link[@ref='pfeffel' and @subref='pfeffel-philemon' and @linktext='true'] -opus/marginalien/marginal/link[@ref='pflug' and @linktext='true'] -opus/marginalien/marginal/link[@ref='philidor' and @subref='echecs' and @linktext='true'] -opus/marginalien/marginal/link[@ref='philon' and @subref='philon-opera' and @linktext='true'] -opus/marginalien/marginal/link[@ref='pindar' and @linktext='true'] -opus/marginalien/marginal/link[@ref='pindar' and @subref='pindar-opera' and @linktext='true'] -opus/marginalien/marginal/link[@ref='pisanski' and @subref='pisanski-nachricht' and @linktext='true'] -opus/marginalien/marginal/link[@ref='pittius' and @linktext='true'] -opus/marginalien/marginal/link[@ref='platon' and @subref='plat-apg' and @linktext='true'] -opus/marginalien/marginal/link[@ref='platon' and @subref='plat-ion' and @linktext='true'] -opus/marginalien/marginal/link[@ref='platon' and @subref='plat-leg' and @linktext='true'] -opus/marginalien/marginal/link[@ref='platon' and @subref='plat-opera' and @linktext='false'] -opus/marginalien/marginal/link[@ref='platon' and @subref='plat-phaid' and @linktext='false'] -opus/marginalien/marginal/link[@ref='platon' and @subref='plat-phaid' and @linktext='true'] -opus/marginalien/marginal/link[@ref='platon' and @subref='plat-phaidr' and @linktext='true'] -opus/marginalien/marginal/link[@ref='platon' and @subref='plat-symp' and @linktext='true'] -opus/marginalien/marginal/link[@ref='plotin' and @subref='plotin-opera' and @linktext='true'] -opus/marginalien/marginal/link[@ref='pluche' and @subref='pluche-ciel' and @linktext='true'] -opus/marginalien/marginal/link[@ref='plutarch' and @linktext='false'] -opus/marginalien/marginal/link[@ref='poiret' and @linktext='true'] -opus/marginalien/marginal/link[@ref='poisson' and @linktext='true'] -opus/marginalien/marginal/link[@ref='polignac' and @linktext='true'] -opus/marginalien/marginal/link[@ref='polignac' and @subref='polignac-anti' and @linktext='true'] -opus/marginalien/marginal/link[@ref='pompeius' and @linktext='true'] -opus/marginalien/marginal/link[@ref='pontoppidan' and @subref='pontoppidan-menoza' and @linktext='true'] -opus/marginalien/marginal/link[@ref='pope' and @linktext='true'] -opus/marginalien/marginal/link[@ref='pope' and @subref='pope-criticism' and @linktext='true'] -opus/marginalien/marginal/link[@ref='pope' and @subref='pope-works' and @linktext='false'] -opus/marginalien/marginal/link[@ref='pope' and @subref='pope-works' and @linktext='true'] -opus/marginalien/marginal/link[@ref='popowitsch' and @subref='popowitsch-deutsch' and @linktext='true'] -opus/marginalien/marginal/link[@ref='porphyrios' and @linktext='true'] -opus/marginalien/marginal/link[@ref='posselius' and @subref='posselius-syntaxis' and @linktext='true'] -opus/marginalien/marginal/link[@ref='poullain' and @subref='poullain-essais' and @linktext='true'] -opus/marginalien/marginal/link[@ref='prades' and @linktext='true'] -opus/marginalien/marginal/link[@ref='prevost' and @linktext='true'] -opus/marginalien/marginal/link[@ref='prideaux' and @linktext='true'] -opus/marginalien/marginal/link[@ref='priscianus' and @linktext='true'] -opus/marginalien/marginal/link[@ref='profe' and @subref='profe-erdbeben' and @linktext='true'] -opus/marginalien/marginal/link[@ref='proklos' and @subref='proklos-platon' and @linktext='true'] -opus/marginalien/marginal/link[@ref='proklos' and @subref='proklos-sphaera' and @linktext='true'] -opus/marginalien/marginal/link[@ref='psellos' and @subref='psellos-arithmetik' and @linktext='true'] -opus/marginalien/marginal/link[@ref='putter' and @subref='staatsveraenderung' and @linktext='true'] -opus/marginalien/marginal/link[@ref='pythagoras' and @linktext='true'] -opus/marginalien/marginal/link[@ref='querlon' and @subref='querlon-impostures' and @linktext='true'] -opus/marginalien/marginal/link[@ref='querlon' and @subref='querlon-psaphion' and @linktext='true'] -opus/marginalien/marginal/link[@ref='quesnel' and @subref='quesnel-histoire' and @linktext='false'] -opus/marginalien/marginal/link[@ref='quesnel' and @subref='quesnel-histoire' and @linktext='true'] -opus/marginalien/marginal/link[@ref='quintilian' and @linktext='true'] -opus/marginalien/marginal/link[@ref='rackmann' and @linktext='true'] -opus/marginalien/marginal/link[@ref='radicke-gc' and @linktext='true'] -opus/marginalien/marginal/link[@ref='ramler' and @subref='ramler-hymen' and @linktext='true'] -opus/marginalien/marginal/link[@ref='rapin' and @subref='rapin-eloquence' and @linktext='false'] -opus/marginalien/marginal/link[@ref='raynal' and @subref='raynal-anecdoten' and @linktext='true'] -opus/marginalien/marginal/link[@ref='reimann-jf' and @subref='reimann-versuch' and @linktext='true'] -opus/marginalien/marginal/link[@ref='reime' and @subref='reime-arabicae' and @linktext='true'] -opus/marginalien/marginal/link[@ref='reinesius' and @linktext='true'] -opus/marginalien/marginal/link[@ref='reinhard' and @subref='reinhard-fatal' and @linktext='true'] -opus/marginalien/marginal/link[@ref='reinhard' and @subref='reinhard-sachen' and @linktext='true'] -opus/marginalien/marginal/link[@ref='reinking' and @subref='biblische-policey' and @linktext='true'] -opus/marginalien/marginal/link[@ref='restaut' and @subref='restaut-principes' and @linktext='true'] -opus/marginalien/marginal/link[@ref='reuchlin' and @subref='reuchlin-cabalistica' and @linktext='true'] -opus/marginalien/marginal/link[@ref='riccoboni' and @subref='riccoboni-catesby' and @linktext='true'] -opus/marginalien/marginal/link[@ref='riccoboni' and @subref='riccoboni-histoire' and @linktext='true'] -opus/marginalien/marginal/link[@ref='riccoboni' and @subref='riccoboni-lettres' and @linktext='true'] -opus/marginalien/marginal/link[@ref='richardson' and @linktext='true'] -opus/marginalien/marginal/link[@ref='richardson' and @subref='richardson-clarissa' and @linktext='true'] -opus/marginalien/marginal/link[@ref='rienzo' and @linktext='true'] -opus/marginalien/marginal/link[@ref='ringeltaube' and @subref='ringeltaube-briefe' and @linktext='true'] -opus/marginalien/marginal/link[@ref='rittersdorf' and @linktext='true'] -opus/marginalien/marginal/link[@ref='robinet' and @subref='robinet-nature' and @linktext='true'] -opus/marginalien/marginal/link[@ref='rochon' and @subref='rochon-oisive' and @linktext='true'] -opus/marginalien/marginal/link[@ref='rogall' and @subref='rogall-gesang' and @linktext='true'] -opus/marginalien/marginal/link[@ref='rollin' and @linktext='true'] -opus/marginalien/marginal/link[@ref='ronsard' and @subref='ronsard-sonnets' and @linktext='true'] -opus/marginalien/marginal/link[@ref='rost-jc' and @subref='rost-vorspiel' and @linktext='true'] -opus/marginalien/marginal/link[@ref='rousseau' and @linktext='false'] -opus/marginalien/marginal/link[@ref='rousseau' and @subref='rousseau-alembert' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sachsen-weimar-ka' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sahme-rf' and @linktext='true'] -opus/marginalien/marginal/link[@ref='saint-fargeau' and @subref='fargeau-plaidoyer' and @linktext='true'] -opus/marginalien/marginal/link[@ref='saint-pierre' and @linktext='true'] -opus/marginalien/marginal/link[@ref='saint-real' and @subref='real-entr-histo' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sallust' and @subref='sallust-fragment' and @linktext='true'] -opus/marginalien/marginal/link[@ref='salthenius' and @subref='bibliothecae' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sammler' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sanctius' and @subref='sanctius-minerva' and @linktext='true'] -opus/marginalien/marginal/link[@ref='santorio' and @linktext='true'] -opus/marginalien/marginal/link[@ref='saurin' and @linktext='false'] -opus/marginalien/marginal/link[@ref='saurin' and @linktext='true'] -opus/marginalien/marginal/link[@ref='savary' and @subref='savary-dictionnaire' and @linktext='true'] -opus/marginalien/marginal/link[@ref='savary' and @subref='savary-oeuvres' and @linktext='true'] -opus/marginalien/marginal/link[@ref='scapula' and @subref='lexicon-graeco-latinum' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schaarschmidt' and @subref='schaarschmidt-lehre' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schabaelje' and @subref='schabaelje-seele' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schade' and @subref='schade-religion' and @linktext='true'] -opus/marginalien/marginal/link[@ref='scheffer-jg' and @subref='scheffer-vehiculari' and @linktext='true'] -opus/marginalien/marginal/link[@ref='scheffner-jg' and @subref='scheffner-campangen' and @linktext='true'] -opus/marginalien/marginal/link[@ref='scheller' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schieferdecker' and @subref='schieferdecker-nucleus' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schiffert' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schimmelpfennig' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schlegel-je' and @subref='schlegel-canut' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schlegel-je' and @subref='schlegel-muessig' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schoettgen' and @subref='schoettgen-horae' and @linktext='true'] -opus/marginalien/marginal/link[@ref='scholz' and @subref='scholz-triebe' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schonaich' and @subref='ragout' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schon' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schoneich' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schoppach' and @subref='schoppach-jure' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schrader' and @subref='schrader-meister' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schrader' and @subref='schrader-ritter' and @linktext='false'] -opus/marginalien/marginal/link[@ref='schrader' and @subref='schrader-scherze' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schreiber' and @subref='schreiber-imperio' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schrevel' and @subref='schrevel-lexikon' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schroders' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schrotter-ajh' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schubert' and @subref='schubert-unterricht' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schuetze-g' and @subref='schuetze-teutsch' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schultens' and @subref='schultens-dissertationes' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schultz-fa' and @subref='schultz-gesang' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schultz-jf' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schultz-jnw' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schumacher-jh' and @subref='schumacher-jh-alterthuemer' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schumacher-jh' and @subref='schumacher-jh-ursprung' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schurmann' and @subref='schurmann-opuscula' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schuster' and @subref='benda' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schuster' and @subref='dubuisson' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schwabe' and @subref='schwabe-belustigungen' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schwabe' and @subref='schwabe-briefe' and @linktext='false'] -opus/marginalien/marginal/link[@ref='schwartz-jc' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schwarz-chg' and @subref='schwarz-miscellanea' and @linktext='true'] -opus/marginalien/marginal/link[@ref='schwarzer' and @subref='schwarzer-arithmetica' and @linktext='true'] -opus/marginalien/marginal/link[@ref='scultetus' and @subref='scultetus-annalium' and @linktext='false'] -opus/marginalien/marginal/link[@ref='seligmann' and @linktext='true'] -opus/marginalien/marginal/link[@ref='selis' and @subref='selis-inoculation' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sevigne' and @subref='sevigne-lettres' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sextus' and @subref='sextus-opera' and @linktext='true'] -opus/marginalien/marginal/link[@ref='shaftesbury' and @linktext='true'] -opus/marginalien/marginal/link[@ref='shuckford' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sigismund' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sike' and @subref='sike-evangelium' and @linktext='true'] -opus/marginalien/marginal/link[@ref='skelton' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sokrates' and @linktext='false'] -opus/marginalien/marginal/link[@ref='sokratischedenk' and @linktext='true'] -opus/marginalien/marginal/link[@ref='somervile' and @subref='somervile-hobbinol' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sophokles' and @subref='sophokles-aias' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sophokles' and @subref='sophokles-antigone' and @linktext='false'] -opus/marginalien/marginal/link[@ref='sophokles' and @subref='sophokles-electra' and @linktext='false'] -opus/marginalien/marginal/link[@ref='sophokles' and @subref='sophokles-electra' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sophokles' and @subref='sophokles-oedipus' and @linktext='false'] -opus/marginalien/marginal/link[@ref='sophokles' and @subref='sophokles-philoctet' and @linktext='false'] -opus/marginalien/marginal/link[@ref='spanheim' and @subref='spanheim-callimachi' and @linktext='true'] -opus/marginalien/marginal/link[@ref='spence' and @subref='spence-blacklock' and @linktext='true'] -opus/marginalien/marginal/link[@ref='spence' and @subref='spence-crito' and @linktext='true'] -opus/marginalien/marginal/link[@ref='spencer' and @subref='spencer-legibus' and @linktext='true'] -opus/marginalien/marginal/link[@ref='stanley' and @linktext='true'] -opus/marginalien/marginal/link[@ref='staupitz' and @linktext='true'] -opus/marginalien/marginal/link[@ref='steinbruchel' and @subref='steinbruchel-theater' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sticotti' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sticotti' and @subref='sticotti-chef' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sticotti' and @subref='sticotti-etoit' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sticotti' and @subref='sticotti-musique' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sticotti' and @subref='sticotti-queue' and @linktext='false'] -opus/marginalien/marginal/link[@ref='stockhausen' and @subref='stockhausen-briefe' and @linktext='true'] -opus/marginalien/marginal/link[@ref='stoffel-c' and @linktext='true'] -opus/marginalien/marginal/link[@ref='strabon' and @linktext='true'] -opus/marginalien/marginal/link[@ref='suchland' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sulzer' and @subref='sulzer-hume' and @linktext='true'] -opus/marginalien/marginal/link[@ref='sulzer' and @subref='sulzer-theorie' and @linktext='true'] -opus/marginalien/marginal/link[@ref='swedenborg' and @subref='swedenborg-opera' and @linktext='true'] -opus/marginalien/marginal/link[@ref='tacitus' and @subref='tacitus-hist' and @linktext='true'] -opus/marginalien/marginal/link[@ref='taylor' and @linktext='true'] -opus/marginalien/marginal/link[@ref='teller' and @subref='teller-bibel' and @linktext='true'] -opus/marginalien/marginal/link[@ref='teller-wa' and @linktext='true'] -opus/marginalien/marginal/link[@ref='terenz' and @linktext='false'] -opus/marginalien/marginal/link[@ref='terenz' and @linktext='true'] -opus/marginalien/marginal/link[@ref='tetsch-cl' and @subref='tetsch-kirchen' and @linktext='false'] -opus/marginalien/marginal/link[@ref='themistokles' and @linktext='true'] -opus/marginalien/marginal/link[@ref='theodoret' and @linktext='true'] -opus/marginalien/marginal/link[@ref='theognis' and @linktext='true'] -opus/marginalien/marginal/link[@ref='theokrit' and @linktext='true'] -opus/marginalien/marginal/link[@ref='theokrit' and @subref='theokrit-idyll' and @linktext='true'] -opus/marginalien/marginal/link[@ref='theophrast' and @subref='theophrast-plant' and @linktext='true'] -opus/marginalien/marginal/link[@ref='thomas' and @subref='thomas-oeuvres' and @linktext='true'] -opus/marginalien/marginal/link[@ref='thomaskempen' and @subref='thomaskempen-imitando' and @linktext='false'] -opus/marginalien/marginal/link[@ref='thompson' and @subref='thompson-miscellanies' and @linktext='true'] -opus/marginalien/marginal/link[@ref='thompson' and @subref='thompson-socrate' and @linktext='true'] -opus/marginalien/marginal/link[@ref='thorwald' and @linktext='true'] -opus/marginalien/marginal/link[@ref='thourneyser' and @subref='thourneyser-lettre' and @linktext='true'] -opus/marginalien/marginal/link[@ref='thukydides' and @linktext='true'] -opus/marginalien/marginal/link[@ref='tiphaigne' and @subref='tiphaigne-amilec' and @linktext='true'] -opus/marginalien/marginal/link[@ref='tiphaigne' and @subref='tiphaigne-amour' and @linktext='false'] -opus/marginalien/marginal/link[@ref='tiphaigne' and @subref='tiphaigne-bigarrures' and @linktext='true'] -opus/marginalien/marginal/link[@ref='tiphaigne' and @subref='tiphaigne-giphantie' and @linktext='true'] -opus/marginalien/marginal/link[@ref='toland' and @subref='toland-cicero' and @linktext='true'] -opus/marginalien/marginal/link[@ref='touron' and @subref='touron-verite' and @linktext='true'] -opus/marginalien/marginal/link[@ref='trescho' and @linktext='true'] -opus/marginalien/marginal/link[@ref='trescho-sf' and @subref='trescho-genie' and @linktext='true'] -opus/marginalien/marginal/link[@ref='trescho-sf' and @subref='trescho-naschereyen' and @linktext='false'] -opus/marginalien/marginal/link[@ref='triller' and @subref='triller-fabeln' and @linktext='true'] -opus/marginalien/marginal/link[@ref='tscherning' and @subref='tscherning-gedichte' and @linktext='true'] -opus/marginalien/marginal/link[@ref='tucker' and @subref='tucker-essay' and @linktext='true'] -opus/marginalien/marginal/link[@ref='tyrtaios' and @subref='tyrtaios-klotz' and @linktext='true'] -opus/marginalien/marginal/link[@ref='unzer' and @subref='unzer-erzaehl' and @linktext='true'] -opus/marginalien/marginal/link[@ref='ussher' and @linktext='true'] -opus/marginalien/marginal/link[@ref='valentin' and @subref='valentin-patriotische' and @linktext='true'] -opus/marginalien/marginal/link[@ref='valerius' and @linktext='true'] -opus/marginalien/marginal/link[@ref='vechner' and @subref='vechner-lexia' and @linktext='true'] -opus/marginalien/marginal/link[@ref='vegesack' and @linktext='true'] -opus/marginalien/marginal/link[@ref='verbrugge' and @subref='verbrugge-observationes' and @linktext='true'] -opus/marginalien/marginal/link[@ref='vergil' and @subref='vergil-opera' and @linktext='true'] -opus/marginalien/marginal/link[@ref='vernet' and @linktext='true'] -opus/marginalien/marginal/link[@ref='vietinghoff-oh' and @linktext='true'] -opus/marginalien/marginal/link[@ref='vigerius' and @subref='vigerius-idiotismis' and @linktext='true'] -opus/marginalien/marginal/link[@ref='villaret' and @subref='villaret-belle' and @linktext='true'] -opus/marginalien/marginal/link[@ref='villiers' and @subref='villiers-sentimens' and @linktext='true'] -opus/marginalien/marginal/link[@ref='vivonne' and @linktext='true'] -opus/marginalien/marginal/link[@ref='voisenon' and @subref='voisenon-tant' and @linktext='true'] -opus/marginalien/marginal/link[@ref='voisin' and @subref='voisin-liber' and @linktext='true'] -opus/marginalien/marginal/link[@ref='volckersahm-se' and @linktext='true'] -opus/marginalien/marginal/link[@ref='voltaire' and @subref='merope' and @linktext='true'] -opus/marginalien/marginal/link[@ref='voltaire' and @subref='voltaire-annales' and @linktext='true'] -opus/marginalien/marginal/link[@ref='voltaire' and @subref='voltaire-caffe' and @linktext='true'] -opus/marginalien/marginal/link[@ref='voltaire' and @subref='voltaire-candide' and @linktext='false'] -opus/marginalien/marginal/link[@ref='voltaire' and @subref='voltaire-candide' and @linktext='true'] -opus/marginalien/marginal/link[@ref='voltaire' and @subref='voltaire-critique' and @linktext='true'] -opus/marginalien/marginal/link[@ref='voltaire' and @subref='voltaire-henri' and @linktext='true'] -opus/marginalien/marginal/link[@ref='voltaire' and @subref='voltaire-homme' and @linktext='true'] -opus/marginalien/marginal/link[@ref='voltaire' and @subref='voltaire-lettreacad' and @linktext='true'] -opus/marginalien/marginal/link[@ref='voltaire' and @subref='voltaire-louis' and @linktext='true'] -opus/marginalien/marginal/link[@ref='voltaire' and @subref='voltaire-memnon' and @linktext='true'] -opus/marginalien/marginal/link[@ref='voltaire' and @subref='voltaire-neuton' and @linktext='true'] -opus/marginalien/marginal/link[@ref='voltaire' and @subref='voltaire-oeuvres' and @linktext='true'] -opus/marginalien/marginal/link[@ref='voltaire' and @subref='voltaire-pucelle' and @linktext='false'] -opus/marginalien/marginal/link[@ref='voltaire' and @subref='voltaire-refutation' and @linktext='true'] -opus/marginalien/marginal/link[@ref='voltaire' and @subref='voltaire-reponse-neuton' and @linktext='true'] -opus/marginalien/marginal/link[@ref='voltaire' and @subref='voltaire-socrate' and @linktext='true'] -opus/marginalien/marginal/link[@ref='voltaire' and @subref='voltaire-uranie' and @linktext='true'] -opus/marginalien/marginal/link[@ref='vossius' and @linktext='true'] -opus/marginalien/marginal/link[@ref='wachtler' and @linktext='true'] -opus/marginalien/marginal/link[@ref='waga' and @linktext='true'] -opus/marginalien/marginal/link[@ref='wagner-je' and @linktext='true'] -opus/marginalien/marginal/link[@ref='waser' and @subref='waser-moralische' and @linktext='true'] -opus/marginalien/marginal/link[@ref='watelet' and @subref='watelet-art' and @linktext='true'] -opus/marginalien/marginal/link[@ref='watson' and @subref='watson-biga' and @linktext='true'] -opus/marginalien/marginal/link[@ref='weber-ca' and @linktext='true'] -opus/marginalien/marginal/link[@ref='weber-fc' and @subref='weber-russland' and @linktext='true'] -opus/marginalien/marginal/link[@ref='wegelin' and @subref=' wegelin-gespraeche' and @linktext='true'] -opus/marginalien/marginal/link[@ref='wegner' and @linktext='false'] -opus/marginalien/marginal/link[@ref='weise' and @subref='weise-bibliothek' and @linktext='true'] -opus/marginalien/marginal/link[@ref='weisse' and @linktext='true'] -opus/marginalien/marginal/link[@ref='well' and @subref='well-recht' and @linktext='true'] -opus/marginalien/marginal/link[@ref='wernicke' and @subref='wernicke-versuch' and @linktext='true'] -opus/marginalien/marginal/link[@ref='weymann-d' and @subref='weymann-bedenklichkeiten' and @linktext='true'] -opus/marginalien/marginal/link[@ref='wieland-cm' and @subref='wieland-abraham' and @linktext='true'] -opus/marginalien/marginal/link[@ref='wieland-cm' and @subref='wieland-erzaehlung' and @linktext='true'] -opus/marginalien/marginal/link[@ref='wieland-cm' and @subref='wieland-freundin' and @linktext='true'] -opus/marginalien/marginal/link[@ref='wieland-cm' and @subref='wieland-gray' and @linktext='true'] -opus/marginalien/marginal/link[@ref='wieland-cm' and @subref='wieland-poetische' and @linktext='true'] -opus/marginalien/marginal/link[@ref='willamovius' and @subref='willamovius-sammlung' and @linktext='true'] -opus/marginalien/marginal/link[@ref='willamovius' and @subref='willamovius-thornische' and @linktext='false'] -opus/marginalien/marginal/link[@ref='willis' and @subref='willis-cerebri' and @linktext='true'] -opus/marginalien/marginal/link[@ref='winckelmann' and @subref='winckelmann-baukunst' and @linktext='true'] -opus/marginalien/marginal/link[@ref='winckelmann' and @subref='winckelmann-empfindung' and @linktext='true'] -opus/marginalien/marginal/link[@ref='winckelmann' and @subref='winckelmann-sendschreiben' and @linktext='true'] -opus/marginalien/marginal/link[@ref='windheim' and @subref='windheim-commentatio' and @linktext='true'] -opus/marginalien/marginal/link[@ref='wippel' and @subref='wippel-geschichte' and @linktext='true'] -opus/marginalien/marginal/link[@ref='witten-jj' and @linktext='false'] -opus/marginalien/marginal/link[@ref='wol-j-2008' and @linktext='false'] -opus/marginalien/marginal/link[@ref='wolle' and @subref='wolle-collectio' and @linktext='true'] -opus/marginalien/marginal/link[@ref='xenophon' and @linktext='true'] -opus/marginalien/marginal/link[@ref='xenophon' and @subref='xenophon-republick' and @linktext='true'] -opus/marginalien/marginal/link[@ref='young' and @linktext='false'] -opus/marginalien/marginal/link[@ref='young' and @linktext='true'] -opus/marginalien/marginal/link[@ref='young' and @subref='young-brueder' and @linktext='true'] -opus/marginalien/marginal/link[@ref='yvetaux' and @linktext='true'] -opus/marginalien/marginal/link[@ref='yvon' and @linktext='true'] -opus/marginalien/marginal/link[@ref='zachariae' and @subref='zachariae-paradies' and @linktext='true'] -opus/marginalien/marginal/link[@ref='zachariae' and @subref='zachariae-poesien' and @linktext='true'] -opus/marginalien/marginal/link[@ref='zachariae' and @subref='zachariae-poetische' and @linktext='true'] -opus/marginalien/marginal/link[@ref='ziegra' and @linktext='false'] -opus/marginalien/marginal/link[@ref='zimmermann-cj' and @linktext='true'] -opus/marginalien/marginal/link[@ref='zimmermann-d' and @linktext='true'] -opus/marginalien/marginal/link[@ref='zimmermann-ja' and @linktext='true'] -opus/marginalien/marginal/link[@ref='zink' and @linktext='true'] -opus/marginalien/marginal/link[@ref='zwingli' and @linktext='true'] -opus/traditions -opus/traditions/letterTradition/align/note -opus/traditions/letterTradition[@autopsic='1000' and @ref='1007'] -opus/traditions/letterTradition[@autopsic='1001' and @ref='1008'] -opus/traditions/letterTradition[@autopsic='1002' and @ref='1009'] -opus/traditions/letterTradition[@autopsic='1003' and @ref='1010'] -opus/traditions/letterTradition[@autopsic='1004' and @ref='1011'] -opus/traditions/letterTradition[@autopsic='1005' and @ref='1012'] -opus/traditions/letterTradition[@autopsic='1006' and @ref='1013'] -opus/traditions/letterTradition[@autopsic='1007' and @ref='1014'] -opus/traditions/letterTradition[@autopsic='1008' and @ref='1015'] -opus/traditions/letterTradition[@autopsic='1009' and @ref='1016'] -opus/traditions/letterTradition[@autopsic='100' and @ref='100'] -opus/traditions/letterTradition[@autopsic='1010' and @ref='1017'] -opus/traditions/letterTradition[@autopsic='1011' and @ref='1018'] -opus/traditions/letterTradition[@autopsic='1012' and @ref='1019'] -opus/traditions/letterTradition[@autopsic='1013' and @ref='1020'] -opus/traditions/letterTradition[@autopsic='1014' and @ref='1021'] -opus/traditions/letterTradition[@autopsic='1015' and @ref='1022'] -opus/traditions/letterTradition[@autopsic='1016' and @ref='1023'] -opus/traditions/letterTradition[@autopsic='1017' and @ref='1024'] -opus/traditions/letterTradition[@autopsic='1018' and @ref='1025'] -opus/traditions/letterTradition[@autopsic='1019' and @ref='1026'] -opus/traditions/letterTradition[@autopsic='101' and @ref='101'] -opus/traditions/letterTradition[@autopsic='1020' and @ref='1027'] -opus/traditions/letterTradition[@autopsic='1021' and @ref='1028'] -opus/traditions/letterTradition[@autopsic='1022' and @ref='1029'] -opus/traditions/letterTradition[@autopsic='1023' and @ref='1030'] -opus/traditions/letterTradition[@autopsic='1024' and @ref='1031'] -opus/traditions/letterTradition[@autopsic='1025' and @ref='1032'] -opus/traditions/letterTradition[@autopsic='1026' and @ref='1033'] -opus/traditions/letterTradition[@autopsic='1027' and @ref='1034'] -opus/traditions/letterTradition[@autopsic='1028' and @ref='1035'] -opus/traditions/letterTradition[@autopsic='1029' and @ref='1036'] -opus/traditions/letterTradition[@autopsic='102' and @ref='102'] -opus/traditions/letterTradition[@autopsic='1030' and @ref='1037'] -opus/traditions/letterTradition[@autopsic='1031' and @ref='1038'] -opus/traditions/letterTradition[@autopsic='1032' and @ref='1039'] -opus/traditions/letterTradition[@autopsic='1033' and @ref='1040'] -opus/traditions/letterTradition[@autopsic='1034' and @ref='1041'] -opus/traditions/letterTradition[@autopsic='1035' and @ref='1042'] -opus/traditions/letterTradition[@autopsic='1036' and @ref='1043'] -opus/traditions/letterTradition[@autopsic='1037' and @ref='1044'] -opus/traditions/letterTradition[@autopsic='1038' and @ref='1045'] -opus/traditions/letterTradition[@autopsic='1039' and @ref='1046'] -opus/traditions/letterTradition[@autopsic='103' and @ref='103'] -opus/traditions/letterTradition[@autopsic='1040' and @ref='1047'] -opus/traditions/letterTradition[@autopsic='1041' and @ref='1048'] -opus/traditions/letterTradition[@autopsic='1042' and @ref='1049'] -opus/traditions/letterTradition[@autopsic='1043' and @ref='1050'] -opus/traditions/letterTradition[@autopsic='1044' and @ref='1051'] -opus/traditions/letterTradition[@autopsic='1045' and @ref='1052'] -opus/traditions/letterTradition[@autopsic='1046' and @ref='1053'] -opus/traditions/letterTradition[@autopsic='1047' and @ref='1054'] -opus/traditions/letterTradition[@autopsic='1048' and @ref='1055'] -opus/traditions/letterTradition[@autopsic='1049' and @ref='1056'] -opus/traditions/letterTradition[@autopsic='104' and @ref='104'] -opus/traditions/letterTradition[@autopsic='1050' and @ref='1057'] -opus/traditions/letterTradition[@autopsic='1051' and @ref='1058'] -opus/traditions/letterTradition[@autopsic='1052' and @ref='1059'] -opus/traditions/letterTradition[@autopsic='1053' and @ref='1060'] -opus/traditions/letterTradition[@autopsic='1054' and @ref='1061'] -opus/traditions/letterTradition[@autopsic='1055' and @ref='1062'] -opus/traditions/letterTradition[@autopsic='1056' and @ref='1063'] -opus/traditions/letterTradition[@autopsic='1057' and @ref='1064'] -opus/traditions/letterTradition[@autopsic='1058' and @ref='1065'] -opus/traditions/letterTradition[@autopsic='1059' and @ref='1066'] -opus/traditions/letterTradition[@autopsic='105' and @ref='105'] -opus/traditions/letterTradition[@autopsic='1060' and @ref='1067'] -opus/traditions/letterTradition[@autopsic='1061' and @ref='1068'] -opus/traditions/letterTradition[@autopsic='1062' and @ref='1069'] -opus/traditions/letterTradition[@autopsic='1063' and @ref='1070'] -opus/traditions/letterTradition[@autopsic='1064' and @ref='1071'] -opus/traditions/letterTradition[@autopsic='1065' and @ref='1072'] -opus/traditions/letterTradition[@autopsic='1066' and @ref='1073'] -opus/traditions/letterTradition[@autopsic='1067' and @ref='1074'] -opus/traditions/letterTradition[@autopsic='1068' and @ref='1075'] -opus/traditions/letterTradition[@autopsic='1069' and @ref='1076'] -opus/traditions/letterTradition[@autopsic='106' and @ref='106'] -opus/traditions/letterTradition[@autopsic='1070' and @ref='1077'] -opus/traditions/letterTradition[@autopsic='1071' and @ref='1078'] -opus/traditions/letterTradition[@autopsic='1072' and @ref='1079'] -opus/traditions/letterTradition[@autopsic='1073' and @ref='1080'] -opus/traditions/letterTradition[@autopsic='1074' and @ref='1081'] -opus/traditions/letterTradition[@autopsic='1075' and @ref='1082'] -opus/traditions/letterTradition[@autopsic='1076' and @ref='1083'] -opus/traditions/letterTradition[@autopsic='1077' and @ref='1084'] -opus/traditions/letterTradition[@autopsic='1078' and @ref='1085'] -opus/traditions/letterTradition[@autopsic='1079' and @ref='1086'] -opus/traditions/letterTradition[@autopsic='107' and @ref='107'] -opus/traditions/letterTradition[@autopsic='1080' and @ref='1087'] -opus/traditions/letterTradition[@autopsic='1081' and @ref='1088'] -opus/traditions/letterTradition[@autopsic='1082' and @ref='1089'] -opus/traditions/letterTradition[@autopsic='1083' and @ref='1090'] -opus/traditions/letterTradition[@autopsic='1084' and @ref='1091'] -opus/traditions/letterTradition[@autopsic='1085' and @ref='1092'] -opus/traditions/letterTradition[@autopsic='1086' and @ref='1093'] -opus/traditions/letterTradition[@autopsic='1087' and @ref='1094'] -opus/traditions/letterTradition[@autopsic='1088' and @ref='1095'] -opus/traditions/letterTradition[@autopsic='1089' and @ref='1096'] -opus/traditions/letterTradition[@autopsic='108' and @ref='108'] -opus/traditions/letterTradition[@autopsic='1090' and @ref='1097'] -opus/traditions/letterTradition[@autopsic='1091' and @ref='1098'] -opus/traditions/letterTradition[@autopsic='1092' and @ref='1099'] -opus/traditions/letterTradition[@autopsic='1093' and @ref='1100'] -opus/traditions/letterTradition[@autopsic='1094' and @ref='1101'] -opus/traditions/letterTradition[@autopsic='1095' and @ref='1102'] -opus/traditions/letterTradition[@autopsic='1096' and @ref='1103'] -opus/traditions/letterTradition[@autopsic='1097' and @ref='1104'] -opus/traditions/letterTradition[@autopsic='1098' and @ref='1105'] -opus/traditions/letterTradition[@autopsic='1099' and @ref='1106'] -opus/traditions/letterTradition[@autopsic='109' and @ref='109'] -opus/traditions/letterTradition[@autopsic='10' and @ref='10'] -opus/traditions/letterTradition[@autopsic='1100' and @ref='1107'] -opus/traditions/letterTradition[@autopsic='1101' and @ref='1108'] -opus/traditions/letterTradition[@autopsic='1102' and @ref='1109'] -opus/traditions/letterTradition[@autopsic='1103' and @ref='1110'] -opus/traditions/letterTradition[@autopsic='1104' and @ref='1111'] -opus/traditions/letterTradition[@autopsic='1105' and @ref='1112'] -opus/traditions/letterTradition[@autopsic='1106' and @ref='1113'] -opus/traditions/letterTradition[@autopsic='1107' and @ref='1114'] -opus/traditions/letterTradition[@autopsic='1108' and @ref='1115'] -opus/traditions/letterTradition[@autopsic='1109' and @ref='1116'] -opus/traditions/letterTradition[@autopsic='110' and @ref='110'] -opus/traditions/letterTradition[@autopsic='1110' and @ref='1117'] -opus/traditions/letterTradition[@autopsic='1111' and @ref='1118'] -opus/traditions/letterTradition[@autopsic='1112' and @ref='1119'] -opus/traditions/letterTradition[@autopsic='1113' and @ref='1120'] -opus/traditions/letterTradition[@autopsic='1114' and @ref='1121'] -opus/traditions/letterTradition[@autopsic='1115' and @ref='1122'] -opus/traditions/letterTradition[@autopsic='1116' and @ref='1123'] -opus/traditions/letterTradition[@autopsic='1117' and @ref='1124'] -opus/traditions/letterTradition[@autopsic='1118' and @ref='1125'] -opus/traditions/letterTradition[@autopsic='1119' and @ref='1126'] -opus/traditions/letterTradition[@autopsic='111' and @ref='111'] -opus/traditions/letterTradition[@autopsic='1120' and @ref='1127'] -opus/traditions/letterTradition[@autopsic='1121' and @ref='1128'] -opus/traditions/letterTradition[@autopsic='1122' and @ref='1129'] -opus/traditions/letterTradition[@autopsic='1123' and @ref='1130'] -opus/traditions/letterTradition[@autopsic='1124' and @ref='1131'] -opus/traditions/letterTradition[@autopsic='1125' and @ref='1132'] -opus/traditions/letterTradition[@autopsic='1126' and @ref='1133'] -opus/traditions/letterTradition[@autopsic='1127' and @ref='1134'] -opus/traditions/letterTradition[@autopsic='1128' and @ref='1135'] -opus/traditions/letterTradition[@autopsic='1129' and @ref='1136'] -opus/traditions/letterTradition[@autopsic='112' and @ref='112'] -opus/traditions/letterTradition[@autopsic='1130' and @ref='1137'] -opus/traditions/letterTradition[@autopsic='1131' and @ref='1138'] -opus/traditions/letterTradition[@autopsic='1132' and @ref='1139'] -opus/traditions/letterTradition[@autopsic='1133' and @ref='1140'] -opus/traditions/letterTradition[@autopsic='1134' and @ref='1141'] -opus/traditions/letterTradition[@autopsic='1135' and @ref='1142'] -opus/traditions/letterTradition[@autopsic='1136' and @ref='1143'] -opus/traditions/letterTradition[@autopsic='1137' and @ref='1144'] -opus/traditions/letterTradition[@autopsic='1138' and @ref='1145'] -opus/traditions/letterTradition[@autopsic='1139' and @ref='1146'] -opus/traditions/letterTradition[@autopsic='113' and @ref='113'] -opus/traditions/letterTradition[@autopsic='1140' and @ref='1147'] -opus/traditions/letterTradition[@autopsic='1141' and @ref='1148'] -opus/traditions/letterTradition[@autopsic='1142' and @ref='1149'] -opus/traditions/letterTradition[@autopsic='1143' and @ref='1150'] -opus/traditions/letterTradition[@autopsic='1144' and @ref='1151'] -opus/traditions/letterTradition[@autopsic='1145' and @ref='1152'] -opus/traditions/letterTradition[@autopsic='1146' and @ref='1153'] -opus/traditions/letterTradition[@autopsic='1147' and @ref='1154'] -opus/traditions/letterTradition[@autopsic='1148' and @ref='1155'] -opus/traditions/letterTradition[@autopsic='1149' and @ref='1156'] -opus/traditions/letterTradition[@autopsic='114' and @ref='114'] -opus/traditions/letterTradition[@autopsic='1150' and @ref='1157'] -opus/traditions/letterTradition[@autopsic='1151' and @ref='1158'] -opus/traditions/letterTradition[@autopsic='1152' and @ref='1159'] -opus/traditions/letterTradition[@autopsic='1153' and @ref='1160'] -opus/traditions/letterTradition[@autopsic='1154' and @ref='1161'] -opus/traditions/letterTradition[@autopsic='1155' and @ref='1162'] -opus/traditions/letterTradition[@autopsic='1156' and @ref='1163'] -opus/traditions/letterTradition[@autopsic='1157' and @ref='1164'] -opus/traditions/letterTradition[@autopsic='1158' and @ref='1165'] -opus/traditions/letterTradition[@autopsic='1159' and @ref='1166'] -opus/traditions/letterTradition[@autopsic='115' and @ref='115'] -opus/traditions/letterTradition[@autopsic='1160' and @ref='1167'] -opus/traditions/letterTradition[@autopsic='1161' and @ref='1168'] -opus/traditions/letterTradition[@autopsic='1162' and @ref='1169'] -opus/traditions/letterTradition[@autopsic='1163' and @ref='1170'] -opus/traditions/letterTradition[@autopsic='1164' and @ref='1171'] -opus/traditions/letterTradition[@autopsic='1165' and @ref='1172'] -opus/traditions/letterTradition[@autopsic='1166' and @ref='1173'] -opus/traditions/letterTradition[@autopsic='1167' and @ref='1174'] -opus/traditions/letterTradition[@autopsic='1168' and @ref='1175'] -opus/traditions/letterTradition[@autopsic='1169' and @ref='1176'] -opus/traditions/letterTradition[@autopsic='116' and @ref='116'] -opus/traditions/letterTradition[@autopsic='1170' and @ref='1177'] -opus/traditions/letterTradition[@autopsic='1171' and @ref='1178'] -opus/traditions/letterTradition[@autopsic='1172' and @ref='1179'] -opus/traditions/letterTradition[@autopsic='1173' and @ref='1180'] -opus/traditions/letterTradition[@autopsic='1174' and @ref='1181'] -opus/traditions/letterTradition[@autopsic='1175' and @ref='1182'] -opus/traditions/letterTradition[@autopsic='117' and @ref='117'] -opus/traditions/letterTradition[@autopsic='118' and @ref='118'] -opus/traditions/letterTradition[@autopsic='119' and @ref='119'] -opus/traditions/letterTradition[@autopsic='11' and @ref='11'] -opus/traditions/letterTradition[@autopsic='120' and @ref='120'] -opus/traditions/letterTradition[@autopsic='121' and @ref='121'] -opus/traditions/letterTradition[@autopsic='122' and @ref='122'] -opus/traditions/letterTradition[@autopsic='123' and @ref='123'] -opus/traditions/letterTradition[@autopsic='124' and @ref='124'] -opus/traditions/letterTradition[@autopsic='125' and @ref='125'] -opus/traditions/letterTradition[@autopsic='126' and @ref='126'] -opus/traditions/letterTradition[@autopsic='127' and @ref='127'] -opus/traditions/letterTradition[@autopsic='128' and @ref='128'] -opus/traditions/letterTradition[@autopsic='129' and @ref='129'] -opus/traditions/letterTradition[@autopsic='12' and @ref='12'] -opus/traditions/letterTradition[@autopsic='130' and @ref='130'] -opus/traditions/letterTradition[@autopsic='131' and @ref='131'] -opus/traditions/letterTradition[@autopsic='132' and @ref='132'] -opus/traditions/letterTradition[@autopsic='133' and @ref='133'] -opus/traditions/letterTradition[@autopsic='134' and @ref='134'] -opus/traditions/letterTradition[@autopsic='135' and @ref='135'] -opus/traditions/letterTradition[@autopsic='136' and @ref='136'] -opus/traditions/letterTradition[@autopsic='137' and @ref='137'] -opus/traditions/letterTradition[@autopsic='138' and @ref='138'] -opus/traditions/letterTradition[@autopsic='139' and @ref='139'] -opus/traditions/letterTradition[@autopsic='13' and @ref='13'] -opus/traditions/letterTradition[@autopsic='140' and @ref='140'] -opus/traditions/letterTradition[@autopsic='141' and @ref='141'] -opus/traditions/letterTradition[@autopsic='142' and @ref='142'] -opus/traditions/letterTradition[@autopsic='143' and @ref='143'] -opus/traditions/letterTradition[@autopsic='144' and @ref='144'] -opus/traditions/letterTradition[@autopsic='145' and @ref='145'] -opus/traditions/letterTradition[@autopsic='146' and @ref='146'] -opus/traditions/letterTradition[@autopsic='147' and @ref='147'] -opus/traditions/letterTradition[@autopsic='148' and @ref='148'] -opus/traditions/letterTradition[@autopsic='149' and @ref='149'] -opus/traditions/letterTradition[@autopsic='14' and @ref='14'] -opus/traditions/letterTradition[@autopsic='150' and @ref='150'] -opus/traditions/letterTradition[@autopsic='151' and @ref='151'] -opus/traditions/letterTradition[@autopsic='152' and @ref='152'] -opus/traditions/letterTradition[@autopsic='153' and @ref='153'] -opus/traditions/letterTradition[@autopsic='154' and @ref='154'] -opus/traditions/letterTradition[@autopsic='155' and @ref='155'] -opus/traditions/letterTradition[@autopsic='156' and @ref='156'] -opus/traditions/letterTradition[@autopsic='157' and @ref='157'] -opus/traditions/letterTradition[@autopsic='158' and @ref='158'] -opus/traditions/letterTradition[@autopsic='159' and @ref='159'] -opus/traditions/letterTradition[@autopsic='15' and @ref='15'] -opus/traditions/letterTradition[@autopsic='160' and @ref='160'] -opus/traditions/letterTradition[@autopsic='161' and @ref='161'] -opus/traditions/letterTradition[@autopsic='162' and @ref='162'] -opus/traditions/letterTradition[@autopsic='163' and @ref='163'] -opus/traditions/letterTradition[@autopsic='164' and @ref='164'] -opus/traditions/letterTradition[@autopsic='165' and @ref='165'] -opus/traditions/letterTradition[@autopsic='166' and @ref='166'] -opus/traditions/letterTradition[@autopsic='167' and @ref='167'] -opus/traditions/letterTradition[@autopsic='168' and @ref='168'] -opus/traditions/letterTradition[@autopsic='169' and @ref='169'] -opus/traditions/letterTradition[@autopsic='16' and @ref='16'] -opus/traditions/letterTradition[@autopsic='170' and @ref='170'] -opus/traditions/letterTradition[@autopsic='171' and @ref='171'] -opus/traditions/letterTradition[@autopsic='172' and @ref='172'] -opus/traditions/letterTradition[@autopsic='173' and @ref='173'] -opus/traditions/letterTradition[@autopsic='174' and @ref='174'] -opus/traditions/letterTradition[@autopsic='175' and @ref='175'] -opus/traditions/letterTradition[@autopsic='176' and @ref='176'] -opus/traditions/letterTradition[@autopsic='177' and @ref='177'] -opus/traditions/letterTradition[@autopsic='178' and @ref='178'] -opus/traditions/letterTradition[@autopsic='179' and @ref='179'] -opus/traditions/letterTradition[@autopsic='17' and @ref='17'] -opus/traditions/letterTradition[@autopsic='180' and @ref='180'] -opus/traditions/letterTradition[@autopsic='181' and @ref='181'] -opus/traditions/letterTradition[@autopsic='182' and @ref='182'] -opus/traditions/letterTradition[@autopsic='183' and @ref='183'] -opus/traditions/letterTradition[@autopsic='184' and @ref='184'] -opus/traditions/letterTradition[@autopsic='185' and @ref='185'] -opus/traditions/letterTradition[@autopsic='186' and @ref='186'] -opus/traditions/letterTradition[@autopsic='187' and @ref='187'] -opus/traditions/letterTradition[@autopsic='188' and @ref='188'] -opus/traditions/letterTradition[@autopsic='189' and @ref='189'] -opus/traditions/letterTradition[@autopsic='18' and @ref='18'] -opus/traditions/letterTradition[@autopsic='190a' and @ref='1183'] -opus/traditions/letterTradition[@autopsic='190' and @ref='190'] -opus/traditions/letterTradition[@autopsic='191' and @ref='191'] -opus/traditions/letterTradition[@autopsic='192' and @ref='192'] -opus/traditions/letterTradition[@autopsic='193' and @ref='193'] -opus/traditions/letterTradition[@autopsic='194' and @ref='194'] -opus/traditions/letterTradition[@autopsic='195' and @ref='195'] -opus/traditions/letterTradition[@autopsic='196' and @ref='196'] -opus/traditions/letterTradition[@autopsic='197' and @ref='197'] -opus/traditions/letterTradition[@autopsic='198' and @ref='198'] -opus/traditions/letterTradition[@autopsic='199' and @ref='199'] -opus/traditions/letterTradition[@autopsic='19' and @ref='19'] -opus/traditions/letterTradition[@autopsic='1' and @ref='1'] -opus/traditions/letterTradition[@autopsic='200' and @ref='200'] -opus/traditions/letterTradition[@autopsic='201' and @ref='201'] -opus/traditions/letterTradition[@autopsic='202' and @ref='202'] -opus/traditions/letterTradition[@autopsic='203' and @ref='203'] -opus/traditions/letterTradition[@autopsic='204' and @ref='204'] -opus/traditions/letterTradition[@autopsic='205' and @ref='205'] -opus/traditions/letterTradition[@autopsic='206' and @ref='206'] -opus/traditions/letterTradition[@autopsic='207' and @ref='207'] -opus/traditions/letterTradition[@autopsic='208' and @ref='208'] -opus/traditions/letterTradition[@autopsic='209' and @ref='209'] -opus/traditions/letterTradition[@autopsic='20' and @ref='20'] -opus/traditions/letterTradition[@autopsic='210' and @ref='210'] -opus/traditions/letterTradition[@autopsic='211' and @ref='211'] -opus/traditions/letterTradition[@autopsic='212' and @ref='212'] -opus/traditions/letterTradition[@autopsic='213' and @ref='213'] -opus/traditions/letterTradition[@autopsic='214' and @ref='214'] -opus/traditions/letterTradition[@autopsic='215' and @ref='215'] -opus/traditions/letterTradition[@autopsic='216' and @ref='216'] -opus/traditions/letterTradition[@autopsic='217' and @ref='217'] -opus/traditions/letterTradition[@autopsic='218' and @ref='218'] -opus/traditions/letterTradition[@autopsic='219' and @ref='219'] -opus/traditions/letterTradition[@autopsic='21' and @ref='21'] -opus/traditions/letterTradition[@autopsic='220' and @ref='220'] -opus/traditions/letterTradition[@autopsic='221' and @ref='221'] -opus/traditions/letterTradition[@autopsic='222' and @ref='222'] -opus/traditions/letterTradition[@autopsic='223' and @ref='223'] -opus/traditions/letterTradition[@autopsic='224' and @ref='224'] -opus/traditions/letterTradition[@autopsic='225' and @ref='225'] -opus/traditions/letterTradition[@autopsic='226' and @ref='226'] -opus/traditions/letterTradition[@autopsic='227' and @ref='227'] -opus/traditions/letterTradition[@autopsic='228' and @ref='228'] -opus/traditions/letterTradition[@autopsic='229' and @ref='229'] -opus/traditions/letterTradition[@autopsic='22' and @ref='22'] -opus/traditions/letterTradition[@autopsic='230' and @ref='230'] -opus/traditions/letterTradition[@autopsic='231' and @ref='231'] -opus/traditions/letterTradition[@autopsic='232' and @ref='232'] -opus/traditions/letterTradition[@autopsic='233' and @ref='233'] -opus/traditions/letterTradition[@autopsic='234' and @ref='234'] -opus/traditions/letterTradition[@autopsic='235' and @ref='235'] -opus/traditions/letterTradition[@autopsic='236' and @ref='236'] -opus/traditions/letterTradition[@autopsic='237' and @ref='237'] -opus/traditions/letterTradition[@autopsic='238' and @ref='238'] -opus/traditions/letterTradition[@autopsic='239' and @ref='239'] -opus/traditions/letterTradition[@autopsic='23' and @ref='23'] -opus/traditions/letterTradition[@autopsic='240' and @ref='240'] -opus/traditions/letterTradition[@autopsic='241' and @ref='241'] -opus/traditions/letterTradition[@autopsic='242' and @ref='242'] -opus/traditions/letterTradition[@autopsic='243' and @ref='243'] -opus/traditions/letterTradition[@autopsic='244' and @ref='244'] -opus/traditions/letterTradition[@autopsic='245' and @ref='245'] -opus/traditions/letterTradition[@autopsic='246' and @ref='246'] -opus/traditions/letterTradition[@autopsic='247' and @ref='247'] -opus/traditions/letterTradition[@autopsic='248' and @ref='248'] -opus/traditions/letterTradition[@autopsic='249' and @ref='249'] -opus/traditions/letterTradition[@autopsic='24' and @ref='24'] -opus/traditions/letterTradition[@autopsic='250' and @ref='250'] -opus/traditions/letterTradition[@autopsic='251' and @ref='251'] -opus/traditions/letterTradition[@autopsic='252' and @ref='252'] -opus/traditions/letterTradition[@autopsic='253' and @ref='253'] -opus/traditions/letterTradition[@autopsic='254a' and @ref='1187'] -opus/traditions/letterTradition[@autopsic='254' and @ref='254'] -opus/traditions/letterTradition[@autopsic='255a' and @ref='1188'] -opus/traditions/letterTradition[@autopsic='255' and @ref='255'] -opus/traditions/letterTradition[@autopsic='256' and @ref='256'] -opus/traditions/letterTradition[@autopsic='257' and @ref='257'] -opus/traditions/letterTradition[@autopsic='258' and @ref='258'] -opus/traditions/letterTradition[@autopsic='259' and @ref='259'] -opus/traditions/letterTradition[@autopsic='25' and @ref='25'] -opus/traditions/letterTradition[@autopsic='260' and @ref='260'] -opus/traditions/letterTradition[@autopsic='261' and @ref='261'] -opus/traditions/letterTradition[@autopsic='262' and @ref='262'] -opus/traditions/letterTradition[@autopsic='263' and @ref='263'] -opus/traditions/letterTradition[@autopsic='264' and @ref='264'] -opus/traditions/letterTradition[@autopsic='265' and @ref='265'] -opus/traditions/letterTradition[@autopsic='266' and @ref='266'] -opus/traditions/letterTradition[@autopsic='267' and @ref='267'] -opus/traditions/letterTradition[@autopsic='268' and @ref='268'] -opus/traditions/letterTradition[@autopsic='269' and @ref='269'] -opus/traditions/letterTradition[@autopsic='26' and @ref='26'] -opus/traditions/letterTradition[@autopsic='270' and @ref='270'] -opus/traditions/letterTradition[@autopsic='271' and @ref='271'] -opus/traditions/letterTradition[@autopsic='272a' and @ref='1189'] -opus/traditions/letterTradition[@autopsic='272' and @ref='272'] -opus/traditions/letterTradition[@autopsic='273' and @ref='273'] -opus/traditions/letterTradition[@autopsic='274' and @ref='274'] -opus/traditions/letterTradition[@autopsic='275' and @ref='275'] -opus/traditions/letterTradition[@autopsic='276' and @ref='276'] -opus/traditions/letterTradition[@autopsic='277' and @ref='277'] -opus/traditions/letterTradition[@autopsic='278' and @ref='278'] -opus/traditions/letterTradition[@autopsic='279' and @ref='279'] -opus/traditions/letterTradition[@autopsic='27' and @ref='27'] -opus/traditions/letterTradition[@autopsic='280' and @ref='280'] -opus/traditions/letterTradition[@autopsic='281' and @ref='281'] -opus/traditions/letterTradition[@autopsic='282' and @ref='282'] -opus/traditions/letterTradition[@autopsic='283' and @ref='283'] -opus/traditions/letterTradition[@autopsic='284' and @ref='284'] -opus/traditions/letterTradition[@autopsic='285' and @ref='285'] -opus/traditions/letterTradition[@autopsic='286' and @ref='286'] -opus/traditions/letterTradition[@autopsic='287' and @ref='287'] -opus/traditions/letterTradition[@autopsic='288' and @ref='288'] -opus/traditions/letterTradition[@autopsic='289' and @ref='289'] -opus/traditions/letterTradition[@autopsic='28' and @ref='28'] -opus/traditions/letterTradition[@autopsic='290' and @ref='290'] -opus/traditions/letterTradition[@autopsic='291' and @ref='291'] -opus/traditions/letterTradition[@autopsic='292' and @ref='292'] -opus/traditions/letterTradition[@autopsic='293' and @ref='293'] -opus/traditions/letterTradition[@autopsic='294' and @ref='294'] -opus/traditions/letterTradition[@autopsic='295' and @ref='295'] -opus/traditions/letterTradition[@autopsic='296' and @ref='296'] -opus/traditions/letterTradition[@autopsic='297' and @ref='297'] -opus/traditions/letterTradition[@autopsic='298' and @ref='298'] -opus/traditions/letterTradition[@autopsic='299' and @ref='299'] -opus/traditions/letterTradition[@autopsic='29' and @ref='29'] -opus/traditions/letterTradition[@autopsic='2' and @ref='2'] -opus/traditions/letterTradition[@autopsic='300' and @ref='300'] -opus/traditions/letterTradition[@autopsic='301' and @ref='301'] -opus/traditions/letterTradition[@autopsic='302' and @ref='302'] -opus/traditions/letterTradition[@autopsic='303' and @ref='303'] -opus/traditions/letterTradition[@autopsic='304' and @ref='304'] -opus/traditions/letterTradition[@autopsic='305' and @ref='305'] -opus/traditions/letterTradition[@autopsic='306' and @ref='306'] -opus/traditions/letterTradition[@autopsic='307' and @ref='307'] -opus/traditions/letterTradition[@autopsic='308' and @ref='308'] -opus/traditions/letterTradition[@autopsic='309' and @ref='309'] -opus/traditions/letterTradition[@autopsic='30' and @ref='30'] -opus/traditions/letterTradition[@autopsic='310' and @ref='310'] -opus/traditions/letterTradition[@autopsic='311' and @ref='311'] -opus/traditions/letterTradition[@autopsic='312' and @ref='312'] -opus/traditions/letterTradition[@autopsic='313' and @ref='313'] -opus/traditions/letterTradition[@autopsic='314' and @ref='314'] -opus/traditions/letterTradition[@autopsic='315' and @ref='315'] -opus/traditions/letterTradition[@autopsic='316' and @ref='316'] -opus/traditions/letterTradition[@autopsic='317' and @ref='317'] -opus/traditions/letterTradition[@autopsic='318' and @ref='318'] -opus/traditions/letterTradition[@autopsic='319' and @ref='319'] -opus/traditions/letterTradition[@autopsic='31' and @ref='31'] -opus/traditions/letterTradition[@autopsic='320' and @ref='320'] -opus/traditions/letterTradition[@autopsic='321' and @ref='321'] -opus/traditions/letterTradition[@autopsic='322' and @ref='322'] -opus/traditions/letterTradition[@autopsic='323' and @ref='323'] -opus/traditions/letterTradition[@autopsic='324' and @ref='324'] -opus/traditions/letterTradition[@autopsic='325' and @ref='325'] -opus/traditions/letterTradition[@autopsic='326' and @ref='326'] -opus/traditions/letterTradition[@autopsic='327' and @ref='327'] -opus/traditions/letterTradition[@autopsic='328' and @ref='328'] -opus/traditions/letterTradition[@autopsic='329' and @ref='329'] -opus/traditions/letterTradition[@autopsic='32' and @ref='32'] -opus/traditions/letterTradition[@autopsic='330' and @ref='330'] -opus/traditions/letterTradition[@autopsic='331' and @ref='331'] -opus/traditions/letterTradition[@autopsic='332' and @ref='332'] -opus/traditions/letterTradition[@autopsic='333' and @ref='333'] -opus/traditions/letterTradition[@autopsic='334' and @ref='334'] -opus/traditions/letterTradition[@autopsic='335' and @ref='335'] -opus/traditions/letterTradition[@autopsic='336' and @ref='336'] -opus/traditions/letterTradition[@autopsic='337' and @ref='337'] -opus/traditions/letterTradition[@autopsic='338' and @ref='338'] -opus/traditions/letterTradition[@autopsic='339' and @ref='339'] -opus/traditions/letterTradition[@autopsic='33' and @ref='33'] -opus/traditions/letterTradition[@autopsic='340' and @ref='340'] -opus/traditions/letterTradition[@autopsic='341' and @ref='341'] -opus/traditions/letterTradition[@autopsic='342' and @ref='342'] -opus/traditions/letterTradition[@autopsic='343' and @ref='343'] -opus/traditions/letterTradition[@autopsic='344' and @ref='344'] -opus/traditions/letterTradition[@autopsic='345' and @ref='345'] -opus/traditions/letterTradition[@autopsic='346' and @ref='346'] -opus/traditions/letterTradition[@autopsic='347' and @ref='347'] -opus/traditions/letterTradition[@autopsic='348' and @ref='348'] -opus/traditions/letterTradition[@autopsic='349' and @ref='349'] -opus/traditions/letterTradition[@autopsic='34' and @ref='34'] -opus/traditions/letterTradition[@autopsic='350' and @ref='350'] -opus/traditions/letterTradition[@autopsic='351' and @ref='351'] -opus/traditions/letterTradition[@autopsic='352' and @ref='352'] -opus/traditions/letterTradition[@autopsic='353' and @ref='353'] -opus/traditions/letterTradition[@autopsic='354' and @ref='354'] -opus/traditions/letterTradition[@autopsic='355' and @ref='355'] -opus/traditions/letterTradition[@autopsic='356' and @ref='356'] -opus/traditions/letterTradition[@autopsic='357' and @ref='357'] -opus/traditions/letterTradition[@autopsic='358' and @ref='358'] -opus/traditions/letterTradition[@autopsic='359' and @ref='359'] -opus/traditions/letterTradition[@autopsic='35' and @ref='35'] -opus/traditions/letterTradition[@autopsic='360' and @ref='360'] -opus/traditions/letterTradition[@autopsic='361' and @ref='361'] -opus/traditions/letterTradition[@autopsic='362' and @ref='362'] -opus/traditions/letterTradition[@autopsic='363' and @ref='363'] -opus/traditions/letterTradition[@autopsic='364' and @ref='364'] -opus/traditions/letterTradition[@autopsic='365' and @ref='365'] -opus/traditions/letterTradition[@autopsic='366' and @ref='366'] -opus/traditions/letterTradition[@autopsic='367' and @ref='367'] -opus/traditions/letterTradition[@autopsic='368a' and @ref='369'] -opus/traditions/letterTradition[@autopsic='368' and @ref='368'] -opus/traditions/letterTradition[@autopsic='369' and @ref='370'] -opus/traditions/letterTradition[@autopsic='36' and @ref='36'] -opus/traditions/letterTradition[@autopsic='370' and @ref='371'] -opus/traditions/letterTradition[@autopsic='371' and @ref='372'] -opus/traditions/letterTradition[@autopsic='372' and @ref='373'] -opus/traditions/letterTradition[@autopsic='373' and @ref='374'] -opus/traditions/letterTradition[@autopsic='374' and @ref='375'] -opus/traditions/letterTradition[@autopsic='375' and @ref='376'] -opus/traditions/letterTradition[@autopsic='376' and @ref='377'] -opus/traditions/letterTradition[@autopsic='377' and @ref='378'] -opus/traditions/letterTradition[@autopsic='378' and @ref='379'] -opus/traditions/letterTradition[@autopsic='379' and @ref='380'] -opus/traditions/letterTradition[@autopsic='37' and @ref='37'] -opus/traditions/letterTradition[@autopsic='380' and @ref='381'] -opus/traditions/letterTradition[@autopsic='381' and @ref='382'] -opus/traditions/letterTradition[@autopsic='382' and @ref='383'] -opus/traditions/letterTradition[@autopsic='383' and @ref='384'] -opus/traditions/letterTradition[@autopsic='384' and @ref='385'] -opus/traditions/letterTradition[@autopsic='385' and @ref='386'] -opus/traditions/letterTradition[@autopsic='386' and @ref='387'] -opus/traditions/letterTradition[@autopsic='387' and @ref='388'] -opus/traditions/letterTradition[@autopsic='388' and @ref='389'] -opus/traditions/letterTradition[@autopsic='389' and @ref='390'] -opus/traditions/letterTradition[@autopsic='38' and @ref='38'] -opus/traditions/letterTradition[@autopsic='390' and @ref='391'] -opus/traditions/letterTradition[@autopsic='391' and @ref='392'] -opus/traditions/letterTradition[@autopsic='392' and @ref='393'] -opus/traditions/letterTradition[@autopsic='393' and @ref='394'] -opus/traditions/letterTradition[@autopsic='394' and @ref='395'] -opus/traditions/letterTradition[@autopsic='395' and @ref='396'] -opus/traditions/letterTradition[@autopsic='396' and @ref='397'] -opus/traditions/letterTradition[@autopsic='397' and @ref='398'] -opus/traditions/letterTradition[@autopsic='398a' and @ref='1191'] -opus/traditions/letterTradition[@autopsic='398' and @ref='399'] -opus/traditions/letterTradition[@autopsic='399' and @ref='400'] -opus/traditions/letterTradition[@autopsic='39' and @ref='39'] -opus/traditions/letterTradition[@autopsic='3' and @ref='3'] -opus/traditions/letterTradition[@autopsic='400' and @ref='401'] -opus/traditions/letterTradition[@autopsic='401' and @ref='402'] -opus/traditions/letterTradition[@autopsic='402' and @ref='403'] -opus/traditions/letterTradition[@autopsic='403' and @ref='404'] -opus/traditions/letterTradition[@autopsic='404' and @ref='405'] -opus/traditions/letterTradition[@autopsic='405' and @ref='406'] -opus/traditions/letterTradition[@autopsic='406' and @ref='407'] -opus/traditions/letterTradition[@autopsic='407' and @ref='408'] -opus/traditions/letterTradition[@autopsic='408' and @ref='409'] -opus/traditions/letterTradition[@autopsic='409' and @ref='410'] -opus/traditions/letterTradition[@autopsic='40' and @ref='40'] -opus/traditions/letterTradition[@autopsic='410' and @ref='411'] -opus/traditions/letterTradition[@autopsic='411' and @ref='412'] -opus/traditions/letterTradition[@autopsic='412' and @ref='413'] -opus/traditions/letterTradition[@autopsic='413' and @ref='414'] -opus/traditions/letterTradition[@autopsic='414' and @ref='415'] -opus/traditions/letterTradition[@autopsic='415' and @ref='416'] -opus/traditions/letterTradition[@autopsic='416' and @ref='417'] -opus/traditions/letterTradition[@autopsic='417' and @ref='418'] -opus/traditions/letterTradition[@autopsic='418' and @ref='419'] -opus/traditions/letterTradition[@autopsic='419' and @ref='420'] -opus/traditions/letterTradition[@autopsic='41' and @ref='41'] -opus/traditions/letterTradition[@autopsic='420' and @ref='421'] -opus/traditions/letterTradition[@autopsic='421' and @ref='422'] -opus/traditions/letterTradition[@autopsic='422' and @ref='423'] -opus/traditions/letterTradition[@autopsic='423' and @ref='424'] -opus/traditions/letterTradition[@autopsic='424' and @ref='425'] -opus/traditions/letterTradition[@autopsic='425' and @ref='426'] -opus/traditions/letterTradition[@autopsic='426' and @ref='427'] -opus/traditions/letterTradition[@autopsic='427' and @ref='428'] -opus/traditions/letterTradition[@autopsic='428' and @ref='429'] -opus/traditions/letterTradition[@autopsic='429' and @ref='430'] -opus/traditions/letterTradition[@autopsic='42' and @ref='42'] -opus/traditions/letterTradition[@autopsic='430' and @ref='431'] -opus/traditions/letterTradition[@autopsic='431' and @ref='432'] -opus/traditions/letterTradition[@autopsic='432' and @ref='433'] -opus/traditions/letterTradition[@autopsic='433' and @ref='434'] -opus/traditions/letterTradition[@autopsic='434' and @ref='435'] -opus/traditions/letterTradition[@autopsic='435' and @ref='436'] -opus/traditions/letterTradition[@autopsic='436' and @ref='437'] -opus/traditions/letterTradition[@autopsic='437' and @ref='438'] -opus/traditions/letterTradition[@autopsic='438' and @ref='439'] -opus/traditions/letterTradition[@autopsic='439' and @ref='440'] -opus/traditions/letterTradition[@autopsic='43' and @ref='43'] -opus/traditions/letterTradition[@autopsic='440' and @ref='441'] -opus/traditions/letterTradition[@autopsic='441' and @ref='442'] -opus/traditions/letterTradition[@autopsic='442' and @ref='443'] -opus/traditions/letterTradition[@autopsic='443' and @ref='444'] -opus/traditions/letterTradition[@autopsic='444' and @ref='445'] -opus/traditions/letterTradition[@autopsic='445' and @ref='446'] -opus/traditions/letterTradition[@autopsic='446' and @ref='447'] -opus/traditions/letterTradition[@autopsic='447' and @ref='448'] -opus/traditions/letterTradition[@autopsic='448' and @ref='449'] -opus/traditions/letterTradition[@autopsic='449' and @ref='450'] -opus/traditions/letterTradition[@autopsic='44' and @ref='44'] -opus/traditions/letterTradition[@autopsic='450' and @ref='451'] -opus/traditions/letterTradition[@autopsic='451' and @ref='452'] -opus/traditions/letterTradition[@autopsic='452' and @ref='453'] -opus/traditions/letterTradition[@autopsic='453' and @ref='454'] -opus/traditions/letterTradition[@autopsic='454' and @ref='455'] -opus/traditions/letterTradition[@autopsic='455' and @ref='456'] -opus/traditions/letterTradition[@autopsic='456' and @ref='457'] -opus/traditions/letterTradition[@autopsic='457' and @ref='458'] -opus/traditions/letterTradition[@autopsic='458' and @ref='459'] -opus/traditions/letterTradition[@autopsic='459' and @ref='460'] -opus/traditions/letterTradition[@autopsic='45' and @ref='45'] -opus/traditions/letterTradition[@autopsic='460' and @ref='461'] -opus/traditions/letterTradition[@autopsic='461' and @ref='462'] -opus/traditions/letterTradition[@autopsic='462' and @ref='463'] -opus/traditions/letterTradition[@autopsic='463' and @ref='464'] -opus/traditions/letterTradition[@autopsic='464' and @ref='465'] -opus/traditions/letterTradition[@autopsic='465a' and @ref='467'] -opus/traditions/letterTradition[@autopsic='465' and @ref='466'] -opus/traditions/letterTradition[@autopsic='466' and @ref='468'] -opus/traditions/letterTradition[@autopsic='467' and @ref='469'] -opus/traditions/letterTradition[@autopsic='468' and @ref='470'] -opus/traditions/letterTradition[@autopsic='469' and @ref='471'] -opus/traditions/letterTradition[@autopsic='46' and @ref='46'] -opus/traditions/letterTradition[@autopsic='470a' and @ref='473'] -opus/traditions/letterTradition[@autopsic='470' and @ref='472'] -opus/traditions/letterTradition[@autopsic='471' and @ref='474'] -opus/traditions/letterTradition[@autopsic='472' and @ref='475'] -opus/traditions/letterTradition[@autopsic='473' and @ref='476'] -opus/traditions/letterTradition[@autopsic='474' and @ref='477'] -opus/traditions/letterTradition[@autopsic='475' and @ref='478'] -opus/traditions/letterTradition[@autopsic='476' and @ref='479'] -opus/traditions/letterTradition[@autopsic='477' and @ref='480'] -opus/traditions/letterTradition[@autopsic='478' and @ref='481'] -opus/traditions/letterTradition[@autopsic='479' and @ref='482'] -opus/traditions/letterTradition[@autopsic='47' and @ref='47'] -opus/traditions/letterTradition[@autopsic='480' and @ref='483'] -opus/traditions/letterTradition[@autopsic='481' and @ref='484'] -opus/traditions/letterTradition[@autopsic='482' and @ref='485'] -opus/traditions/letterTradition[@autopsic='483' and @ref='486'] -opus/traditions/letterTradition[@autopsic='484' and @ref='487'] -opus/traditions/letterTradition[@autopsic='485' and @ref='488'] -opus/traditions/letterTradition[@autopsic='486' and @ref='489'] -opus/traditions/letterTradition[@autopsic='487' and @ref='490'] -opus/traditions/letterTradition[@autopsic='488' and @ref='491'] -opus/traditions/letterTradition[@autopsic='489' and @ref='492'] -opus/traditions/letterTradition[@autopsic='48' and @ref='48'] -opus/traditions/letterTradition[@autopsic='490' and @ref='493'] -opus/traditions/letterTradition[@autopsic='491a' and @ref='495'] -opus/traditions/letterTradition[@autopsic='491' and @ref='494'] -opus/traditions/letterTradition[@autopsic='492' and @ref='496'] -opus/traditions/letterTradition[@autopsic='493' and @ref='497'] -opus/traditions/letterTradition[@autopsic='494' and @ref='498'] -opus/traditions/letterTradition[@autopsic='495' and @ref='499'] -opus/traditions/letterTradition[@autopsic='496' and @ref='500'] -opus/traditions/letterTradition[@autopsic='497' and @ref='501'] -opus/traditions/letterTradition[@autopsic='498' and @ref='502'] -opus/traditions/letterTradition[@autopsic='499' and @ref='503'] -opus/traditions/letterTradition[@autopsic='49' and @ref='49'] -opus/traditions/letterTradition[@autopsic='4' and @ref='4'] -opus/traditions/letterTradition[@autopsic='500' and @ref='504'] -opus/traditions/letterTradition[@autopsic='501' and @ref='505'] -opus/traditions/letterTradition[@autopsic='502' and @ref='506'] -opus/traditions/letterTradition[@autopsic='503' and @ref='507'] -opus/traditions/letterTradition[@autopsic='504' and @ref='508'] -opus/traditions/letterTradition[@autopsic='505' and @ref='509'] -opus/traditions/letterTradition[@autopsic='506' and @ref='510'] -opus/traditions/letterTradition[@autopsic='507a' and @ref='512'] -opus/traditions/letterTradition[@autopsic='507' and @ref='511'] -opus/traditions/letterTradition[@autopsic='508' and @ref='513'] -opus/traditions/letterTradition[@autopsic='509a' and @ref='1185'] -opus/traditions/letterTradition[@autopsic='509' and @ref='514'] -opus/traditions/letterTradition[@autopsic='50' and @ref='50'] -opus/traditions/letterTradition[@autopsic='510' and @ref='515'] -opus/traditions/letterTradition[@autopsic='511' and @ref='516'] -opus/traditions/letterTradition[@autopsic='512' and @ref='517'] -opus/traditions/letterTradition[@autopsic='513' and @ref='518'] -opus/traditions/letterTradition[@autopsic='514' and @ref='519'] -opus/traditions/letterTradition[@autopsic='515' and @ref='520'] -opus/traditions/letterTradition[@autopsic='516a' and @ref='522'] -opus/traditions/letterTradition[@autopsic='516' and @ref='521'] -opus/traditions/letterTradition[@autopsic='517' and @ref='523'] -opus/traditions/letterTradition[@autopsic='518' and @ref='524'] -opus/traditions/letterTradition[@autopsic='519' and @ref='525'] -opus/traditions/letterTradition[@autopsic='51' and @ref='51'] -opus/traditions/letterTradition[@autopsic='520' and @ref='526'] -opus/traditions/letterTradition[@autopsic='521' and @ref='527'] -opus/traditions/letterTradition[@autopsic='522' and @ref='528'] -opus/traditions/letterTradition[@autopsic='523' and @ref='529'] -opus/traditions/letterTradition[@autopsic='524' and @ref='530'] -opus/traditions/letterTradition[@autopsic='525' and @ref='531'] -opus/traditions/letterTradition[@autopsic='526' and @ref='532'] -opus/traditions/letterTradition[@autopsic='527' and @ref='533'] -opus/traditions/letterTradition[@autopsic='528' and @ref='534'] -opus/traditions/letterTradition[@autopsic='529' and @ref='535'] -opus/traditions/letterTradition[@autopsic='52' and @ref='52'] -opus/traditions/letterTradition[@autopsic='530' and @ref='536'] -opus/traditions/letterTradition[@autopsic='531' and @ref='537'] -opus/traditions/letterTradition[@autopsic='532a' and @ref='1186'] -opus/traditions/letterTradition[@autopsic='532' and @ref='538'] -opus/traditions/letterTradition[@autopsic='533' and @ref='539'] -opus/traditions/letterTradition[@autopsic='534' and @ref='540'] -opus/traditions/letterTradition[@autopsic='535' and @ref='541'] -opus/traditions/letterTradition[@autopsic='536' and @ref='542'] -opus/traditions/letterTradition[@autopsic='537' and @ref='543'] -opus/traditions/letterTradition[@autopsic='538' and @ref='544'] -opus/traditions/letterTradition[@autopsic='539' and @ref='545'] -opus/traditions/letterTradition[@autopsic='53' and @ref='53'] -opus/traditions/letterTradition[@autopsic='540' and @ref='546'] -opus/traditions/letterTradition[@autopsic='541' and @ref='547'] -opus/traditions/letterTradition[@autopsic='542' and @ref='548'] -opus/traditions/letterTradition[@autopsic='543' and @ref='549'] -opus/traditions/letterTradition[@autopsic='544' and @ref='550'] -opus/traditions/letterTradition[@autopsic='545' and @ref='551'] -opus/traditions/letterTradition[@autopsic='546' and @ref='552'] -opus/traditions/letterTradition[@autopsic='547' and @ref='553'] -opus/traditions/letterTradition[@autopsic='548' and @ref='554'] -opus/traditions/letterTradition[@autopsic='549' and @ref='555'] -opus/traditions/letterTradition[@autopsic='54' and @ref='54'] -opus/traditions/letterTradition[@autopsic='550' and @ref='556'] -opus/traditions/letterTradition[@autopsic='551' and @ref='557'] -opus/traditions/letterTradition[@autopsic='552a' and @ref='1184'] -opus/traditions/letterTradition[@autopsic='552' and @ref='558'] -opus/traditions/letterTradition[@autopsic='553' and @ref='559'] -opus/traditions/letterTradition[@autopsic='554' and @ref='560'] -opus/traditions/letterTradition[@autopsic='555' and @ref='561'] -opus/traditions/letterTradition[@autopsic='556' and @ref='562'] -opus/traditions/letterTradition[@autopsic='557' and @ref='563'] -opus/traditions/letterTradition[@autopsic='558' and @ref='564'] -opus/traditions/letterTradition[@autopsic='559' and @ref='565'] -opus/traditions/letterTradition[@autopsic='55' and @ref='55'] -opus/traditions/letterTradition[@autopsic='560' and @ref='566'] -opus/traditions/letterTradition[@autopsic='561' and @ref='567'] -opus/traditions/letterTradition[@autopsic='562' and @ref='568'] -opus/traditions/letterTradition[@autopsic='563' and @ref='569'] -opus/traditions/letterTradition[@autopsic='564' and @ref='570'] -opus/traditions/letterTradition[@autopsic='565' and @ref='571'] -opus/traditions/letterTradition[@autopsic='566' and @ref='572'] -opus/traditions/letterTradition[@autopsic='567' and @ref='573'] -opus/traditions/letterTradition[@autopsic='568' and @ref='574'] -opus/traditions/letterTradition[@autopsic='569' and @ref='575'] -opus/traditions/letterTradition[@autopsic='56' and @ref='56'] -opus/traditions/letterTradition[@autopsic='570' and @ref='576'] -opus/traditions/letterTradition[@autopsic='571' and @ref='577'] -opus/traditions/letterTradition[@autopsic='572' and @ref='578'] -opus/traditions/letterTradition[@autopsic='573' and @ref='579'] -opus/traditions/letterTradition[@autopsic='574' and @ref='580'] -opus/traditions/letterTradition[@autopsic='575' and @ref='581'] -opus/traditions/letterTradition[@autopsic='576' and @ref='582'] -opus/traditions/letterTradition[@autopsic='577' and @ref='583'] -opus/traditions/letterTradition[@autopsic='578' and @ref='584'] -opus/traditions/letterTradition[@autopsic='579' and @ref='585'] -opus/traditions/letterTradition[@autopsic='57' and @ref='57'] -opus/traditions/letterTradition[@autopsic='580' and @ref='586'] -opus/traditions/letterTradition[@autopsic='581' and @ref='587'] -opus/traditions/letterTradition[@autopsic='582' and @ref='588'] -opus/traditions/letterTradition[@autopsic='583' and @ref='589'] -opus/traditions/letterTradition[@autopsic='584' and @ref='590'] -opus/traditions/letterTradition[@autopsic='585' and @ref='591'] -opus/traditions/letterTradition[@autopsic='586' and @ref='592'] -opus/traditions/letterTradition[@autopsic='587' and @ref='593'] -opus/traditions/letterTradition[@autopsic='588' and @ref='594'] -opus/traditions/letterTradition[@autopsic='589' and @ref='595'] -opus/traditions/letterTradition[@autopsic='58' and @ref='58'] -opus/traditions/letterTradition[@autopsic='590' and @ref='596'] -opus/traditions/letterTradition[@autopsic='591' and @ref='597'] -opus/traditions/letterTradition[@autopsic='592' and @ref='598'] -opus/traditions/letterTradition[@autopsic='593' and @ref='599'] -opus/traditions/letterTradition[@autopsic='594' and @ref='600'] -opus/traditions/letterTradition[@autopsic='595' and @ref='601'] -opus/traditions/letterTradition[@autopsic='596' and @ref='602'] -opus/traditions/letterTradition[@autopsic='597' and @ref='603'] -opus/traditions/letterTradition[@autopsic='598' and @ref='604'] -opus/traditions/letterTradition[@autopsic='599' and @ref='605'] -opus/traditions/letterTradition[@autopsic='59' and @ref='59'] -opus/traditions/letterTradition[@autopsic='5' and @ref='5'] -opus/traditions/letterTradition[@autopsic='600' and @ref='606'] -opus/traditions/letterTradition[@autopsic='601' and @ref='607'] -opus/traditions/letterTradition[@autopsic='602' and @ref='608'] -opus/traditions/letterTradition[@autopsic='603' and @ref='609'] -opus/traditions/letterTradition[@autopsic='604' and @ref='610'] -opus/traditions/letterTradition[@autopsic='605' and @ref='611'] -opus/traditions/letterTradition[@autopsic='606' and @ref='612'] -opus/traditions/letterTradition[@autopsic='607' and @ref='613'] -opus/traditions/letterTradition[@autopsic='608' and @ref='614'] -opus/traditions/letterTradition[@autopsic='609' and @ref='615'] -opus/traditions/letterTradition[@autopsic='60' and @ref='60'] -opus/traditions/letterTradition[@autopsic='610' and @ref='616'] -opus/traditions/letterTradition[@autopsic='611' and @ref='617'] -opus/traditions/letterTradition[@autopsic='612' and @ref='618'] -opus/traditions/letterTradition[@autopsic='613' and @ref='619'] -opus/traditions/letterTradition[@autopsic='614' and @ref='620'] -opus/traditions/letterTradition[@autopsic='615' and @ref='621'] -opus/traditions/letterTradition[@autopsic='616' and @ref='622'] -opus/traditions/letterTradition[@autopsic='617' and @ref='623'] -opus/traditions/letterTradition[@autopsic='618' and @ref='624'] -opus/traditions/letterTradition[@autopsic='619' and @ref='625'] -opus/traditions/letterTradition[@autopsic='61' and @ref='61'] -opus/traditions/letterTradition[@autopsic='620' and @ref='626'] -opus/traditions/letterTradition[@autopsic='621' and @ref='627'] -opus/traditions/letterTradition[@autopsic='622' and @ref='628'] -opus/traditions/letterTradition[@autopsic='623' and @ref='629'] -opus/traditions/letterTradition[@autopsic='624' and @ref='630'] -opus/traditions/letterTradition[@autopsic='625' and @ref='631'] -opus/traditions/letterTradition[@autopsic='626' and @ref='632'] -opus/traditions/letterTradition[@autopsic='627' and @ref='633'] -opus/traditions/letterTradition[@autopsic='628' and @ref='634'] -opus/traditions/letterTradition[@autopsic='629' and @ref='635'] -opus/traditions/letterTradition[@autopsic='62' and @ref='62'] -opus/traditions/letterTradition[@autopsic='630' and @ref='636'] -opus/traditions/letterTradition[@autopsic='631' and @ref='637'] -opus/traditions/letterTradition[@autopsic='632' and @ref='638'] -opus/traditions/letterTradition[@autopsic='633' and @ref='639'] -opus/traditions/letterTradition[@autopsic='634' and @ref='640'] -opus/traditions/letterTradition[@autopsic='635' and @ref='641'] -opus/traditions/letterTradition[@autopsic='636' and @ref='642'] -opus/traditions/letterTradition[@autopsic='637' and @ref='643'] -opus/traditions/letterTradition[@autopsic='638' and @ref='644'] -opus/traditions/letterTradition[@autopsic='639' and @ref='645'] -opus/traditions/letterTradition[@autopsic='63' and @ref='63'] -opus/traditions/letterTradition[@autopsic='640' and @ref='646'] -opus/traditions/letterTradition[@autopsic='641' and @ref='647'] -opus/traditions/letterTradition[@autopsic='642' and @ref='648'] -opus/traditions/letterTradition[@autopsic='643' and @ref='649'] -opus/traditions/letterTradition[@autopsic='644' and @ref='650'] -opus/traditions/letterTradition[@autopsic='645' and @ref='651'] -opus/traditions/letterTradition[@autopsic='646' and @ref='652'] -opus/traditions/letterTradition[@autopsic='647' and @ref='653'] -opus/traditions/letterTradition[@autopsic='648' and @ref='654'] -opus/traditions/letterTradition[@autopsic='649' and @ref='655'] -opus/traditions/letterTradition[@autopsic='64' and @ref='64'] -opus/traditions/letterTradition[@autopsic='650' and @ref='656'] -opus/traditions/letterTradition[@autopsic='651' and @ref='657'] -opus/traditions/letterTradition[@autopsic='652' and @ref='658'] -opus/traditions/letterTradition[@autopsic='653' and @ref='659'] -opus/traditions/letterTradition[@autopsic='654' and @ref='660'] -opus/traditions/letterTradition[@autopsic='655' and @ref='661'] -opus/traditions/letterTradition[@autopsic='656' and @ref='662'] -opus/traditions/letterTradition[@autopsic='657' and @ref='663'] -opus/traditions/letterTradition[@autopsic='658' and @ref='664'] -opus/traditions/letterTradition[@autopsic='659' and @ref='665'] -opus/traditions/letterTradition[@autopsic='65' and @ref='65'] -opus/traditions/letterTradition[@autopsic='660' and @ref='666'] -opus/traditions/letterTradition[@autopsic='661' and @ref='667'] -opus/traditions/letterTradition[@autopsic='662' and @ref='668'] -opus/traditions/letterTradition[@autopsic='663' and @ref='669'] -opus/traditions/letterTradition[@autopsic='664' and @ref='670'] -opus/traditions/letterTradition[@autopsic='665' and @ref='671'] -opus/traditions/letterTradition[@autopsic='666' and @ref='672'] -opus/traditions/letterTradition[@autopsic='667' and @ref='673'] -opus/traditions/letterTradition[@autopsic='668' and @ref='674'] -opus/traditions/letterTradition[@autopsic='669' and @ref='675'] -opus/traditions/letterTradition[@autopsic='66' and @ref='66'] -opus/traditions/letterTradition[@autopsic='670' and @ref='676'] -opus/traditions/letterTradition[@autopsic='671' and @ref='677'] -opus/traditions/letterTradition[@autopsic='672' and @ref='678'] -opus/traditions/letterTradition[@autopsic='673' and @ref='679'] -opus/traditions/letterTradition[@autopsic='674' and @ref='680'] -opus/traditions/letterTradition[@autopsic='675' and @ref='681'] -opus/traditions/letterTradition[@autopsic='676' and @ref='682'] -opus/traditions/letterTradition[@autopsic='677' and @ref='683'] -opus/traditions/letterTradition[@autopsic='678' and @ref='684'] -opus/traditions/letterTradition[@autopsic='679' and @ref='685'] -opus/traditions/letterTradition[@autopsic='67' and @ref='67'] -opus/traditions/letterTradition[@autopsic='680' and @ref='686'] -opus/traditions/letterTradition[@autopsic='681' and @ref='687'] -opus/traditions/letterTradition[@autopsic='682' and @ref='688'] -opus/traditions/letterTradition[@autopsic='683' and @ref='689'] -opus/traditions/letterTradition[@autopsic='684' and @ref='690'] -opus/traditions/letterTradition[@autopsic='685' and @ref='691'] -opus/traditions/letterTradition[@autopsic='686' and @ref='692'] -opus/traditions/letterTradition[@autopsic='687' and @ref='693'] -opus/traditions/letterTradition[@autopsic='688' and @ref='694'] -opus/traditions/letterTradition[@autopsic='689' and @ref='695'] -opus/traditions/letterTradition[@autopsic='68' and @ref='68'] -opus/traditions/letterTradition[@autopsic='690' and @ref='696'] -opus/traditions/letterTradition[@autopsic='691' and @ref='697'] -opus/traditions/letterTradition[@autopsic='692' and @ref='698'] -opus/traditions/letterTradition[@autopsic='693' and @ref='699'] -opus/traditions/letterTradition[@autopsic='694' and @ref='700'] -opus/traditions/letterTradition[@autopsic='695' and @ref='701'] -opus/traditions/letterTradition[@autopsic='696' and @ref='702'] -opus/traditions/letterTradition[@autopsic='697' and @ref='703'] -opus/traditions/letterTradition[@autopsic='698' and @ref='704'] -opus/traditions/letterTradition[@autopsic='699' and @ref='705'] -opus/traditions/letterTradition[@autopsic='69' and @ref='69'] -opus/traditions/letterTradition[@autopsic='6' and @ref='6'] -opus/traditions/letterTradition[@autopsic='700' and @ref='706'] -opus/traditions/letterTradition[@autopsic='701' and @ref='707'] -opus/traditions/letterTradition[@autopsic='702' and @ref='708'] -opus/traditions/letterTradition[@autopsic='703' and @ref='709'] -opus/traditions/letterTradition[@autopsic='704' and @ref='710'] -opus/traditions/letterTradition[@autopsic='705' and @ref='711'] -opus/traditions/letterTradition[@autopsic='706' and @ref='712'] -opus/traditions/letterTradition[@autopsic='707' and @ref='713'] -opus/traditions/letterTradition[@autopsic='708' and @ref='714'] -opus/traditions/letterTradition[@autopsic='709' and @ref='715'] -opus/traditions/letterTradition[@autopsic='70' and @ref='70'] -opus/traditions/letterTradition[@autopsic='710' and @ref='716'] -opus/traditions/letterTradition[@autopsic='711' and @ref='717'] -opus/traditions/letterTradition[@autopsic='712' and @ref='718'] -opus/traditions/letterTradition[@autopsic='713' and @ref='719'] -opus/traditions/letterTradition[@autopsic='714' and @ref='720'] -opus/traditions/letterTradition[@autopsic='715a' and @ref='722'] -opus/traditions/letterTradition[@autopsic='715' and @ref='721'] -opus/traditions/letterTradition[@autopsic='716' and @ref='723'] -opus/traditions/letterTradition[@autopsic='717' and @ref='724'] -opus/traditions/letterTradition[@autopsic='718' and @ref='725'] -opus/traditions/letterTradition[@autopsic='719' and @ref='726'] -opus/traditions/letterTradition[@autopsic='71' and @ref='71'] -opus/traditions/letterTradition[@autopsic='720' and @ref='727'] -opus/traditions/letterTradition[@autopsic='721' and @ref='728'] -opus/traditions/letterTradition[@autopsic='722' and @ref='729'] -opus/traditions/letterTradition[@autopsic='723' and @ref='730'] -opus/traditions/letterTradition[@autopsic='724' and @ref='731'] -opus/traditions/letterTradition[@autopsic='725' and @ref='732'] -opus/traditions/letterTradition[@autopsic='726' and @ref='733'] -opus/traditions/letterTradition[@autopsic='727' and @ref='734'] -opus/traditions/letterTradition[@autopsic='728' and @ref='735'] -opus/traditions/letterTradition[@autopsic='729' and @ref='736'] -opus/traditions/letterTradition[@autopsic='72' and @ref='72'] -opus/traditions/letterTradition[@autopsic='730' and @ref='737'] -opus/traditions/letterTradition[@autopsic='731' and @ref='738'] -opus/traditions/letterTradition[@autopsic='732' and @ref='739'] -opus/traditions/letterTradition[@autopsic='733' and @ref='740'] -opus/traditions/letterTradition[@autopsic='734' and @ref='741'] -opus/traditions/letterTradition[@autopsic='735' and @ref='742'] -opus/traditions/letterTradition[@autopsic='736' and @ref='743'] -opus/traditions/letterTradition[@autopsic='737' and @ref='744'] -opus/traditions/letterTradition[@autopsic='738' and @ref='745'] -opus/traditions/letterTradition[@autopsic='739' and @ref='746'] -opus/traditions/letterTradition[@autopsic='73' and @ref='73'] -opus/traditions/letterTradition[@autopsic='740' and @ref='747'] -opus/traditions/letterTradition[@autopsic='741' and @ref='748'] -opus/traditions/letterTradition[@autopsic='742' and @ref='749'] -opus/traditions/letterTradition[@autopsic='743' and @ref='750'] -opus/traditions/letterTradition[@autopsic='744' and @ref='751'] -opus/traditions/letterTradition[@autopsic='745' and @ref='752'] -opus/traditions/letterTradition[@autopsic='746' and @ref='753'] -opus/traditions/letterTradition[@autopsic='747' and @ref='754'] -opus/traditions/letterTradition[@autopsic='748' and @ref='755'] -opus/traditions/letterTradition[@autopsic='749' and @ref='756'] -opus/traditions/letterTradition[@autopsic='74' and @ref='74'] -opus/traditions/letterTradition[@autopsic='750' and @ref='757'] -opus/traditions/letterTradition[@autopsic='751' and @ref='758'] -opus/traditions/letterTradition[@autopsic='752' and @ref='759'] -opus/traditions/letterTradition[@autopsic='753' and @ref='760'] -opus/traditions/letterTradition[@autopsic='754' and @ref='761'] -opus/traditions/letterTradition[@autopsic='755' and @ref='762'] -opus/traditions/letterTradition[@autopsic='756' and @ref='763'] -opus/traditions/letterTradition[@autopsic='757' and @ref='764'] -opus/traditions/letterTradition[@autopsic='758' and @ref='765'] -opus/traditions/letterTradition[@autopsic='759' and @ref='766'] -opus/traditions/letterTradition[@autopsic='75' and @ref='75'] -opus/traditions/letterTradition[@autopsic='760' and @ref='767'] -opus/traditions/letterTradition[@autopsic='761' and @ref='768'] -opus/traditions/letterTradition[@autopsic='762' and @ref='769'] -opus/traditions/letterTradition[@autopsic='763' and @ref='770'] -opus/traditions/letterTradition[@autopsic='764' and @ref='771'] -opus/traditions/letterTradition[@autopsic='765' and @ref='772'] -opus/traditions/letterTradition[@autopsic='766' and @ref='773'] -opus/traditions/letterTradition[@autopsic='767' and @ref='774'] -opus/traditions/letterTradition[@autopsic='768' and @ref='775'] -opus/traditions/letterTradition[@autopsic='769' and @ref='776'] -opus/traditions/letterTradition[@autopsic='76' and @ref='76'] -opus/traditions/letterTradition[@autopsic='770' and @ref='777'] -opus/traditions/letterTradition[@autopsic='771' and @ref='778'] -opus/traditions/letterTradition[@autopsic='772' and @ref='779'] -opus/traditions/letterTradition[@autopsic='773' and @ref='780'] -opus/traditions/letterTradition[@autopsic='774' and @ref='781'] -opus/traditions/letterTradition[@autopsic='775' and @ref='782'] -opus/traditions/letterTradition[@autopsic='776' and @ref='783'] -opus/traditions/letterTradition[@autopsic='777' and @ref='784'] -opus/traditions/letterTradition[@autopsic='778' and @ref='785'] -opus/traditions/letterTradition[@autopsic='779' and @ref='786'] -opus/traditions/letterTradition[@autopsic='77' and @ref='77'] -opus/traditions/letterTradition[@autopsic='780' and @ref='787'] -opus/traditions/letterTradition[@autopsic='781' and @ref='788'] -opus/traditions/letterTradition[@autopsic='782' and @ref='789'] -opus/traditions/letterTradition[@autopsic='783' and @ref='790'] -opus/traditions/letterTradition[@autopsic='784' and @ref='791'] -opus/traditions/letterTradition[@autopsic='785' and @ref='792'] -opus/traditions/letterTradition[@autopsic='786' and @ref='793'] -opus/traditions/letterTradition[@autopsic='787' and @ref='794'] -opus/traditions/letterTradition[@autopsic='788' and @ref='795'] -opus/traditions/letterTradition[@autopsic='789' and @ref='796'] -opus/traditions/letterTradition[@autopsic='78' and @ref='78'] -opus/traditions/letterTradition[@autopsic='790' and @ref='797'] -opus/traditions/letterTradition[@autopsic='791' and @ref='798'] -opus/traditions/letterTradition[@autopsic='792' and @ref='799'] -opus/traditions/letterTradition[@autopsic='793' and @ref='800'] -opus/traditions/letterTradition[@autopsic='794' and @ref='801'] -opus/traditions/letterTradition[@autopsic='795' and @ref='802'] -opus/traditions/letterTradition[@autopsic='796' and @ref='803'] -opus/traditions/letterTradition[@autopsic='797' and @ref='804'] -opus/traditions/letterTradition[@autopsic='798' and @ref='805'] -opus/traditions/letterTradition[@autopsic='799' and @ref='806'] -opus/traditions/letterTradition[@autopsic='79' and @ref='79'] -opus/traditions/letterTradition[@autopsic='7' and @ref='7'] -opus/traditions/letterTradition[@autopsic='800' and @ref='807'] -opus/traditions/letterTradition[@autopsic='801' and @ref='808'] -opus/traditions/letterTradition[@autopsic='802' and @ref='809'] -opus/traditions/letterTradition[@autopsic='803' and @ref='810'] -opus/traditions/letterTradition[@autopsic='804' and @ref='811'] -opus/traditions/letterTradition[@autopsic='805' and @ref='812'] -opus/traditions/letterTradition[@autopsic='806' and @ref='813'] -opus/traditions/letterTradition[@autopsic='807' and @ref='814'] -opus/traditions/letterTradition[@autopsic='808' and @ref='815'] -opus/traditions/letterTradition[@autopsic='809' and @ref='816'] -opus/traditions/letterTradition[@autopsic='80' and @ref='80'] -opus/traditions/letterTradition[@autopsic='810' and @ref='817'] -opus/traditions/letterTradition[@autopsic='811' and @ref='818'] -opus/traditions/letterTradition[@autopsic='812' and @ref='819'] -opus/traditions/letterTradition[@autopsic='813' and @ref='820'] -opus/traditions/letterTradition[@autopsic='814' and @ref='821'] -opus/traditions/letterTradition[@autopsic='815' and @ref='822'] -opus/traditions/letterTradition[@autopsic='816' and @ref='823'] -opus/traditions/letterTradition[@autopsic='817' and @ref='824'] -opus/traditions/letterTradition[@autopsic='818' and @ref='825'] -opus/traditions/letterTradition[@autopsic='819' and @ref='826'] -opus/traditions/letterTradition[@autopsic='81' and @ref='81'] -opus/traditions/letterTradition[@autopsic='820' and @ref='827'] -opus/traditions/letterTradition[@autopsic='821' and @ref='828'] -opus/traditions/letterTradition[@autopsic='822' and @ref='829'] -opus/traditions/letterTradition[@autopsic='823' and @ref='830'] -opus/traditions/letterTradition[@autopsic='824' and @ref='831'] -opus/traditions/letterTradition[@autopsic='825' and @ref='832'] -opus/traditions/letterTradition[@autopsic='826' and @ref='833'] -opus/traditions/letterTradition[@autopsic='827' and @ref='834'] -opus/traditions/letterTradition[@autopsic='828' and @ref='835'] -opus/traditions/letterTradition[@autopsic='829' and @ref='836'] -opus/traditions/letterTradition[@autopsic='82' and @ref='82'] -opus/traditions/letterTradition[@autopsic='830' and @ref='837'] -opus/traditions/letterTradition[@autopsic='831' and @ref='838'] -opus/traditions/letterTradition[@autopsic='832' and @ref='839'] -opus/traditions/letterTradition[@autopsic='833' and @ref='840'] -opus/traditions/letterTradition[@autopsic='834' and @ref='841'] -opus/traditions/letterTradition[@autopsic='835' and @ref='842'] -opus/traditions/letterTradition[@autopsic='836' and @ref='843'] -opus/traditions/letterTradition[@autopsic='837' and @ref='844'] -opus/traditions/letterTradition[@autopsic='838' and @ref='845'] -opus/traditions/letterTradition[@autopsic='839' and @ref='846'] -opus/traditions/letterTradition[@autopsic='83' and @ref='83'] -opus/traditions/letterTradition[@autopsic='840' and @ref='847'] -opus/traditions/letterTradition[@autopsic='841' and @ref='848'] -opus/traditions/letterTradition[@autopsic='842' and @ref='849'] -opus/traditions/letterTradition[@autopsic='843' and @ref='850'] -opus/traditions/letterTradition[@autopsic='844' and @ref='851'] -opus/traditions/letterTradition[@autopsic='845' and @ref='852'] -opus/traditions/letterTradition[@autopsic='846' and @ref='853'] -opus/traditions/letterTradition[@autopsic='847' and @ref='854'] -opus/traditions/letterTradition[@autopsic='848' and @ref='855'] -opus/traditions/letterTradition[@autopsic='849' and @ref='856'] -opus/traditions/letterTradition[@autopsic='84' and @ref='84'] -opus/traditions/letterTradition[@autopsic='850' and @ref='857'] -opus/traditions/letterTradition[@autopsic='851' and @ref='858'] -opus/traditions/letterTradition[@autopsic='852' and @ref='859'] -opus/traditions/letterTradition[@autopsic='853' and @ref='860'] -opus/traditions/letterTradition[@autopsic='854' and @ref='861'] -opus/traditions/letterTradition[@autopsic='855' and @ref='862'] -opus/traditions/letterTradition[@autopsic='856' and @ref='863'] -opus/traditions/letterTradition[@autopsic='857' and @ref='864'] -opus/traditions/letterTradition[@autopsic='858' and @ref='865'] -opus/traditions/letterTradition[@autopsic='859' and @ref='866'] -opus/traditions/letterTradition[@autopsic='85' and @ref='85'] -opus/traditions/letterTradition[@autopsic='860' and @ref='867'] -opus/traditions/letterTradition[@autopsic='861' and @ref='868'] -opus/traditions/letterTradition[@autopsic='862' and @ref='869'] -opus/traditions/letterTradition[@autopsic='863' and @ref='870'] -opus/traditions/letterTradition[@autopsic='864' and @ref='871'] -opus/traditions/letterTradition[@autopsic='865' and @ref='872'] -opus/traditions/letterTradition[@autopsic='866' and @ref='873'] -opus/traditions/letterTradition[@autopsic='867' and @ref='874'] -opus/traditions/letterTradition[@autopsic='868' and @ref='875'] -opus/traditions/letterTradition[@autopsic='869' and @ref='876'] -opus/traditions/letterTradition[@autopsic='86' and @ref='86'] -opus/traditions/letterTradition[@autopsic='870' and @ref='877'] -opus/traditions/letterTradition[@autopsic='871' and @ref='878'] -opus/traditions/letterTradition[@autopsic='872' and @ref='879'] -opus/traditions/letterTradition[@autopsic='873' and @ref='880'] -opus/traditions/letterTradition[@autopsic='874' and @ref='881'] -opus/traditions/letterTradition[@autopsic='875' and @ref='882'] -opus/traditions/letterTradition[@autopsic='876' and @ref='883'] -opus/traditions/letterTradition[@autopsic='877' and @ref='884'] -opus/traditions/letterTradition[@autopsic='878' and @ref='885'] -opus/traditions/letterTradition[@autopsic='879' and @ref='886'] -opus/traditions/letterTradition[@autopsic='87' and @ref='87'] -opus/traditions/letterTradition[@autopsic='880' and @ref='887'] -opus/traditions/letterTradition[@autopsic='881' and @ref='888'] -opus/traditions/letterTradition[@autopsic='882' and @ref='889'] -opus/traditions/letterTradition[@autopsic='883' and @ref='890'] -opus/traditions/letterTradition[@autopsic='884' and @ref='891'] -opus/traditions/letterTradition[@autopsic='885' and @ref='892'] -opus/traditions/letterTradition[@autopsic='886' and @ref='893'] -opus/traditions/letterTradition[@autopsic='887' and @ref='894'] -opus/traditions/letterTradition[@autopsic='888' and @ref='895'] -opus/traditions/letterTradition[@autopsic='889' and @ref='896'] -opus/traditions/letterTradition[@autopsic='88' and @ref='88'] -opus/traditions/letterTradition[@autopsic='890' and @ref='897'] -opus/traditions/letterTradition[@autopsic='891' and @ref='898'] -opus/traditions/letterTradition[@autopsic='892' and @ref='899'] -opus/traditions/letterTradition[@autopsic='893' and @ref='900'] -opus/traditions/letterTradition[@autopsic='894' and @ref='901'] -opus/traditions/letterTradition[@autopsic='895' and @ref='902'] -opus/traditions/letterTradition[@autopsic='896' and @ref='903'] -opus/traditions/letterTradition[@autopsic='897' and @ref='904'] -opus/traditions/letterTradition[@autopsic='898' and @ref='905'] -opus/traditions/letterTradition[@autopsic='899' and @ref='906'] -opus/traditions/letterTradition[@autopsic='89' and @ref='89'] -opus/traditions/letterTradition[@autopsic='8' and @ref='8'] -opus/traditions/letterTradition[@autopsic='900' and @ref='907'] -opus/traditions/letterTradition[@autopsic='901' and @ref='908'] -opus/traditions/letterTradition[@autopsic='902' and @ref='909'] -opus/traditions/letterTradition[@autopsic='903' and @ref='910'] -opus/traditions/letterTradition[@autopsic='904' and @ref='911'] -opus/traditions/letterTradition[@autopsic='905' and @ref='912'] -opus/traditions/letterTradition[@autopsic='906' and @ref='913'] -opus/traditions/letterTradition[@autopsic='907' and @ref='914'] -opus/traditions/letterTradition[@autopsic='908' and @ref='915'] -opus/traditions/letterTradition[@autopsic='909' and @ref='916'] -opus/traditions/letterTradition[@autopsic='90' and @ref='90'] -opus/traditions/letterTradition[@autopsic='910' and @ref='917'] -opus/traditions/letterTradition[@autopsic='911' and @ref='918'] -opus/traditions/letterTradition[@autopsic='912' and @ref='919'] -opus/traditions/letterTradition[@autopsic='913' and @ref='920'] -opus/traditions/letterTradition[@autopsic='914' and @ref='921'] -opus/traditions/letterTradition[@autopsic='915' and @ref='922'] -opus/traditions/letterTradition[@autopsic='916' and @ref='923'] -opus/traditions/letterTradition[@autopsic='917' and @ref='924'] -opus/traditions/letterTradition[@autopsic='918' and @ref='925'] -opus/traditions/letterTradition[@autopsic='919' and @ref='926'] -opus/traditions/letterTradition[@autopsic='91' and @ref='91'] -opus/traditions/letterTradition[@autopsic='920' and @ref='927'] -opus/traditions/letterTradition[@autopsic='921' and @ref='928'] -opus/traditions/letterTradition[@autopsic='922' and @ref='929'] -opus/traditions/letterTradition[@autopsic='923' and @ref='930'] -opus/traditions/letterTradition[@autopsic='924' and @ref='931'] -opus/traditions/letterTradition[@autopsic='925' and @ref='932'] -opus/traditions/letterTradition[@autopsic='926' and @ref='933'] -opus/traditions/letterTradition[@autopsic='927' and @ref='934'] -opus/traditions/letterTradition[@autopsic='928' and @ref='935'] -opus/traditions/letterTradition[@autopsic='929' and @ref='936'] -opus/traditions/letterTradition[@autopsic='92' and @ref='92'] -opus/traditions/letterTradition[@autopsic='930' and @ref='937'] -opus/traditions/letterTradition[@autopsic='931' and @ref='938'] -opus/traditions/letterTradition[@autopsic='932' and @ref='939'] -opus/traditions/letterTradition[@autopsic='933' and @ref='940'] -opus/traditions/letterTradition[@autopsic='934' and @ref='941'] -opus/traditions/letterTradition[@autopsic='935' and @ref='942'] -opus/traditions/letterTradition[@autopsic='936' and @ref='943'] -opus/traditions/letterTradition[@autopsic='937' and @ref='944'] -opus/traditions/letterTradition[@autopsic='938' and @ref='945'] -opus/traditions/letterTradition[@autopsic='939' and @ref='946'] -opus/traditions/letterTradition[@autopsic='93' and @ref='93'] -opus/traditions/letterTradition[@autopsic='940' and @ref='947'] -opus/traditions/letterTradition[@autopsic='941' and @ref='948'] -opus/traditions/letterTradition[@autopsic='942' and @ref='949'] -opus/traditions/letterTradition[@autopsic='943' and @ref='950'] -opus/traditions/letterTradition[@autopsic='944' and @ref='951'] -opus/traditions/letterTradition[@autopsic='945' and @ref='952'] -opus/traditions/letterTradition[@autopsic='946' and @ref='953'] -opus/traditions/letterTradition[@autopsic='947' and @ref='954'] -opus/traditions/letterTradition[@autopsic='948a' and @ref='1190'] -opus/traditions/letterTradition[@autopsic='948' and @ref='955'] -opus/traditions/letterTradition[@autopsic='949' and @ref='956'] -opus/traditions/letterTradition[@autopsic='94' and @ref='94'] -opus/traditions/letterTradition[@autopsic='950' and @ref='957'] -opus/traditions/letterTradition[@autopsic='951' and @ref='958'] -opus/traditions/letterTradition[@autopsic='952' and @ref='959'] -opus/traditions/letterTradition[@autopsic='953' and @ref='960'] -opus/traditions/letterTradition[@autopsic='954' and @ref='961'] -opus/traditions/letterTradition[@autopsic='955' and @ref='962'] -opus/traditions/letterTradition[@autopsic='956' and @ref='963'] -opus/traditions/letterTradition[@autopsic='957' and @ref='964'] -opus/traditions/letterTradition[@autopsic='958' and @ref='965'] -opus/traditions/letterTradition[@autopsic='959' and @ref='966'] -opus/traditions/letterTradition[@autopsic='95' and @ref='95'] -opus/traditions/letterTradition[@autopsic='960' and @ref='967'] -opus/traditions/letterTradition[@autopsic='961' and @ref='968'] -opus/traditions/letterTradition[@autopsic='962' and @ref='969'] -opus/traditions/letterTradition[@autopsic='963' and @ref='970'] -opus/traditions/letterTradition[@autopsic='964' and @ref='971'] -opus/traditions/letterTradition[@autopsic='965' and @ref='972'] -opus/traditions/letterTradition[@autopsic='966' and @ref='973'] -opus/traditions/letterTradition[@autopsic='967' and @ref='974'] -opus/traditions/letterTradition[@autopsic='968' and @ref='975'] -opus/traditions/letterTradition[@autopsic='969' and @ref='976'] -opus/traditions/letterTradition[@autopsic='96' and @ref='96'] -opus/traditions/letterTradition[@autopsic='970' and @ref='977'] -opus/traditions/letterTradition[@autopsic='971' and @ref='978'] -opus/traditions/letterTradition[@autopsic='972' and @ref='979'] -opus/traditions/letterTradition[@autopsic='973' and @ref='980'] -opus/traditions/letterTradition[@autopsic='974' and @ref='981'] -opus/traditions/letterTradition[@autopsic='975' and @ref='982'] -opus/traditions/letterTradition[@autopsic='976' and @ref='983'] -opus/traditions/letterTradition[@autopsic='977' and @ref='984'] -opus/traditions/letterTradition[@autopsic='978' and @ref='985'] -opus/traditions/letterTradition[@autopsic='979' and @ref='986'] -opus/traditions/letterTradition[@autopsic='97' and @ref='97'] -opus/traditions/letterTradition[@autopsic='980' and @ref='987'] -opus/traditions/letterTradition[@autopsic='981' and @ref='988'] -opus/traditions/letterTradition[@autopsic='982' and @ref='989'] -opus/traditions/letterTradition[@autopsic='983' and @ref='990'] -opus/traditions/letterTradition[@autopsic='984' and @ref='991'] -opus/traditions/letterTradition[@autopsic='985' and @ref='992'] -opus/traditions/letterTradition[@autopsic='986' and @ref='993'] -opus/traditions/letterTradition[@autopsic='987' and @ref='994'] -opus/traditions/letterTradition[@autopsic='988' and @ref='995'] -opus/traditions/letterTradition[@autopsic='989' and @ref='996'] -opus/traditions/letterTradition[@autopsic='98' and @ref='98'] -opus/traditions/letterTradition[@autopsic='990' and @ref='997'] -opus/traditions/letterTradition[@autopsic='991' and @ref='998'] -opus/traditions/letterTradition[@autopsic='992' and @ref='999'] -opus/traditions/letterTradition[@autopsic='993' and @ref='1000'] -opus/traditions/letterTradition[@autopsic='994' and @ref='1001'] -opus/traditions/letterTradition[@autopsic='995' and @ref='1002'] -opus/traditions/letterTradition[@autopsic='996' and @ref='1003'] -opus/traditions/letterTradition[@autopsic='997' and @ref='1004'] -opus/traditions/letterTradition[@autopsic='998' and @ref='1005'] -opus/traditions/letterTradition[@autopsic='999' and @ref='1006'] -opus/traditions/letterTradition[@autopsic='99' and @ref='99'] -opus/traditions/letterTradition[@autopsic='9' and @ref='9'] -opus/traditions/letterTradition/del -opus/traditions/letterTradition/del/aq -opus/traditions/letterTradition/note/ul -opus/traditions/letterTradition/nr -opus/traditions/letterTradition/wwwlink[@address='http://daten.digitale-sammlungen.de/~db/0009/bsb00091145/images/'] -opus/traditions/letterTradition/wwwlink[@address='https://www.e-manuscripta.ch/zuz/content/titleinfo/2165493'] -opus/traditions/letterTradition/wwwlink[@address='https://www.e-manuscripta.ch/zuz/content/titleinfo/2165496'] -opus/traditions/letterTradition/wwwlink[@address='https://www.e-manuscripta.ch/zuz/content/titleinfo/2165500'] -opus/traditions/letterTradition/wwwlink[@address='https://www.e-manuscripta.ch/zuz/content/titleinfo/2165504'] -opus/traditions/letterTradition/wwwlink[@address='https://www.e-manuscripta.ch/zuz/content/titleinfo/2165507'] -opus/traditions/letterTradition/wwwlink[@address='https://www.e-manuscripta.ch/zuz/content/titleinfo/2851384?lang=de'] -opus/traditions/letterTradition/wwwlink[@address='https://www.e-manuscripta.ch/zuz/content/titleinfo/2851387'] -opus/traditions/letterTradition/wwwlink[@address='https://www.e-manuscripta.ch/zuz/content/titleinfo/2851389'] -opus/traditions/letterTradition/wwwlink[@address='https://www.e-manuscripta.ch/zuz/content/titleinfo/2851391'] -opus/traditions/letterTradition/wwwlink[@address='https://www.e-manuscripta.ch/zuz/content/titleinfo/2851393'] -opus/traditions/letterTradition/wwwlink[@address='https://www.e-manuscripta.ch/zuz/content/titleinfo/2851395'] -opus/traditions/letterTradition/wwwlink[@address='https://www.e-manuscripta.ch/zuz/content/titleinfo/2851397'] -opus/traditions/letterTradition/wwwlink[@address='https://www.e-manuscripta.ch/zuz/content/titleinfo/2851409'] -opus/traditions/letterTradition/wwwlink[@address='https://www.e-manuscripta.ch/zuz/content/titleinfo/2851415'] -opus/traditions/letterTradition/wwwlink[@address='https://www.e-manuscripta.ch/zuz/content/titleinfo/2851421'] -opus/traditions/letterTradition/wwwlink[@address='https://www.e-manuscripta.ch/zuz/content/titleinfo/2851424'] -opus/traditions/letterTradition/wwwlink[@address='https://www.e-manuscripta.ch/zuz/content/titleinfo/2851427'] -opus/traditions/letterTradition/ZHText/align/aq/del -opus/traditions/letterTradition/ZHText/align/aq/ul -opus/traditions/letterTradition/ZHText/align/datum -opus/traditions/letterTradition/ZHText/align/del/aq -opus/traditions/letterTradition/ZHText/align/edit[@ref='5004'] -opus/traditions/letterTradition/ZHText/align/edit[@ref='5005'] -opus/traditions/letterTradition/ZHText/align/edit[@ref='5608'] -opus/traditions/letterTradition/ZHText/align/edit[@ref='5624'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='4092'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='4093'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='5613'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='5614'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='5615'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='5616'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='5617'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='5618'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='5619'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='5620'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='5621'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='5622'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='5623'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='5625'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='5626'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='5627'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='5628'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='5629'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='5630'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='5631'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='5632'] -opus/traditions/letterTradition/ZHText/aq/edit[@ref='6782'] -opus/traditions/letterTradition/ZHText/aq/line[@index='10' and @autopsic='10' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='10' and @autopsic='10' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='11' and @autopsic='11' and @tab='3'] -opus/traditions/letterTradition/ZHText/aq/line[@index='12' and @autopsic='12' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='13' and @autopsic='13' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='13' and @autopsic='13' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='13' and @autopsic='13' and @tab='3'] -opus/traditions/letterTradition/ZHText/aq/line[@index='14' and @autopsic='14' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='15' and @autopsic='15' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='15' and @autopsic='15' and @tab='3'] -opus/traditions/letterTradition/ZHText/aq/line[@index='15' and @autopsic='15' and @tab='4'] -opus/traditions/letterTradition/ZHText/aq/line[@index='16' and @autopsic='16' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='16' and @autopsic='16' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='16' and @autopsic='16' and @tab='3'] -opus/traditions/letterTradition/ZHText/aq/line[@index='17' and @autopsic='17' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='17' and @autopsic='17' and @tab='3'] -opus/traditions/letterTradition/ZHText/aq/line[@index='18' and @autopsic='18' and @tab='3'] -opus/traditions/letterTradition/ZHText/aq/line[@index='19' and @autopsic='19' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='19' and @autopsic='19' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='19' and @autopsic='19' and @tab='3'] -opus/traditions/letterTradition/ZHText/aq/line[@index='20' and @autopsic='20' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='20' and @autopsic='20' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='20' and @autopsic='20' and @tab='7'] -opus/traditions/letterTradition/ZHText/aq/line[@index='21' and @autopsic='21' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='23' and @autopsic='23' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='23' and @autopsic='23' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='24' and @autopsic='24' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='24' and @autopsic='24' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='25' and @autopsic='25' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='25' and @autopsic='25' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='26' and @autopsic='26' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='27' and @autopsic='27' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='28' and @autopsic='28' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='29' and @autopsic='29' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='29' and @autopsic='29' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='2' and @autopsic='2' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='2' and @autopsic='2' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='30' and @autopsic='30' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='31' and @autopsic='31' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='31' and @autopsic='31' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='31' and @autopsic='31' and @tab='5'] -opus/traditions/letterTradition/ZHText/aq/line[@index='32' and @autopsic='32' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='32' and @autopsic='32' and @tab='3'] -opus/traditions/letterTradition/ZHText/aq/line[@index='33' and @autopsic='33' and @tab='3'] -opus/traditions/letterTradition/ZHText/aq/line[@index='33' and @autopsic='33' and @tab='7'] -opus/traditions/letterTradition/ZHText/aq/line[@index='35' and @autopsic='35' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='36' and @autopsic='36' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='37' and @autopsic='37'] -opus/traditions/letterTradition/ZHText/aq/line[@index='37' and @autopsic='37' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='38' and @autopsic='38'] -opus/traditions/letterTradition/ZHText/aq/line[@index='38' and @autopsic='38' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='39' and @autopsic='39'] -opus/traditions/letterTradition/ZHText/aq/line[@index='39' and @autopsic='39' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='3' and @autopsic='3' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='3' and @autopsic='3' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='4' and @autopsic='4' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='6' and @autopsic='6' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='7' and @autopsic='7' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='8' and @autopsic='8' and @tab='1'] -opus/traditions/letterTradition/ZHText/aq/line[@index='8' and @autopsic='8' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='8' and @autopsic='8' and @tab='3'] -opus/traditions/letterTradition/ZHText/aq/line[@index='9' and @autopsic='9' and @tab='2'] -opus/traditions/letterTradition/ZHText/aq/line[@index='9' and @autopsic='9' and @tab='3'] -opus/traditions/letterTradition/ZHText/aq/line[@type='break'] -opus/traditions/letterTradition/ZHText/aq/nr -opus/traditions/letterTradition/ZHText/aq/page[@index='436' and @autopsic='436'] -opus/traditions/letterTradition/ZHText/aq/page[@index='440' and @autopsic='440'] -opus/traditions/letterTradition/ZHText/aq/page[@index='486' and @autopsic='486'] -opus/traditions/letterTradition/ZHText/aq/page[@index='488' and @autopsic='488'] -opus/traditions/letterTradition/ZHText/aq/page[@index='497' and @autopsic='497'] -opus/traditions/letterTradition/ZHText/aq/ul/line[@index='5' and @autopsic='5'] -opus/traditions/letterTradition/ZHText/del/aq/line[@index='5' and @autopsic='5'] -opus/traditions/letterTradition/ZHText/del/aq/line[@index='8' and @autopsic='8'] -opus/traditions/letterTradition/ZHText/del/line[@index='13' and @autopsic='13'] -opus/traditions/letterTradition/ZHText/del/line[@index='16' and @autopsic='18'] -opus/traditions/letterTradition/ZHText/del/line[@index='29' and @autopsic='31'] -opus/traditions/letterTradition/ZHText/del/line[@index='47' and @autopsic='47'] -opus/traditions/letterTradition/ZHText/del/line[@index='5' and @autopsic='5'] -opus/traditions/letterTradition/ZHText/del/line[@index='81' and @autopsic='81'] -opus/traditions/letterTradition/ZHText/del/line[@index='9' and @autopsic='9'] -opus/traditions/letterTradition/ZHText/del/page[@index='413' and @autopsic='413'] -opus/traditions/letterTradition/ZHText/del/page[@index='426' and @autopsic='426'] -opus/traditions/letterTradition/ZHText/del/page[@index='427' and @autopsic='427'] -opus/traditions/letterTradition/ZHText/del/page[@index='430' and @autopsic='430'] -opus/traditions/letterTradition/ZHText/del/page[@index='481' and @autopsic='481'] -opus/traditions/letterTradition/ZHText/del/page[@index='520' and @autopsic='520'] -opus/traditions/letterTradition/ZHText/edit/align/aq -opus/traditions/letterTradition/ZHText/edit/align[@pos='center'] -opus/traditions/letterTradition/ZHText/edit/aq/line[@index='309' and @autopsic='309'] -opus/traditions/letterTradition/ZHText/edit/dul -opus/traditions/letterTradition/ZHText/edit/edit[@ref='5766'] -opus/traditions/letterTradition/ZHText/edit/edit[@ref='5767'] -opus/traditions/letterTradition/ZHText/edit/edit[@ref='5768'] -opus/traditions/letterTradition/ZHText/edit/edit[@ref='5769'] -opus/traditions/letterTradition/ZHText/edit/edit[@ref='5770'] -opus/traditions/letterTradition/ZHText/edit/edit[@ref='5771'] -opus/traditions/letterTradition/ZHText/edit/edit[@ref='5772'] -opus/traditions/letterTradition/ZHText/edit/edit/ul -opus/traditions/letterTradition/ZHText/edit/line[@index='100' and @autopsic='100' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='101' and @autopsic='101' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='102' and @autopsic='102' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='103' and @autopsic='103' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='104' and @autopsic='104' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='105' and @autopsic='105' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='106' and @autopsic='106' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='107' and @autopsic='107' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='108' and @autopsic='108' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='109' and @autopsic='109' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='110' and @autopsic='110' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='111' and @autopsic='111' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='112' and @autopsic='112' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='113' and @autopsic='113' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='114' and @autopsic='114' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='115' and @autopsic='115' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='116' and @autopsic='116'] -opus/traditions/letterTradition/ZHText/edit/line[@index='117' and @autopsic='117'] -opus/traditions/letterTradition/ZHText/edit/line[@index='118' and @autopsic='118'] -opus/traditions/letterTradition/ZHText/edit/line[@index='119' and @autopsic='119'] -opus/traditions/letterTradition/ZHText/edit/line[@index='120' and @autopsic='120'] -opus/traditions/letterTradition/ZHText/edit/line[@index='121' and @autopsic='121'] -opus/traditions/letterTradition/ZHText/edit/line[@index='122' and @autopsic='122'] -opus/traditions/letterTradition/ZHText/edit/line[@index='123' and @autopsic='123' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='124' and @autopsic='124' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='125' and @autopsic='125' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='126' and @autopsic='126' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='127' and @autopsic='127' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='128' and @autopsic='128' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='129' and @autopsic='129' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='130' and @autopsic='130' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='131' and @autopsic='131' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='132' and @autopsic='132' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='133' and @autopsic='133' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='134' and @autopsic='134' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='135' and @autopsic='135' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='136' and @autopsic='136' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='137' and @autopsic='137' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='138' and @autopsic='138' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='139' and @autopsic='139' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='140' and @autopsic='140' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='141' and @autopsic='141' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='142' and @autopsic='142' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='143' and @autopsic='143' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='144' and @autopsic='144' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='145' and @autopsic='145' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='146' and @autopsic='146' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='147' and @autopsic='147' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='148' and @autopsic='148' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='149' and @autopsic='149' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='150' and @autopsic='150' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='151' and @autopsic='151' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='152' and @autopsic='152' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='153' and @autopsic='153' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='154' and @autopsic='154' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='155' and @autopsic='155' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='156' and @autopsic='156' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='157' and @autopsic='157' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='158' and @autopsic='158' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='159' and @autopsic='159' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='15' and @autopsic='15'] -opus/traditions/letterTradition/ZHText/edit/line[@index='15' and @autopsic='15' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='160' and @autopsic='160' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='161' and @autopsic='161' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='162' and @autopsic='162' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='163' and @autopsic='163' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='164' and @autopsic='164' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='165' and @autopsic='165' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='166' and @autopsic='166' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='167' and @autopsic='167' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='168' and @autopsic='168' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='169' and @autopsic='169' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='16' and @autopsic='16'] -opus/traditions/letterTradition/ZHText/edit/line[@index='170' and @autopsic='170' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='171' and @autopsic='171' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='172' and @autopsic='172' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='173' and @autopsic='173' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='174' and @autopsic='174' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='175' and @autopsic='175' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='176' and @autopsic='176' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='177' and @autopsic='177' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='178' and @autopsic='178' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='179' and @autopsic='179'] -opus/traditions/letterTradition/ZHText/edit/line[@index='180' and @autopsic='180'] -opus/traditions/letterTradition/ZHText/edit/line[@index='181' and @autopsic='181' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='182' and @autopsic='182' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='183' and @autopsic='183' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='184' and @autopsic='184' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='185' and @autopsic='185' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='186' and @autopsic='186' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='187' and @autopsic='187' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='188' and @autopsic='188' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='189' and @autopsic='189' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='18' and @autopsic='18'] -opus/traditions/letterTradition/ZHText/edit/line[@index='18' and @autopsic='18' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='190' and @autopsic='190' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='191' and @autopsic='191' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='192' and @autopsic='192' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='193' and @autopsic='193' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='194' and @autopsic='194' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='195' and @autopsic='195' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='196' and @autopsic='196' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='197' and @autopsic='197' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='198' and @autopsic='198' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='199' and @autopsic='199' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='19' and @autopsic='19'] -opus/traditions/letterTradition/ZHText/edit/line[@index='1' and @autopsic='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='200' and @autopsic='200' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='201' and @autopsic='201' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='202' and @autopsic='202' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='203' and @autopsic='203' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='204' and @autopsic='204' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='205' and @autopsic='205' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='206' and @autopsic='206' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='207' and @autopsic='207' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='208' and @autopsic='208' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='209' and @autopsic='209' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='20' and @autopsic='20'] -opus/traditions/letterTradition/ZHText/edit/line[@index='210' and @autopsic='210' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='211' and @autopsic='211' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='212' and @autopsic='212' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='213' and @autopsic='213' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='214' and @autopsic='214' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='215' and @autopsic='215' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='216' and @autopsic='216' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='217' and @autopsic='217' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='218' and @autopsic='218' and @tab='5'] -opus/traditions/letterTradition/ZHText/edit/line[@index='219' and @autopsic='219' and @tab='3'] -opus/traditions/letterTradition/ZHText/edit/line[@index='21' and @autopsic='21'] -opus/traditions/letterTradition/ZHText/edit/line[@index='220' and @autopsic='220'] -opus/traditions/letterTradition/ZHText/edit/line[@index='221' and @autopsic='221'] -opus/traditions/letterTradition/ZHText/edit/line[@index='222' and @autopsic='222'] -opus/traditions/letterTradition/ZHText/edit/line[@index='223' and @autopsic='223' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='224' and @autopsic='224' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='225' and @autopsic='225' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='226' and @autopsic='226' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='227' and @autopsic='227' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='228' and @autopsic='228' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='229' and @autopsic='229' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='230' and @autopsic='230' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='231' and @autopsic='231' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='232' and @autopsic='232' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='233' and @autopsic='233' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='234' and @autopsic='234' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='235' and @autopsic='235' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='236' and @autopsic='236' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='237' and @autopsic='237' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='238' and @autopsic='238' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='239' and @autopsic='239' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='240' and @autopsic='240' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='241' and @autopsic='241' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='242' and @autopsic='242' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='243' and @autopsic='243' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='244' and @autopsic='244' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='245' and @autopsic='245' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='246' and @autopsic='246' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='247' and @autopsic='247' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='248' and @autopsic='248' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='249' and @autopsic='249' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='250' and @autopsic='250' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='251' and @autopsic='251' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='252' and @autopsic='252' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='253' and @autopsic='253' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='254' and @autopsic='254' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='255' and @autopsic='255' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='256' and @autopsic='256' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='257' and @autopsic='257' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='258' and @autopsic='258' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='259' and @autopsic='259' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='260' and @autopsic='260' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='261' and @autopsic='261' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='262' and @autopsic='262' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='263' and @autopsic='263' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='264' and @autopsic='264' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='265' and @autopsic='265' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='266' and @autopsic='266'] -opus/traditions/letterTradition/ZHText/edit/line[@index='267' and @autopsic='267'] -opus/traditions/letterTradition/ZHText/edit/line[@index='268' and @autopsic='268' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='269' and @autopsic='269' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='26' and @autopsic='26'] -opus/traditions/letterTradition/ZHText/edit/line[@index='26' and @autopsic='26' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='270' and @autopsic='270' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='271' and @autopsic='271' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='272' and @autopsic='272' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='273' and @autopsic='273' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='274' and @autopsic='274' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='275' and @autopsic='275' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='276' and @autopsic='276' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='277' and @autopsic='277' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='278' and @autopsic='278' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='279' and @autopsic='279' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='280' and @autopsic='280' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='281' and @autopsic='281' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='282' and @autopsic='282' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='283' and @autopsic='283' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='284' and @autopsic='284' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='285' and @autopsic='285' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='286' and @autopsic='286' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='287' and @autopsic='287' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='288' and @autopsic='288' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='289' and @autopsic='289' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='28' and @autopsic='28'] -opus/traditions/letterTradition/ZHText/edit/line[@index='28' and @autopsic='28' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='290' and @autopsic='290' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='291' and @autopsic='291' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='292' and @autopsic='292' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='293' and @autopsic='293' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='294' and @autopsic='294' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='295' and @autopsic='295' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='296' and @autopsic='296' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='297' and @autopsic='297' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='298' and @autopsic='298' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='299' and @autopsic='299' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='29' and @autopsic='29' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='300' and @autopsic='300' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='301' and @autopsic='301' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='302' and @autopsic='302' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='303' and @autopsic='303' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='304' and @autopsic='304' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='305' and @autopsic='305' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='306' and @autopsic='306' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='307' and @autopsic='307' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='308' and @autopsic='308'] -opus/traditions/letterTradition/ZHText/edit/line[@index='30' and @autopsic='30' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='310' and @autopsic='310'] -opus/traditions/letterTradition/ZHText/edit/line[@index='311' and @autopsic='311' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='312' and @autopsic='312' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='313' and @autopsic='313' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='314' and @autopsic='314' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='315' and @autopsic='315' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='316' and @autopsic='316' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='317' and @autopsic='317' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='318' and @autopsic='318' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='319' and @autopsic='319' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='31' and @autopsic='31' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='320' and @autopsic='320' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='321' and @autopsic='321' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='322' and @autopsic='322' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='323' and @autopsic='323' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='324' and @autopsic='324' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='325' and @autopsic='325' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='326' and @autopsic='326' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='327' and @autopsic='327' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='328' and @autopsic='328' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='329' and @autopsic='329' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='32' and @autopsic='32' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='32' and @autopsic='32' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='330' and @autopsic='330' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='331' and @autopsic='331' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='332' and @autopsic='332' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='333' and @autopsic='333' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='334' and @autopsic='334' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='335' and @autopsic='335' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='336' and @autopsic='336' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='337' and @autopsic='337' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='338' and @autopsic='338' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='339' and @autopsic='339' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='33' and @autopsic='33' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='33' and @autopsic='33' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='340' and @autopsic='340' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='341' and @autopsic='341' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='342' and @autopsic='342' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='343' and @autopsic='343' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='344' and @autopsic='344' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='345' and @autopsic='345' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='346' and @autopsic='346' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='347' and @autopsic='347' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='348' and @autopsic='348' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='349' and @autopsic='349' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='34' and @autopsic='34'] -opus/traditions/letterTradition/ZHText/edit/line[@index='34' and @autopsic='34' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='350' and @autopsic='350' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='351' and @autopsic='351' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='352' and @autopsic='352' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='353' and @autopsic='353' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='354' and @autopsic='354' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='355' and @autopsic='355' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='356' and @autopsic='356' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='357' and @autopsic='357' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='358' and @autopsic='358' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='359' and @autopsic='359' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='35' and @autopsic='35' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='360' and @autopsic='360' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='361' and @autopsic='361' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='362' and @autopsic='362' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='363' and @autopsic='363' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='364' and @autopsic='364' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='365' and @autopsic='365'] -opus/traditions/letterTradition/ZHText/edit/line[@index='366' and @autopsic='366'] -opus/traditions/letterTradition/ZHText/edit/line[@index='367' and @autopsic='367'] -opus/traditions/letterTradition/ZHText/edit/line[@index='368' and @autopsic='368'] -opus/traditions/letterTradition/ZHText/edit/line[@index='369' and @autopsic='369' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='36' and @autopsic='36' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='370' and @autopsic='370' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='371' and @autopsic='371' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='372' and @autopsic='372' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='373' and @autopsic='373' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='374' and @autopsic='374' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='375' and @autopsic='375' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='376' and @autopsic='376' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='377' and @autopsic='377' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='378' and @autopsic='378' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='379' and @autopsic='379' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='37' and @autopsic='37' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='380' and @autopsic='380' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='381' and @autopsic='381' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='382' and @autopsic='382' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='383' and @autopsic='383' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='384' and @autopsic='384' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='385' and @autopsic='385' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='386' and @autopsic='386' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='387' and @autopsic='387' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='388' and @autopsic='388' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='389' and @autopsic='389' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='38' and @autopsic='38' and @tab='3'] -opus/traditions/letterTradition/ZHText/edit/line[@index='390' and @autopsic='390' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='391' and @autopsic='391' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='392' and @autopsic='392' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='393' and @autopsic='393' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='394' and @autopsic='394' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='395' and @autopsic='395' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='396' and @autopsic='396' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='397' and @autopsic='397' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='398' and @autopsic='398' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='399' and @autopsic='399' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='39' and @autopsic='39' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='400' and @autopsic='400' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='401' and @autopsic='401' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='402' and @autopsic='402' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='403' and @autopsic='403' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='404' and @autopsic='404' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='405' and @autopsic='405' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='406' and @autopsic='406' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='407' and @autopsic='407' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='408' and @autopsic='408' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='409' and @autopsic='409' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='40' and @autopsic='40' and @tab='3'] -opus/traditions/letterTradition/ZHText/edit/line[@index='410' and @autopsic='410' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='411' and @autopsic='411' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='412' and @autopsic='412' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='413' and @autopsic='413' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='414' and @autopsic='414' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='415' and @autopsic='415' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='416' and @autopsic='416' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='417' and @autopsic='417'] -opus/traditions/letterTradition/ZHText/edit/line[@index='418' and @autopsic='418' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='419' and @autopsic='419' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='41' and @autopsic='41' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='420' and @autopsic='420' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='421' and @autopsic='421' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='422' and @autopsic='422' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='423' and @autopsic='423' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='424' and @autopsic='424' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='425' and @autopsic='425' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='426' and @autopsic='426' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='427' and @autopsic='427' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='428' and @autopsic='428' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='429' and @autopsic='429' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='42' and @autopsic='42' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='430' and @autopsic='430' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='431' and @autopsic='431' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='432' and @autopsic='432' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='433' and @autopsic='433' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='434' and @autopsic='434' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='435' and @autopsic='435' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='436' and @autopsic='436' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='437' and @autopsic='437' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='438' and @autopsic='438' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='439' and @autopsic='439' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='43' and @autopsic='43' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='440' and @autopsic='440' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='441' and @autopsic='441' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='442' and @autopsic='442' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='443' and @autopsic='443' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='444' and @autopsic='444' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='445' and @autopsic='445' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='446' and @autopsic='446' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='447' and @autopsic='447' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='448' and @autopsic='448' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='449' and @autopsic='449' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='44' and @autopsic='44' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='450' and @autopsic='450' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='451' and @autopsic='451' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='452' and @autopsic='452' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='453' and @autopsic='453' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='454' and @autopsic='454' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='455' and @autopsic='455' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='456' and @autopsic='456' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='457' and @autopsic='457' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='458' and @autopsic='458' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='459' and @autopsic='459' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='45' and @autopsic='45' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='460' and @autopsic='460' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='461' and @autopsic='461' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='462' and @autopsic='462' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='463' and @autopsic='463' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='464' and @autopsic='464' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='465' and @autopsic='465' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='466' and @autopsic='466' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='467' and @autopsic='467' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='468' and @autopsic='468' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='469' and @autopsic='469' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='46' and @autopsic='46' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='470' and @autopsic='470' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='471' and @autopsic='471' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='472' and @autopsic='472'] -opus/traditions/letterTradition/ZHText/edit/line[@index='473' and @autopsic='473'] -opus/traditions/letterTradition/ZHText/edit/line[@index='474' and @autopsic='474'] -opus/traditions/letterTradition/ZHText/edit/line[@index='475' and @autopsic='475'] -opus/traditions/letterTradition/ZHText/edit/line[@index='476' and @autopsic='476' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='477' and @autopsic='477' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='478' and @autopsic='478' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='479' and @autopsic='479' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='47' and @autopsic='47' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='480' and @autopsic='480' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='481' and @autopsic='481' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='482' and @autopsic='482' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='483' and @autopsic='483' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='484' and @autopsic='484' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='485' and @autopsic='485' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='486' and @autopsic='486' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='487' and @autopsic='487' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='488' and @autopsic='489' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='489' and @autopsic='489' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='48' and @autopsic='48' and @tab='3'] -opus/traditions/letterTradition/ZHText/edit/line[@index='490' and @autopsic='490' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='491' and @autopsic='491' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='492' and @autopsic='492' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='493' and @autopsic='493' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='494' and @autopsic='494' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='495' and @autopsic='495' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='496' and @autopsic='496' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='497' and @autopsic='497' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='498' and @autopsic='498' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='499' and @autopsic='499' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='49' and @autopsic='49' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='500' and @autopsic='500' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='501' and @autopsic='501' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='502' and @autopsic='502' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='503' and @autopsic='503' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='504' and @autopsic='504' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='505' and @autopsic='505' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='506' and @autopsic='506' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='507' and @autopsic='507' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='508' and @autopsic='508' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='509' and @autopsic='509' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='50' and @autopsic='50' and @tab='3'] -opus/traditions/letterTradition/ZHText/edit/line[@index='510' and @autopsic='510' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='511' and @autopsic='511' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='512' and @autopsic='512' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='513' and @autopsic='513' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='514' and @autopsic='514' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='515' and @autopsic='515' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='516' and @autopsic='516' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='517' and @autopsic='517' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='518' and @autopsic='518'] -opus/traditions/letterTradition/ZHText/edit/line[@index='519' and @autopsic='519' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='51' and @autopsic='51' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='520' and @autopsic='520' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='521' and @autopsic='521' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='522' and @autopsic='522' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='523' and @autopsic='523' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='524' and @autopsic='524' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='525' and @autopsic='525' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='526' and @autopsic='526' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='527' and @autopsic='527' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='528' and @autopsic='528' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='529' and @autopsic='529' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='52' and @autopsic='52' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='530' and @autopsic='530' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='531' and @autopsic='531' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='532' and @autopsic='532' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='533' and @autopsic='533' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='534' and @autopsic='534' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='535' and @autopsic='535' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='536' and @autopsic='536' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='537' and @autopsic='537'] -opus/traditions/letterTradition/ZHText/edit/line[@index='538' and @autopsic='538'] -opus/traditions/letterTradition/ZHText/edit/line[@index='539' and @autopsic='539' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='53' and @autopsic='53' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='540' and @autopsic='540' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='541' and @autopsic='541' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='542' and @autopsic='542' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='543' and @autopsic='543' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='544' and @autopsic='544' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='545' and @autopsic='545' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='546' and @autopsic='546' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='547' and @autopsic='547' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='548' and @autopsic='548' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='549' and @autopsic='549' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='54' and @autopsic='54' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='550' and @autopsic='550' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='551' and @autopsic='551' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='552' and @autopsic='552' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='553' and @autopsic='553' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='554' and @autopsic='554' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='555' and @autopsic='555' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='556' and @autopsic='556' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='557' and @autopsic='557' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='558' and @autopsic='558' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='559' and @autopsic='559' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='55' and @autopsic='55' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='560' and @autopsic='560' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='561' and @autopsic='561' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='562' and @autopsic='562' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='563' and @autopsic='563' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='564' and @autopsic='564' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='565' and @autopsic='565' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='566' and @autopsic='566' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='567' and @autopsic='567' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='568' and @autopsic='568' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='569' and @autopsic='569' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='56' and @autopsic='56' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='570' and @autopsic='570' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='571' and @autopsic='571' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='572' and @autopsic='572' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='573' and @autopsic='573' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='574' and @autopsic='574'] -opus/traditions/letterTradition/ZHText/edit/line[@index='575' and @autopsic='575'] -opus/traditions/letterTradition/ZHText/edit/line[@index='576' and @autopsic='576'] -opus/traditions/letterTradition/ZHText/edit/line[@index='577' and @autopsic='577'] -opus/traditions/letterTradition/ZHText/edit/line[@index='578' and @autopsic='578' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='579' and @autopsic='579' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='57' and @autopsic='57' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='580' and @autopsic='580' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='581' and @autopsic='581' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='582' and @autopsic='582' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='583' and @autopsic='583' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='584' and @autopsic='584' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='585' and @autopsic='585' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='586' and @autopsic='586' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='587' and @autopsic='587' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='588' and @autopsic='588' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='589' and @autopsic='589' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='58' and @autopsic='58' and @tab='3'] -opus/traditions/letterTradition/ZHText/edit/line[@index='590' and @autopsic='590' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='591' and @autopsic='591' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='592' and @autopsic='592' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='593' and @autopsic='593' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='594' and @autopsic='594' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='595' and @autopsic='595' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='596' and @autopsic='596' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='597' and @autopsic='597' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='598' and @autopsic='598' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='599' and @autopsic='599' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='59' and @autopsic='59' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='600' and @autopsic='600' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='601' and @autopsic='601' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='602' and @autopsic='602' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='603' and @autopsic='603' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='604' and @autopsic='604' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='605' and @autopsic='605' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='606' and @autopsic='606' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='607' and @autopsic='607' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='608' and @autopsic='608' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='609' and @autopsic='609' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='60' and @autopsic='60' and @tab='3'] -opus/traditions/letterTradition/ZHText/edit/line[@index='610' and @autopsic='610' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='611' and @autopsic='611' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='612' and @autopsic='612' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='613' and @autopsic='613' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='614' and @autopsic='614' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='615' and @autopsic='615' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='616' and @autopsic='616' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='617' and @autopsic='617' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='618' and @autopsic='618' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='619' and @autopsic='619' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='61' and @autopsic='61' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='620' and @autopsic='620' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='621' and @autopsic='621' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='622' and @autopsic='622' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='623' and @autopsic='623' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='624' and @autopsic='624' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='625' and @autopsic='625' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='626' and @autopsic='626' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='627' and @autopsic='627' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='628' and @autopsic='628' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='629' and @autopsic='629' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='62' and @autopsic='62' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='630' and @autopsic='630' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='631' and @autopsic='631' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='632' and @autopsic='632' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='633' and @autopsic='633' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='634' and @autopsic='634' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='635' and @autopsic='635' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='636' and @autopsic='636' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='637' and @autopsic='637' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='638' and @autopsic='638' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='639' and @autopsic='639' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='63' and @autopsic='63' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='640' and @autopsic='640' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='641' and @autopsic='641' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='642' and @autopsic='642' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='643' and @autopsic='643' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='644' and @autopsic='644' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='645' and @autopsic='645' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='646' and @autopsic='646' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='647' and @autopsic='647' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='648' and @autopsic='648' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='649' and @autopsic='649' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='64' and @autopsic='64' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='650' and @autopsic='650' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='651' and @autopsic='651' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='652' and @autopsic='652' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='653' and @autopsic='653' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='654' and @autopsic='654' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='655' and @autopsic='655' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='656' and @autopsic='656' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='657' and @autopsic='657' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='658' and @autopsic='658' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='659' and @autopsic='659' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='65' and @autopsic='65' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='660' and @autopsic='660' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='661' and @autopsic='661' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='662' and @autopsic='662' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='663' and @autopsic='663' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='664' and @autopsic='664' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='665' and @autopsic='665' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='666' and @autopsic='666' and @tab='5'] -opus/traditions/letterTradition/ZHText/edit/line[@index='667' and @autopsic='667' and @tab='5'] -opus/traditions/letterTradition/ZHText/edit/line[@index='668' and @autopsic='668' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='669' and @autopsic='669' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='66' and @autopsic='66' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='670' and @autopsic='670' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='671' and @autopsic='671' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='672' and @autopsic='672' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='673' and @autopsic='673' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='674' and @autopsic='674' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='675' and @autopsic='675' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='676' and @autopsic='676' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='677' and @autopsic='677' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='678' and @autopsic='678' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='679' and @autopsic='679' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='67' and @autopsic='67' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='680' and @autopsic='680' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='681' and @autopsic='681' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='682' and @autopsic='682' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='683' and @autopsic='683' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='684' and @autopsic='684' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='685' and @autopsic='685' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='686' and @autopsic='686' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='687' and @autopsic='687' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='688' and @autopsic='688' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='689' and @autopsic='689' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='68' and @autopsic='68' and @tab='3'] -opus/traditions/letterTradition/ZHText/edit/line[@index='690' and @autopsic='690' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='691' and @autopsic='691' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='692' and @autopsic='692' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='693' and @autopsic='693' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='694' and @autopsic='694' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='695' and @autopsic='695' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='69' and @autopsic='69' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='70' and @autopsic='70' and @tab='3'] -opus/traditions/letterTradition/ZHText/edit/line[@index='71' and @autopsic='71' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='72' and @autopsic='72'] -opus/traditions/letterTradition/ZHText/edit/line[@index='73' and @autopsic='73'] -opus/traditions/letterTradition/ZHText/edit/line[@index='74' and @autopsic='74' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='75' and @autopsic='75' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='76' and @autopsic='76' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='77' and @autopsic='77' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='78' and @autopsic='78' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='79' and @autopsic='79' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='7' and @autopsic='7'] -opus/traditions/letterTradition/ZHText/edit/line[@index='7' and @autopsic='7' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='80' and @autopsic='80' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='81' and @autopsic='81' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='82' and @autopsic='82' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='83' and @autopsic='83' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='84' and @autopsic='84' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='85' and @autopsic='85' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='86' and @autopsic='86' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='87' and @autopsic='87' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='88' and @autopsic='88' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='89' and @autopsic='89' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='8' and @autopsic='8'] -opus/traditions/letterTradition/ZHText/edit/line[@index='90' and @autopsic='90' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='91' and @autopsic='91' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='92' and @autopsic='92' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='93' and @autopsic='93' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='94' and @autopsic='94' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='95' and @autopsic='95' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='96' and @autopsic='96' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='97' and @autopsic='97' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='98' and @autopsic='98' and @tab='1'] -opus/traditions/letterTradition/ZHText/edit/line[@index='99' and @autopsic='99' and @tab='2'] -opus/traditions/letterTradition/ZHText/edit/line[@index='9' and @autopsic='9'] -opus/traditions/letterTradition/ZHText/edit/nr -opus/traditions/letterTradition/ZHText/edit/page[@index='475' and @autopsic='475'] -opus/traditions/letterTradition/ZHText/edit/page[@index='476' and @autopsic='476'] -opus/traditions/letterTradition/ZHText/edit[@ref='2056'] -opus/traditions/letterTradition/ZHText/edit[@ref='2057'] -opus/traditions/letterTradition/ZHText/edit[@ref='2058'] -opus/traditions/letterTradition/ZHText/edit[@ref='2059'] -opus/traditions/letterTradition/ZHText/edit[@ref='2060'] -opus/traditions/letterTradition/ZHText/edit[@ref='2061'] -opus/traditions/letterTradition/ZHText/edit[@ref='2062'] -opus/traditions/letterTradition/ZHText/edit[@ref='2063'] -opus/traditions/letterTradition/ZHText/edit[@ref='2064'] -opus/traditions/letterTradition/ZHText/edit[@ref='2065'] -opus/traditions/letterTradition/ZHText/edit[@ref='2066'] -opus/traditions/letterTradition/ZHText/edit[@ref='2067'] -opus/traditions/letterTradition/ZHText/edit[@ref='2069'] -opus/traditions/letterTradition/ZHText/edit[@ref='2070'] -opus/traditions/letterTradition/ZHText/edit[@ref='2071'] -opus/traditions/letterTradition/ZHText/edit[@ref='2072'] -opus/traditions/letterTradition/ZHText/edit[@ref='2340'] -opus/traditions/letterTradition/ZHText/edit[@ref='2341'] -opus/traditions/letterTradition/ZHText/edit[@ref='2342'] -opus/traditions/letterTradition/ZHText/edit[@ref='3310'] -opus/traditions/letterTradition/ZHText/edit[@ref='3311'] -opus/traditions/letterTradition/ZHText/edit[@ref='4090'] -opus/traditions/letterTradition/ZHText/edit[@ref='4091'] -opus/traditions/letterTradition/ZHText/edit[@ref='4289'] -opus/traditions/letterTradition/ZHText/edit[@ref='4290'] -opus/traditions/letterTradition/ZHText/edit[@ref='4546'] -opus/traditions/letterTradition/ZHText/edit[@ref='4547'] -opus/traditions/letterTradition/ZHText/edit[@ref='4548'] -opus/traditions/letterTradition/ZHText/edit[@ref='4549'] -opus/traditions/letterTradition/ZHText/edit[@ref='4550'] -opus/traditions/letterTradition/ZHText/edit[@ref='4551'] -opus/traditions/letterTradition/ZHText/edit[@ref='4641'] -opus/traditions/letterTradition/ZHText/edit[@ref='4642'] -opus/traditions/letterTradition/ZHText/edit[@ref='4643'] -opus/traditions/letterTradition/ZHText/edit[@ref='4730'] -opus/traditions/letterTradition/ZHText/edit[@ref='4731'] -opus/traditions/letterTradition/ZHText/edit[@ref='4732'] -opus/traditions/letterTradition/ZHText/edit[@ref='4733'] -opus/traditions/letterTradition/ZHText/edit[@ref='4734'] -opus/traditions/letterTradition/ZHText/edit[@ref='4735'] -opus/traditions/letterTradition/ZHText/edit[@ref='4736'] -opus/traditions/letterTradition/ZHText/edit[@ref='4737'] -opus/traditions/letterTradition/ZHText/edit[@ref='4738'] -opus/traditions/letterTradition/ZHText/edit[@ref='4739'] -opus/traditions/letterTradition/ZHText/edit[@ref='4740'] -opus/traditions/letterTradition/ZHText/edit[@ref='4741'] -opus/traditions/letterTradition/ZHText/edit[@ref='4742'] -opus/traditions/letterTradition/ZHText/edit[@ref='4743'] -opus/traditions/letterTradition/ZHText/edit[@ref='4744'] -opus/traditions/letterTradition/ZHText/edit[@ref='4745'] -opus/traditions/letterTradition/ZHText/edit[@ref='4746'] -opus/traditions/letterTradition/ZHText/edit[@ref='4747'] -opus/traditions/letterTradition/ZHText/edit[@ref='4748'] -opus/traditions/letterTradition/ZHText/edit[@ref='4749'] -opus/traditions/letterTradition/ZHText/edit[@ref='4750'] -opus/traditions/letterTradition/ZHText/edit[@ref='4751'] -opus/traditions/letterTradition/ZHText/edit[@ref='4752'] -opus/traditions/letterTradition/ZHText/edit[@ref='4753'] -opus/traditions/letterTradition/ZHText/edit[@ref='5000'] -opus/traditions/letterTradition/ZHText/edit[@ref='5001'] -opus/traditions/letterTradition/ZHText/edit[@ref='5002'] -opus/traditions/letterTradition/ZHText/edit[@ref='5003'] -opus/traditions/letterTradition/ZHText/edit[@ref='5006'] -opus/traditions/letterTradition/ZHText/edit[@ref='5007'] -opus/traditions/letterTradition/ZHText/edit[@ref='5008'] -opus/traditions/letterTradition/ZHText/edit[@ref='5009'] -opus/traditions/letterTradition/ZHText/edit[@ref='5010'] -opus/traditions/letterTradition/ZHText/edit[@ref='5011'] -opus/traditions/letterTradition/ZHText/edit[@ref='5012'] -opus/traditions/letterTradition/ZHText/edit[@ref='5013'] -opus/traditions/letterTradition/ZHText/edit[@ref='5014'] -opus/traditions/letterTradition/ZHText/edit[@ref='5015'] -opus/traditions/letterTradition/ZHText/edit[@ref='5016'] -opus/traditions/letterTradition/ZHText/edit[@ref='5017'] -opus/traditions/letterTradition/ZHText/edit[@ref='5018'] -opus/traditions/letterTradition/ZHText/edit[@ref='5019'] -opus/traditions/letterTradition/ZHText/edit[@ref='5020'] -opus/traditions/letterTradition/ZHText/edit[@ref='5021'] -opus/traditions/letterTradition/ZHText/edit[@ref='5022'] -opus/traditions/letterTradition/ZHText/edit[@ref='5023'] -opus/traditions/letterTradition/ZHText/edit[@ref='5024'] -opus/traditions/letterTradition/ZHText/edit[@ref='5025'] -opus/traditions/letterTradition/ZHText/edit[@ref='5035'] -opus/traditions/letterTradition/ZHText/edit[@ref='5609'] -opus/traditions/letterTradition/ZHText/edit[@ref='5610'] -opus/traditions/letterTradition/ZHText/edit[@ref='5611'] -opus/traditions/letterTradition/ZHText/edit[@ref='5612'] -opus/traditions/letterTradition/ZHText/edit[@ref='5761'] -opus/traditions/letterTradition/ZHText/edit[@ref='5926'] -opus/traditions/letterTradition/ZHText/edit[@ref='6012'] -opus/traditions/letterTradition/ZHText/edit[@ref='6094'] -opus/traditions/letterTradition/ZHText/edit[@ref='6119'] -opus/traditions/letterTradition/ZHText/edit[@ref='6120'] -opus/traditions/letterTradition/ZHText/edit[@ref='6127'] -opus/traditions/letterTradition/ZHText/edit[@ref='6128'] -opus/traditions/letterTradition/ZHText/edit[@ref='6130'] -opus/traditions/letterTradition/ZHText/edit[@ref='6131'] -opus/traditions/letterTradition/ZHText/edit[@ref='6132'] -opus/traditions/letterTradition/ZHText/edit[@ref='6133'] -opus/traditions/letterTradition/ZHText/edit[@ref='6479'] -opus/traditions/letterTradition/ZHText/edit[@ref='6480'] -opus/traditions/letterTradition/ZHText/edit[@ref='6544'] -opus/traditions/letterTradition/ZHText/edit[@ref='6550'] -opus/traditions/letterTradition/ZHText/edit[@ref='6551'] -opus/traditions/letterTradition/ZHText/edit[@ref='6553'] -opus/traditions/letterTradition/ZHText/edit[@ref='6554'] -opus/traditions/letterTradition/ZHText/edit[@ref='6753'] -opus/traditions/letterTradition/ZHText/edit[@ref='6754'] -opus/traditions/letterTradition/ZHText/edit[@ref='6755'] -opus/traditions/letterTradition/ZHText/edit[@ref='6756'] -opus/traditions/letterTradition/ZHText/edit[@ref='6757'] -opus/traditions/letterTradition/ZHText/edit[@ref='6758'] -opus/traditions/letterTradition/ZHText/edit[@ref='6759'] -opus/traditions/letterTradition/ZHText/edit[@ref='6760'] -opus/traditions/letterTradition/ZHText/edit[@ref='6761'] -opus/traditions/letterTradition/ZHText/edit[@ref='6762'] -opus/traditions/letterTradition/ZHText/edit[@ref='6763'] -opus/traditions/letterTradition/ZHText/edit[@ref='6764'] -opus/traditions/letterTradition/ZHText/edit[@ref='6765'] -opus/traditions/letterTradition/ZHText/edit[@ref='6766'] -opus/traditions/letterTradition/ZHText/edit[@ref='6767'] -opus/traditions/letterTradition/ZHText/edit[@ref='6768'] -opus/traditions/letterTradition/ZHText/edit[@ref='6769'] -opus/traditions/letterTradition/ZHText/edit[@ref='6770'] -opus/traditions/letterTradition/ZHText/edit[@ref='6771'] -opus/traditions/letterTradition/ZHText/edit[@ref='6772'] -opus/traditions/letterTradition/ZHText/edit[@ref='6773'] -opus/traditions/letterTradition/ZHText/edit[@ref='6774'] -opus/traditions/letterTradition/ZHText/edit[@ref='6775'] -opus/traditions/letterTradition/ZHText/edit[@ref='6776'] -opus/traditions/letterTradition/ZHText/edit[@ref='6777'] -opus/traditions/letterTradition/ZHText/edit[@ref='6778'] -opus/traditions/letterTradition/ZHText/edit[@ref='6779'] -opus/traditions/letterTradition/ZHText/edit[@ref='6780'] -opus/traditions/letterTradition/ZHText/edit[@ref='6781'] -opus/traditions/letterTradition/ZHText/edit[@ref='6783'] -opus/traditions/letterTradition/ZHText/edit[@ref='6784'] -opus/traditions/letterTradition/ZHText/edit[@ref='6785'] -opus/traditions/letterTradition/ZHText/edit/super -opus/traditions/letterTradition/ZHText/edit/ul/line[@index='16' and @autopsic='16'] -opus/traditions/letterTradition/ZHText/edit/ul/line[@index='19' and @autopsic='19'] -opus/traditions/letterTradition/ZHText/edit/ul/line[@index='20' and @autopsic='20'] -opus/traditions/letterTradition/ZHText/edit/ul/line[@index='21' and @autopsic='21'] -opus/traditions/letterTradition/ZHText/hand/align[@pos='center'] -opus/traditions/letterTradition/ZHText/hand/align/super -opus/traditions/letterTradition/ZHText/hand/aq/line[@index='29' and @autopsic='29'] -opus/traditions/letterTradition/ZHText/hand/aq/ul -opus/traditions/letterTradition/ZHText/hand/edit/aq -opus/traditions/letterTradition/ZHText/hand/edit/dul -opus/traditions/letterTradition/ZHText/hand/edit[@ref='4508'] -opus/traditions/letterTradition/ZHText/hand/edit[@ref='4509'] -opus/traditions/letterTradition/ZHText/hand/edit[@ref='4510'] -opus/traditions/letterTradition/ZHText/hand/edit[@ref='4511'] -opus/traditions/letterTradition/ZHText/hand/edit[@ref='4512'] -opus/traditions/letterTradition/ZHText/hand/edit[@ref='4913'] -opus/traditions/letterTradition/ZHText/hand/edit[@ref='4914'] -opus/traditions/letterTradition/ZHText/hand/edit[@ref='4915'] -opus/traditions/letterTradition/ZHText/hand/edit[@ref='4916'] -opus/traditions/letterTradition/ZHText/hand/edit[@ref='4917'] -opus/traditions/letterTradition/ZHText/hand/edit[@ref='4918'] -opus/traditions/letterTradition/ZHText/hand/edit[@ref='4919'] -opus/traditions/letterTradition/ZHText/hand/edit[@ref='4920'] -opus/traditions/letterTradition/ZHText/hand/edit[@ref='4921'] -opus/traditions/letterTradition/ZHText/hand/edit[@ref='4922'] -opus/traditions/letterTradition/ZHText/hand/edit[@ref='4923'] -opus/traditions/letterTradition/ZHText/hand/edit[@ref='4924'] -opus/traditions/letterTradition/ZHText/hand/edit[@ref='4925'] -opus/traditions/letterTradition/ZHText/hand/edit[@ref='4926'] -opus/traditions/letterTradition/ZHText/hand/edit[@ref='6725'] -opus/traditions/letterTradition/ZHText/hand/line[@index='16' and @autopsic='16' and @tab='1'] -opus/traditions/letterTradition/ZHText/hand/line[@index='1' and @autopsic='1' and @tab='1'] -opus/traditions/letterTradition/ZHText/hand/line[@index='23' and @autopsic='23' and @tab='1'] -opus/traditions/letterTradition/ZHText/hand/line[@index='24' and @autopsic='23' and @tab='1'] -opus/traditions/letterTradition/ZHText/hand/line[@index='30' and @autopsic='30' and @tab='1'] -opus/traditions/letterTradition/ZHText/hand/line[@index='35' and @autopsic='35' and @tab='1'] -opus/traditions/letterTradition/ZHText/hand/line[@index='37' and @autopsic='37'] -opus/traditions/letterTradition/ZHText/hand/line[@index='4' and @autopsic='4' and @tab='1'] -opus/traditions/letterTradition/ZHText/hand/line[@index='7' and @autopsic='7' and @tab='1'] -opus/traditions/letterTradition/ZHText/hand/page[@index='545' and @autopsic='545'] -opus/traditions/letterTradition/ZHText/hand[@ref='-1'] -opus/traditions/letterTradition/ZHText/hand[@ref='28'] -opus/traditions/letterTradition/ZHText/hand[@ref='29'] -opus/traditions/letterTradition/ZHText/hand/ul/aq -opus/traditions/letterTradition/ZHText/hb -opus/traditions/letterTradition/ZHText/line[@index='10' and @autopsic='12'] -opus/traditions/letterTradition/ZHText/line[@index='11' and @autopsic='11' and @tab='3'] -opus/traditions/letterTradition/ZHText/line[@index='11' and @autopsic='13'] -opus/traditions/letterTradition/ZHText/line[@index='12' and @autopsic='14'] -opus/traditions/letterTradition/ZHText/line[@index='13' and @autopsic='14'] -opus/traditions/letterTradition/ZHText/line[@index='13' and @autopsic='15'] -opus/traditions/letterTradition/ZHText/line[@index='14' and @autopsic='15'] -opus/traditions/letterTradition/ZHText/line[@index='14' and @autopsic='16'] -opus/traditions/letterTradition/ZHText/line[@index='15' and @autopsic='16' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='15' and @autopsic='17'] -opus/traditions/letterTradition/ZHText/line[@index='16' and @autopsic='16' and @tab='2'] -opus/traditions/letterTradition/ZHText/line[@index='16' and @autopsic='17'] -opus/traditions/letterTradition/ZHText/line[@index='17' and @autopsic='17' and @tab='2'] -opus/traditions/letterTradition/ZHText/line[@index='17' and @autopsic='17' and @tab='3'] -opus/traditions/letterTradition/ZHText/line[@index='17' and @autopsic='18'] -opus/traditions/letterTradition/ZHText/line[@index='17' and @autopsic='19'] -opus/traditions/letterTradition/ZHText/line[@index='18' and @autopsic='18' and @tab='4'] -opus/traditions/letterTradition/ZHText/line[@index='18' and @autopsic='20'] -opus/traditions/letterTradition/ZHText/line[@index='19' and @autopsic='21'] -opus/traditions/letterTradition/ZHText/line[@index='20' and @autopsic='20' and @tab='3'] -opus/traditions/letterTradition/ZHText/line[@index='20' and @autopsic='21' and @tab='7'] -opus/traditions/letterTradition/ZHText/line[@index='20' and @autopsic='22'] -opus/traditions/letterTradition/ZHText/line[@index='21' and @autopsic='21' and @tab='3'] -opus/traditions/letterTradition/ZHText/line[@index='21' and @autopsic='22'] -opus/traditions/letterTradition/ZHText/line[@index='21' and @autopsic='23'] -opus/traditions/letterTradition/ZHText/line[@index='22' and @autopsic='23'] -opus/traditions/letterTradition/ZHText/line[@index='22' and @autopsic='24'] -opus/traditions/letterTradition/ZHText/line[@index='22' and @autopsic='24' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='23' and @autopsic='24'] -opus/traditions/letterTradition/ZHText/line[@index='23' and @autopsic='25'] -opus/traditions/letterTradition/ZHText/line[@index='24' and @autopsic='24' and @tab='3'] -opus/traditions/letterTradition/ZHText/line[@index='24' and @autopsic='25'] -opus/traditions/letterTradition/ZHText/line[@index='25' and @autopsic='23'] -opus/traditions/letterTradition/ZHText/line[@index='25' and @autopsic='25' and @tab='3'] -opus/traditions/letterTradition/ZHText/line[@index='25' and @autopsic='26'] -opus/traditions/letterTradition/ZHText/line[@index='25' and @autopsic='27'] -opus/traditions/letterTradition/ZHText/line[@index='25' and @autopsic='27' and @tab='2'] -opus/traditions/letterTradition/ZHText/line[@index='26' and @autopsic='24'] -opus/traditions/letterTradition/ZHText/line[@index='26' and @autopsic='27'] -opus/traditions/letterTradition/ZHText/line[@index='26' and @autopsic='28'] -opus/traditions/letterTradition/ZHText/line[@index='26' and @autopsic='28' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='27' and @autopsic='25'] -opus/traditions/letterTradition/ZHText/line[@index='27' and @autopsic='27' and @tab='2'] -opus/traditions/letterTradition/ZHText/line[@index='27' and @autopsic='27' and @tab='3'] -opus/traditions/letterTradition/ZHText/line[@index='27' and @autopsic='28'] -opus/traditions/letterTradition/ZHText/line[@index='27' and @autopsic='29'] -opus/traditions/letterTradition/ZHText/line[@index='28' and @autopsic='26'] -opus/traditions/letterTradition/ZHText/line[@index='28' and @autopsic='28' and @tab='3'] -opus/traditions/letterTradition/ZHText/line[@index='28' and @autopsic='29'] -opus/traditions/letterTradition/ZHText/line[@index='28' and @autopsic='30'] -opus/traditions/letterTradition/ZHText/line[@index='29' and @autopsic='27'] -opus/traditions/letterTradition/ZHText/line[@index='29' and @autopsic='30'] -opus/traditions/letterTradition/ZHText/line[@index='29' and @autopsic='31' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='2' and @autopsic='2' and @tab='3'] -opus/traditions/letterTradition/ZHText/line[@index='30' and @autopsic='28'] -opus/traditions/letterTradition/ZHText/line[@index='30' and @autopsic='30' and @tab='2'] -opus/traditions/letterTradition/ZHText/line[@index='30' and @autopsic='30' and @tab='7'] -opus/traditions/letterTradition/ZHText/line[@index='30' and @autopsic='31'] -opus/traditions/letterTradition/ZHText/line[@index='30' and @autopsic='32' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='31' and @autopsic='29'] -opus/traditions/letterTradition/ZHText/line[@index='31' and @autopsic='32' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='31' and @autopsic='33'] -opus/traditions/letterTradition/ZHText/line[@index='31' and @autopsic='34' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='32' and @autopsic='30'] -opus/traditions/letterTradition/ZHText/line[@index='32' and @autopsic='33'] -opus/traditions/letterTradition/ZHText/line[@index='32' and @autopsic='34'] -opus/traditions/letterTradition/ZHText/line[@index='33' and @autopsic='31'] -opus/traditions/letterTradition/ZHText/line[@index='33' and @autopsic='33' and @tab='2'] -opus/traditions/letterTradition/ZHText/line[@index='33' and @autopsic='34'] -opus/traditions/letterTradition/ZHText/line[@index='33' and @autopsic='35'] -opus/traditions/letterTradition/ZHText/line[@index='33' and @autopsic='36'] -opus/traditions/letterTradition/ZHText/line[@index='34' and @autopsic='32'] -opus/traditions/letterTradition/ZHText/line[@index='34' and @autopsic='34' and @tab='4'] -opus/traditions/letterTradition/ZHText/line[@index='34' and @autopsic='35'] -opus/traditions/letterTradition/ZHText/line[@index='34' and @autopsic='36'] -opus/traditions/letterTradition/ZHText/line[@index='34' and @autopsic='37' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='35' and @autopsic='33'] -opus/traditions/letterTradition/ZHText/line[@index='35' and @autopsic='35' and @tab='3'] -opus/traditions/letterTradition/ZHText/line[@index='35' and @autopsic='36'] -opus/traditions/letterTradition/ZHText/line[@index='36' and @autopsic='34'] -opus/traditions/letterTradition/ZHText/line[@index='36' and @autopsic='36' and @tab='2'] -opus/traditions/letterTradition/ZHText/line[@index='37' and @autopsic='35'] -opus/traditions/letterTradition/ZHText/line[@index='38' and @autopsic='36'] -opus/traditions/letterTradition/ZHText/line[@index='38' and @autopsic='38' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='3' and @autopsic='3' and @tab='2'] -opus/traditions/letterTradition/ZHText/line[@index='3' and @autopsic='3' and @tab='3'] -opus/traditions/letterTradition/ZHText/line[@index='45' and @autopsic='45' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='47' and @autopsic='47' and @tab='4'] -opus/traditions/letterTradition/ZHText/line[@index='48' and @autopsic='48' and @tab='4'] -opus/traditions/letterTradition/ZHText/line[@index='49' and @autopsic='49' and @tab='4'] -opus/traditions/letterTradition/ZHText/line[@index='4' and @autopsic='6'] -opus/traditions/letterTradition/ZHText/line[@index='50' and @autopsic='50' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='50' and @autopsic='50' and @tab='4'] -opus/traditions/letterTradition/ZHText/line[@index='52' and @autopsic='52' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='55' and @autopsic='55'] -opus/traditions/letterTradition/ZHText/line[@index='55' and @autopsic='55' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='55' and @autopsic='55' and @type='break' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='57' and @autopsic='57' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='58' and @autopsic='58' and @tab='2'] -opus/traditions/letterTradition/ZHText/line[@index='5' and @autopsic='5' and @tab='2'] -opus/traditions/letterTradition/ZHText/line[@index='5' and @autopsic='7'] -opus/traditions/letterTradition/ZHText/line[@index='61' and @autopsic='61'] -opus/traditions/letterTradition/ZHText/line[@index='61' and @autopsic='61' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='68' and @autopsic='68'] -opus/traditions/letterTradition/ZHText/line[@index='68' and @autopsic='68' and @type='break' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='69' and @autopsic='69'] -opus/traditions/letterTradition/ZHText/line[@index='69' and @autopsic='69' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='6' and @autopsic='8'] -opus/traditions/letterTradition/ZHText/line[@index='73' and @autopsic='73'] -opus/traditions/letterTradition/ZHText/line[@index='73' and @autopsic='73' and @type='break' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='76' and @autopsic='76'] -opus/traditions/letterTradition/ZHText/line[@index='76' and @autopsic='76' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='78' and @autopsic='78'] -opus/traditions/letterTradition/ZHText/line[@index='78' and @autopsic='78' and @tab='4'] -opus/traditions/letterTradition/ZHText/line[@index='79' and @autopsic='79'] -opus/traditions/letterTradition/ZHText/line[@index='79' and @autopsic='79' and @tab='4'] -opus/traditions/letterTradition/ZHText/line[@index='7' and @autopsic='9'] -opus/traditions/letterTradition/ZHText/line[@index='81' and @autopsic='81'] -opus/traditions/letterTradition/ZHText/line[@index='82' and @autopsic='82'] -opus/traditions/letterTradition/ZHText/line[@index='82' and @autopsic='82' and @type='break' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='83' and @autopsic='83'] -opus/traditions/letterTradition/ZHText/line[@index='84' and @autopsic='84'] -opus/traditions/letterTradition/ZHText/line[@index='85' and @autopsic='85'] -opus/traditions/letterTradition/ZHText/line[@index='86' and @autopsic='86'] -opus/traditions/letterTradition/ZHText/line[@index='8' and @autopsic='10'] -opus/traditions/letterTradition/ZHText/line[@index='9' and @autopsic='11' and @tab='1'] -opus/traditions/letterTradition/ZHText/line[@index='9' and @autopsic='9' and @tab='2'] -opus/traditions/letterTradition/ZHText/note/align[@pos='center'] -opus/traditions/letterTradition/ZHText/nr/aq -opus/traditions/letterTradition/ZHText/page[@index='26' and @autopsic='26'] -opus/traditions/letterTradition/ZHText/page[@index='2' and @autopsic='2'] -opus/traditions/letterTradition/ZHText/page[@index='364' and @autopsic='364'] -opus/traditions/letterTradition/ZHText/page[@index='400' and @autopsic='400'] -opus/traditions/letterTradition/ZHText/page[@index='401' and @autopsic='401'] -opus/traditions/letterTradition/ZHText/page[@index='402' and @autopsic='402'] -opus/traditions/letterTradition/ZHText/page[@index='403' and @autopsic='403'] -opus/traditions/letterTradition/ZHText/page[@index='404' and @autopsic='404'] -opus/traditions/letterTradition/ZHText/page[@index='405' and @autopsic='405'] -opus/traditions/letterTradition/ZHText/page[@index='406' and @autopsic='406'] -opus/traditions/letterTradition/ZHText/page[@index='407' and @autopsic='407'] -opus/traditions/letterTradition/ZHText/page[@index='408' and @autopsic='408'] -opus/traditions/letterTradition/ZHText/page[@index='409' and @autopsic='409'] -opus/traditions/letterTradition/ZHText/page[@index='410' and @autopsic='410'] -opus/traditions/letterTradition/ZHText/page[@index='411' and @autopsic='411'] -opus/traditions/letterTradition/ZHText/page[@index='412' and @autopsic='412'] -opus/traditions/letterTradition/ZHText/page[@index='414' and @autopsic='414'] -opus/traditions/letterTradition/ZHText/page[@index='415' and @autopsic='415'] -opus/traditions/letterTradition/ZHText/page[@index='416' and @autopsic='416'] -opus/traditions/letterTradition/ZHText/page[@index='417' and @autopsic='417'] -opus/traditions/letterTradition/ZHText/page[@index='418' and @autopsic='418'] -opus/traditions/letterTradition/ZHText/page[@index='419' and @autopsic='419'] -opus/traditions/letterTradition/ZHText/page[@index='420' and @autopsic='420'] -opus/traditions/letterTradition/ZHText/page[@index='421' and @autopsic='421'] -opus/traditions/letterTradition/ZHText/page[@index='422' and @autopsic='422'] -opus/traditions/letterTradition/ZHText/page[@index='423' and @autopsic='423'] -opus/traditions/letterTradition/ZHText/page[@index='424' and @autopsic='424'] -opus/traditions/letterTradition/ZHText/page[@index='425' and @autopsic='425'] -opus/traditions/letterTradition/ZHText/page[@index='426' and @autopsic='426'] -opus/traditions/letterTradition/ZHText/page[@index='428' and @autopsic='428'] -opus/traditions/letterTradition/ZHText/page[@index='429' and @autopsic='429'] -opus/traditions/letterTradition/ZHText/page[@index='431' and @autopsic='431'] -opus/traditions/letterTradition/ZHText/page[@index='434' and @autopsic='434'] -opus/traditions/letterTradition/ZHText/page[@index='435' and @autopsic='435'] -opus/traditions/letterTradition/ZHText/page[@index='438' and @autopsic='438'] -opus/traditions/letterTradition/ZHText/page[@index='439' and @autopsic='439'] -opus/traditions/letterTradition/ZHText/page[@index='441' and @autopsic='441'] -opus/traditions/letterTradition/ZHText/page[@index='442' and @autopsic='442'] -opus/traditions/letterTradition/ZHText/page[@index='443' and @autopsic='443'] -opus/traditions/letterTradition/ZHText/page[@index='444' and @autopsic='444'] -opus/traditions/letterTradition/ZHText/page[@index='445' and @autopsic='445'] -opus/traditions/letterTradition/ZHText/page[@index='446' and @autopsic='446'] -opus/traditions/letterTradition/ZHText/page[@index='460' and @autopsic='460'] -opus/traditions/letterTradition/ZHText/page[@index='462' and @autopsic='462'] -opus/traditions/letterTradition/ZHText/page[@index='463' and @autopsic='463'] -opus/traditions/letterTradition/ZHText/page[@index='466' and @autopsic='466'] -opus/traditions/letterTradition/ZHText/page[@index='474' and @autopsic='474'] -opus/traditions/letterTradition/ZHText/page[@index='479' and @autopsic='379'] -opus/traditions/letterTradition/ZHText/page[@index='483' and @autopsic='483'] -opus/traditions/letterTradition/ZHText/page[@index='484' and @autopsic='484'] -opus/traditions/letterTradition/ZHText/page[@index='488' and @autopsic='488'] -opus/traditions/letterTradition/ZHText/page[@index='489' and @autopsic='489'] -opus/traditions/letterTradition/ZHText/page[@index='503' and @autopsic='503'] -opus/traditions/letterTradition/ZHText/page[@index='507' and @autopsic='507'] -opus/traditions/letterTradition/ZHText/page[@index='508' and @autopsic='508'] -opus/traditions/letterTradition/ZHText/page[@index='510' and @autopsic='510'] -opus/traditions/letterTradition/ZHText/page[@index='511' and @autopsic='511'] -opus/traditions/letterTradition/ZHText/page[@index='512' and @autopsic='512'] -opus/traditions/letterTradition/ZHText/page[@index='513' and @autopsic='513'] -opus/traditions/letterTradition/ZHText/page[@index='514' and @autopsic='514'] -opus/traditions/letterTradition/ZHText/page[@index='515' and @autopsic='515'] -opus/traditions/letterTradition/ZHText/page[@index='516' and @autopsic='516'] -opus/traditions/letterTradition/ZHText/page[@index='517' and @autopsic='517'] -opus/traditions/letterTradition/ZHText/page[@index='527' and @autopsic='527'] -opus/traditions/letterTradition/ZHText/page[@index='528' and @autopsic='528'] -opus/traditions/letterTradition/ZHText/page[@index='529' and @autopsic='529'] -opus/traditions/letterTradition/ZHText/page[@index='530' and @autopsic='530'] -opus/traditions/letterTradition/ZHText/page[@index='531' and @autopsic='531'] -opus/traditions/letterTradition/ZHText/page[@index='533' and @autopsic='533'] -opus/traditions/letterTradition/ZHText/page[@index='534' and @autopsic='534'] -opus/traditions/letterTradition/ZHText/page[@index='535' and @autopsic='535'] -opus/traditions/letterTradition/ZHText/page[@index='536' and @autopsic='536'] -opus/traditions/letterTradition/ZHText/page[@index='537' and @autopsic='537'] -opus/traditions/letterTradition/ZHText/page[@index='538' and @autopsic='538'] -opus/traditions/letterTradition/ZHText/page[@index='539' and @autopsic='539'] -opus/traditions/letterTradition/ZHText/page[@index='540' and @autopsic='540'] -opus/traditions/letterTradition/ZHText/page[@index='542' and @autopsic='542'] -opus/traditions/letterTradition/ZHText/page[@index='544' and @autopsic='544'] -opus/traditions/letterTradition/ZHText/page[@index='546' and @autopsic='546'] -opus/traditions/letterTradition/ZHText/page[@index='548' and @autopsic='548'] -opus/traditions/letterTradition/ZHText/page[@index='550' and @autopsic='550'] -opus/traditions/letterTradition/ZHText/page[@index='556' and @autopsic='556'] -opus/traditions/letterTradition/ZHText/page[@index='559' and @autopsic='559'] -opus/traditions/letterTradition/ZHText/page[@index='564' and @autopsic='564'] -opus/traditions/letterTradition/ZHText/page[@index='574' and @autopsic='574'] -opus/traditions/letterTradition/ZHText/page[@index='575' and @autopsic='575'] -opus/traditions/letterTradition/ZHText/page[@index='5' and @autopsic='5'] -opus/traditions/letterTradition/ZHText/page[@index='930' and @autopsic='930'] -opus/traditions/letterTradition/ZHText/tabs -opus/traditions/letterTradition/ZHText/tabs/line[@index='7' and @autopsic='7'] -opus/traditions/letterTradition/ZHText/tabs/line[@index='8' and @autopsic='8'] -opus/traditions/letterTradition/ZHText/tabs/line[@index='9' and @autopsic='9'] -opus/traditions/letterTradition/ZHText/tabs/tab/aq -opus/traditions/letterTradition/ZHText/tabs/tab/del -opus/traditions/letterTradition/ZHText/tabs/tab/ful -opus/traditions/letterTradition/ZHText/tabs/tab/ful/del -opus/traditions/letterTradition/ZHText/tabs/tab/ful/del/nr -opus/traditions/letterTradition/ZHText/tabs/tab[@value='0-12'] -opus/traditions/letterTradition/ZHText/ul/edit[@ref='2068'] -opus/traditions/letterTradition/ZHText/ul/edit[@ref='4413'] -opus/traditions/letterTradition/ZHText/ul/edit[@ref='6549'] -opus/traditions/letterTradition/ZHText/ul/edit[@ref='6552'] -opus/traditions/letterTradition/ZHText/ul/line[@index='15' and @autopsic='15'] -opus/traditions/letterTradition/ZHText/ul/line[@index='16' and @autopsic='16'] -opus/traditions/letterTradition/ZHText/ul/line[@index='21' and @autopsic='21'] -opus/traditions/letterTradition/ZHText/ul/line[@index='22' and @autopsic='22'] -opus/traditions/letterTradition/ZHText/ul/line[@index='23' and @autopsic='23'] -opus/traditions/letterTradition/ZHText/ul/line[@index='23' and @autopsic='25'] -opus/traditions/letterTradition/ZHText/ul/line[@index='24' and @autopsic='24'] -opus/traditions/letterTradition/ZHText/ul/line[@index='26' and @autopsic='26'] -opus/traditions/letterTradition/ZHText/ul/line[@index='27' and @autopsic='29'] -opus/traditions/letterTradition/ZHText/ul/line[@index='28' and @autopsic='28'] -opus/traditions/letterTradition/ZHText/ul/line[@index='28' and @autopsic='30'] -opus/traditions/letterTradition/ZHText/ul/line[@index='29' and @autopsic='29'] -opus/traditions/letterTradition/ZHText/ul/line[@index='29' and @autopsic='29' and @tab='2'] -opus/traditions/letterTradition/ZHText/ul/line[@index='2' and @autopsic='2'] -opus/traditions/letterTradition/ZHText/ul/line[@index='30' and @autopsic='32'] -opus/traditions/letterTradition/ZHText/ul/line[@index='32' and @autopsic='32'] -opus/traditions/letterTradition/ZHText/ul/line[@index='32' and @autopsic='35'] -opus/traditions/letterTradition/ZHText/ul/line[@index='35' and @autopsic='35'] -opus/traditions/letterTradition/ZHText/ul/line[@index='36' and @autopsic='36'] -opus/traditions/letterTradition/ZHText/ul/line[@index='3' and @autopsic='3' and @tab='1'] -opus/traditions/letterTradition/ZHText/ul/line[@index='41' and @autopsic='41'] -opus/traditions/letterTradition/ZHText/ul/line[@index='4' and @autopsic='4'] -opus/traditions/letterTradition/ZHText/ul/line[@index='5' and @autopsic='5'] -opus/traditions/letterTradition/ZHText/ul/line[@index='5' and @autopsic='5' and @tab='1'] -opus/traditions/letterTradition/ZHText/ul/super/aq diff --git a/HaWeb/wwwroot/css/index.css b/HaWeb/wwwroot/css/index.css index 9b29fc3..e22570d 100644 --- a/HaWeb/wwwroot/css/index.css +++ b/HaWeb/wwwroot/css/index.css @@ -227,7 +227,7 @@ } .ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist { - @apply max-h-[23rem] overflow-y-auto overflow-x-hidden py-1 pl-1 mr-2 + @apply max-h-[23rem] overflow-y-auto overflow-x-hidden py-1 pl-1 mr-2 transition-all } .ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a { @@ -235,6 +235,6 @@ } .ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd) { - @apply block + } -} \ No newline at end of file +} diff --git a/HaWeb/wwwroot/css/notifications.css b/HaWeb/wwwroot/css/notifications.css new file mode 100644 index 0000000..023f233 --- /dev/null +++ b/HaWeb/wwwroot/css/notifications.css @@ -0,0 +1,84 @@ +@layer components { + .ha-notifications { + @apply fixed right-5 bottom-4 px-3 min-w-full + } + + .ha-notifications a { + @apply underline decoration-dotted hover:decoration-solid + } + + + .ha-notifications .ha-notcontent { + @apply absolute bottom-0 right-0 flex flex-row + } + + .ha-notifications.loading .ha-noticon { + + } + + .ha-notifications.green { + + } + + .ha-notifications.green .ha-noticon { + @apply text-emerald-700 + } + + .ha-notifications.orange { + + } + + .ha-notifications.orange .ha-noticon { + @apply text-yellow-500 + } + + .ha-notifications.red { + + } + + .ha-notifications.red .ha-noticon { + @apply text-rose-600 + } + + .ha-noticon { + @apply w-5 inline-block pt-1 relative top-[2px] text-slate-400 transition-all duration-500 + } + + .ha-noticon svg { + @apply shadow-red-800 drop-shadow-md + } + + .ha-commslog { + @apply shadow-md inline-block bg-slate-50 mr-2 px-2 py-0.5 opacity-0 transition-all duration-300 text-sm font-mono + } + + .ha-notifications:hover .ha-commslog { + @apply !opacity-100 + } + + .ha-notifications:hover .ha-noticon svg { + @apply !opacity-100 drop-shadow-xl + } +} + +.ha-notifications.visible .ha-commslog { + +} + +.ha-notifications.loading .ha-noticon { + animation: ha-pulse 1.1s cubic-bezier(0.4, 0, 0.6, 1) infinite; + } + + @keyframes ha-pulse { + 0%, 100% { + opacity: .8; + } + 50% { + opacity: .6; + } + } + + .ha-notifications.imp .ha-commslog { + animation: ha-pulse 5s cubic-bezier(0.4, 0, 0.6, 1); + animation-iteration-count: 1; + } diff --git a/HaWeb/wwwroot/css/output.css b/HaWeb/wwwroot/css/output.css index 23255cd..5527207 100644 --- a/HaWeb/wwwroot/css/output.css +++ b/HaWeb/wwwroot/css/output.css @@ -1 +1 @@ -/*! tailwindcss v3.1.1 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;font-family:Biolinum,sans-serif;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace,mono;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::-webkit-backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }body{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity));overflow-x:hidden}.dark body{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));background-image:none;color:rgb(255 255 255/var(--tw-text-opacity))}@media (min-width:940px){body{overflow-x:auto;overflow-y:scroll}}.ha-added,.ha-added :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-bg-opacity:1;background-color:rgb(203 213 225/var(--tw-bg-opacity))}.dark .ha-added,.dark .ha-added :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-bg-opacity:1;background-color:rgb(71 85 105/var(--tw-bg-opacity))}.ha-note,.ha-note :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.dark .ha-note,.dark .ha-note :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}.ha-ful,.ha-ful :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.dark .ha-ful,.dark .ha-ful :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.ha-tul,.ha-tul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.dark .ha-tul,.dark .ha-tul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.ha-diagdel:before{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.dark .ha-diagdel:before{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.active{color:rgb(216 0 0/var(--tw-text-opacity))!important}.active,.dark .active{--tw-text-opacity:1!important}.dark .active{color:rgb(0 0 0/var(--tw-text-opacity))!important}.active:hover{--tw-text-opacity:1!important;color:rgb(216 0 0/var(--tw-text-opacity))!important}.dark .active:hover{--tw-text-opacity:1!important;color:rgb(31 41 55/var(--tw-text-opacity))!important}*{transition-duration:.1s;transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1)}body{font-size:1rem;height:100%;line-height:1.5rem;width:100%}@media (min-width:1190px){body{font-size:1.15rem;line-height:1.75rem}}.ha-found{--tw-text-opacity:1!important;color:rgb(50 112 184/var(--tw-text-opacity))!important}.ha-location{--tw-text-opacity:1!important;color:rgb(216 0 0/var(--tw-text-opacity))!important;display:none;font-size:1.25rem;line-height:1.75rem;position:absolute}@media (min-width:700px){.ha-location{display:inline-block}}.ha-zhbreak{display:none}@media (min-width:700px){.ha-zhbreak{display:inline}}.ha-up{position:relative;top:-.75rem}.ha-bzg{font-family:Libertine,serif!important;font-size:.7rem!important;font-weight:600!important;line-height:1rem!important}.ha-literal,.ha-title{display:inline}.ha-title{font-style:italic}.ha-insertedlemma{display:inline}.ha-serif{font-family:Libertine,serif}.ha-aq,.ha-aq :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){font-family:Biolinum,sans-serif}.ha-ul,.ha-ul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){-webkit-text-decoration-line:underline;text-decoration-line:underline}.ha-del,.ha-del :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-diagdel,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){display:inline;-webkit-text-decoration-line:line-through;text-decoration-line:line-through}.ha-hand,.ha-hand :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){font-family:Playfair,serif;font-size:.9rem}.ha-added,.ha-added :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){border-radius:.125rem;padding-left:.125rem;padding-right:.125rem}.ha-emph :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box),.ha-note,.ha-note :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){font-style:italic}.ha-sup:not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){font-size:80%;position:relative;top:-.3em}.ha-super:not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){display:inline-block;font-size:.7rem;font-variant-numeric:normal;line-height:1rem;line-height:1;position:relative;top:-.3em;vertical-align:baseline}.ha-sub:not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){bottom:-.25em;font-size:.7rem;line-height:1rem;line-height:1;position:relative;vertical-align:baseline}.ha-ful,.ha-ful :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){border-bottom-width:1px;display:inline;padding-bottom:2px}.ha-dul,.ha-dul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:double;text-decoration-style:double}.ha-tul,.ha-tul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){border-bottom-width:3px;border-style:double;-webkit-text-decoration-line:underline;text-decoration-line:underline}.up{position:relative;top:-.5em}.ha-alignright:not(.reference *,.reference,.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){float:right}.ha-aligncenter:not(.reference *,.reference,.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-translate-x:-50%;left:45%;position:absolute;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));white-space:nowrap}.ha-sal{display:inline-block;margin-left:1.5rem}.ha-letlink{font-variant-caps:all-petite-caps}.ha-indent-1{padding-left:.5rem}@media (min-width:700px){.ha-indent-1{padding-left:1rem}}.ha-indent-2{padding-left:1rem}@media (min-width:700px){.ha-indent-2{padding-left:2rem}}.ha-indent-3{padding-left:1.5rem}@media (min-width:700px){.ha-indent-3{padding-left:3rem}}.ha-indent-4{padding-left:2rem}@media (min-width:700px){.ha-indent-4{padding-left:4rem}}.ha-indent-5{padding-left:2.5rem}@media (min-width:700px){.ha-indent-5{padding-left:5rem}}.ha-indent-6{padding-left:5rem}@media (min-width:700px){.ha-indent-6{padding-left:11rem}}.ha-indent-7{padding-left:8rem}@media (min-width:700px){.ha-indent-7{padding-left:16rem}}.ha-collapsed-box,.ha-collapsed-box *{cursor:default;min-height:0;min-width:0;overflow:hidden;text-overflow:ellipsis;z-index:0}.ha-expanded-box{height:auto!important;max-height:100vh!important;padding-bottom:.25rem;z-index:1000}.ha-topnav-dropdown .ha-topnav-dropdown-content{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-bottom-width:1px;border-color:rgb(148 163 184/var(--tw-border-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-topnav-dropdown .ha-topnav-dropdown-content a:hover{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.ha-topnav a{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-topnav a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}@media (min-width:1190px){.ha-topnav a{border-bottom-width:4px;border-color:transparent}}.dark .ha-topnav a.active{--tw-border-opacity:1;border-color:rgb(51 65 85/var(--tw-border-opacity));font-weight:700}@media (min-width:1190px){.ha-topnav a.active{--tw-border-opacity:1;border-bottom-width:4px;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);border-bottom-width:1px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}}.ha-menusymbol svg{stroke:#000;--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.ha-topnav{display:flex}@media (min-width:940px){.ha-topnav{font-size:1.15rem;line-height:1.75rem}}@media (min-width:1190px){.ha-topnav{flex-grow:0;flex-shrink:0;place-self:end}}@media (min-width:1440px){.ha-topnav{margin-bottom:.25rem}}@media (min-width:1680px){.ha-topnav{font-size:1.25rem;line-height:1.75rem}}.ha-topnav a{display:none;margin-right:1.5rem}@media (min-width:1190px){.ha-topnav a{display:inline-block}}@media (min-width:1680px){.ha-topnav a{margin-right:1.75rem}}.ha-topnav a:last-child{margin-right:0}.ha-topnav-dropdown{display:none}@media (min-width:1190px){.ha-topnav-dropdown{display:inline-block;position:relative}.ha-topnav-dropdown:hover .ha-topnav-dropdown-content{display:block}}.ha-topnav-dropdown .ha-topnav-dropdown-content{display:none;margin-right:1.5rem;min-width:130px;padding-top:.25rem;right:0;white-space:nowrap;z-index:50}@media (min-width:1190px){.ha-topnav-dropdown .ha-topnav-dropdown-content{position:absolute}}.ha-topnav-dropdown .ha-topnav-dropdown-content a{display:block;margin-right:0;padding:.5rem .75rem .5rem .5rem;white-space:nowrap}.ha-topnav-dropdown .ha-topnav-dropdown-content .active{border-style:none}.ha-topnav a.active{-webkit-text-decoration-line:underline;text-decoration-line:underline;text-underline-offset:2px}@media (min-width:1190px){.ha-topnav a.active{-webkit-text-decoration-line:none;text-decoration-line:none}}.ha-topnav.ha-topnav-collapsed{display:block;font-size:1rem;height:100%;line-height:1.5rem;margin-top:1rem;width:100%}@media (min-width:940px){.ha-topnav.ha-topnav-collapsed{font-size:1.15rem;line-height:1.75rem}}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed{display:flex;margin-top:0;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}}@media (min-width:1680px){.ha-topnav.ha-topnav-collapsed{font-size:1.25rem;line-height:1.75rem}}.ha-topnav.ha-topnav-collapsed a{clear:both;display:block;padding-bottom:.25rem;padding-top:.25rem;text-align:left;width:100%}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed a{display:inline-block;padding-bottom:0;padding-top:0;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown{display:block}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown{display:inline-block}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown:hover .ha-topnav-dropdown-content{display:block}}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;border-style:none;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);display:block;padding-top:0}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content{display:none;padding-top:.5rem}}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content a{padding-bottom:.25rem;padding-top:.25rem}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content a{padding-bottom:.5rem;padding-top:.5rem}}header .switchsites{bottom:-2.75rem;display:none;position:absolute;right:0}@media (min-width:940px){header .switchsites{display:block}}header .switchsites .switchsitesbtn{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;--tw-drop-shadow:drop-shadow(0 1px 1px rgba(0,0,0,.05));background-color:rgb(249 250 251/var(--tw-bg-opacity));border-bottom-width:1px;border-color:rgb(148 163 184/var(--tw-border-opacity));box-sizing:border-box;color:rgb(30 41 59/var(--tw-text-opacity));display:flex;font-size:1rem;line-height:1.5rem;width:auto}.dark header .switchsites .switchsitesbtn,header .switchsites .switchsitesbtn{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.dark header .switchsites .switchsitesbtn{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-drop-shadow:drop-shadow(0 4px 3px rgba(0,0,0,.07)) drop-shadow(0 2px 2px rgba(0,0,0,.06));background-color:rgb(15 23 42/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}header .switchsites .switchsitesbtn:hover{--tw-text-opacity:1;--tw-drop-shadow:drop-shadow(0 1px 2px rgba(0,0,0,.1)) drop-shadow(0 1px 1px rgba(0,0,0,.06));color:rgb(0 0 0/var(--tw-text-opacity));filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.dark header .switchsites .switchsitesbtn:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}header .switchsites .switchsitesbtn img{align-self:center;display:block;height:1.25rem;margin-left:.5rem;margin-right:.5rem}header .switchsites .switchsitesbtn .switchsitestext{display:block;margin:.25rem .5rem .125rem .25rem;white-space:nowrap}header .switchsites .switchsitesbtn .switchsitesarrow{display:block;height:2rem;padding:.25rem .5rem .125rem .25rem}.ha-footer .ha-footertext{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));color:rgb(23 53 87/var(--tw-text-opacity))}.dark .ha-footer .ha-footertext{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.ha-footer .ha-themetoggles{--tw-bg-opacity:1;--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);background-color:rgb(226 232 240/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);transition-duration:.3s;transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1)}.dark .ha-footer .ha-themetoggles{--tw-bg-opacity:1;background-color:rgb(30 41 59/var(--tw-bg-opacity))}.ha-footer .ha-themetoggles #ha-toggledark:checked~.ha-themetoggleslider{background-color:rgb(226 232 240/var(--tw-bg-opacity))}.ha-footer .ha-themetoggles #ha-togglebright:checked~.ha-themetoggleslider,.ha-footer .ha-themetoggles #ha-toggledark:checked~.ha-themetoggleslider{--tw-bg-opacity:1;transition-duration:.3s;transition-property:color,background-color,border-color,fill,stroke,-webkit-text-decoration-color;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,-webkit-text-decoration-color;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-footer .ha-themetoggles #ha-togglebright:checked~.ha-themetoggleslider{background-color:rgb(248 250 252/var(--tw-bg-opacity))}.ha-footer{font-family:Libertine,serif}.ha-footer .ha-footertext{font-size:.85rem;line-height:1.25rem;margin-left:auto;margin-right:auto;max-width:1190px;padding:.5rem 1rem;text-align:right}.ha-footer a{-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-footer a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-footer .ha-themetoggles{border-radius:1.5rem;height:1rem;padding-left:.125rem;padding-right:.125rem;position:relative;white-space:nowrap;width:34px}.ha-footer .ha-themetoggles *{float:left}.ha-footer .ha-themetoggles input[type=radio]{display:none}.ha-footer .ha-themetoggles label{border-radius:1.5rem;cursor:pointer;display:block;height:11px;margin:3px 2px;text-align:center;width:11px;z-index:10}.ha-footer .ha-themetoggles .ha-themetoggleslider{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);border-radius:1.5rem;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);height:11px;position:absolute;top:3px;transition-duration:.1s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);width:11px}.ha-footer .ha-themetoggles #ha-toggledark:checked~.ha-themetoggleslider{left:.25rem}.ha-footer .ha-themetoggles #ha-togglebright:checked~.ha-themetoggleslider{left:19px}.ha-scrollbutton{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-bottom-left-radius:.75rem;border-top-left-radius:.75rem;bottom:1.5rem;color:rgb(30 69 112/var(--tw-text-opacity));cursor:pointer;opacity:0;padding:.5rem 1.5rem .5rem .5rem;position:fixed;right:0;text-align:center;transition-duration:.5s;transition-property:opacity;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-scrollbutton,.ha-scrollbutton:hover{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-scrollbutton:hover{--tw-text-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);color:rgb(43 97 158/var(--tw-text-opacity))}.dark .ha-scrollbutton{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.ha-scrollbuttonarrow{height:2rem;width:2rem}@media (min-width:1190px){.ha-scrollbuttonarrow{height:2.5rem;width:2.5rem}}.ha-static{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-static{--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.ha-static h3{--tw-text-opacity:1;color:rgb(23 53 87/var(--tw-text-opacity))}.dark .ha-static h3{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity));font-weight:700}.ha-static table th{--tw-text-opacity:1;color:rgb(23 53 87/var(--tw-text-opacity))}.dark .ha-static table th{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity));font-weight:700}.ha-static table tr:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.dark .ha-static table tr:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity))}.ha-static{font-family:Libertine,serif;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;padding:1rem;width:100%}@media (min-width:940px){.ha-static{padding:3rem 4rem}.ha-static .ha-static-right-margin{padding-right:15rem}}@media (min-width:1190px){.ha-static .ha-static-right-margin{padding-right:20rem}}.ha-static h1{font-size:1.5rem;font-weight:700;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none;line-height:2rem;margin-bottom:2.25rem}@media (min-width:1190px){.ha-static h1{font-size:3rem;font-weight:400;line-height:1}}.ha-static h2{font-size:1.15rem;line-height:1.75rem;margin-bottom:.75rem;margin-top:1rem}@media (min-width:1190px){.ha-static h2{font-size:1.5rem;line-height:2rem}}.ha-static h3{font-weight:700;margin-bottom:.5rem;margin-top:1rem}.ha-static table{margin-bottom:.75rem;margin-top:.75rem;width:100%}.ha-static table tr td p{margin-bottom:.5rem!important;margin-top:.5rem!important}.ha-static table th{font-weight:700;padding-left:.5rem;padding-right:.5rem;text-align:left}@media (min-width:1190px){.ha-static table th{padding-right:1rem}}.ha-static table tr td{padding-left:.5rem;padding-right:.5rem;vertical-align:top}@media (min-width:1190px){.ha-static table tr td{padding-right:1rem}.ha-static table tr td:last-child{white-space:normal}}.ha-static p{margin-bottom:1rem;margin-top:1rem}.ha-static a{-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-static a,.ha-static a:hover{-webkit-text-decoration-line:underline;text-decoration-line:underline}.ha-static a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-static .ha-footnote{font-size:.85rem;line-height:1.25rem;position:relative}@media (min-width:1190px){.ha-static .ha-footnote{font-size:1rem;line-height:1.5rem}}.ha-static .ha-footnote .ha-footnote-ref{display:inline-block;left:-2.5rem;position:absolute;text-align:right;width:2rem}.ha-register .ha-register-body,.ha-register .ha-register-head{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-register .ha-register-body,.dark .ha-register .ha-register-head{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);background-color:rgb(15 23 42/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgb(248 250 252/var(--tw-text-opacity))}.ha-register .ha-register-head{--tw-border-opacity:1;border-bottom-width:2px;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-register .ha-register-head .ha-register-nav a{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-register .ha-register-head .ha-register-nav a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dark .ha-register .ha-register-head .ha-register-nav a{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark .ha-register .ha-register-head .ha-register-nav a:hover{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.ha-register .ha-register-head .ha-register-nav a.active{--tw-border-opacity:1;border-bottom-width:2px;border-color:rgb(226 232 240/var(--tw-border-opacity))}.dark .ha-register .ha-register-head .ha-register-nav a.active{--tw-text-opacity:1!important;color:rgb(229 231 235/var(--tw-text-opacity))!important;font-weight:700}.dark .ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks,.dark .ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity));color:rgb(248 250 252/var(--tw-text-opacity))}@media (min-width:1190px){.ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}}.ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks:before,.ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks:before{--tw-bg-opacity:1;background-color:rgb(43 97 158/var(--tw-bg-opacity))}.dark .ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks:before,.dark .ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks:before{--tw-bg-opacity:1;background-color:rgb(100 116 139/var(--tw-bg-opacity))}.ha-register .ha-register-body .ha-commenthead .ha-letlinks.ha-expanded-box{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.dark .ha-register .ha-register-body .ha-commenthead .ha-letlinks.ha-expanded-box{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-register .ha-btn-collapsed-box{margin-top:.125rem}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dark .ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks a{-webkit-text-decoration-line:none;text-decoration-line:none}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks a:hover{color:rgb(23 53 87/var(--tw-text-opacity));-webkit-text-decoration-line:underline;text-decoration-line:underline}.dark .ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks a:hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.dark .ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ha-register{font-family:Libertine,serif;font-variant-numeric:oldstyle-nums;width:100%}.ha-register .ha-register-body,.ha-register .ha-register-head{padding-left:2.25rem;padding-right:2.25rem;padding-top:2.25rem}@media (min-width:940px){.ha-register .ha-register-body,.ha-register .ha-register-head{padding-left:4rem;padding-right:4rem;padding-top:3rem}}.ha-register .ha-register-head{border-top-left-radius:.125rem;border-top-right-radius:.125rem}.ha-register .ha-register-head h1{display:inline-block;font-size:1.5rem;font-weight:700;line-height:2rem;margin-bottom:1.5rem}@media (min-width:1190px){.ha-register .ha-register-head h1{font-size:3rem;font-weight:400;line-height:1}}.ha-register .ha-register-head .ha-register-add a .ha-register-add-text{-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-register .ha-register-head .ha-register-add a .ha-register-add-text:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-register .ha-register-head .ha-register-add a{display:flex;flex-direction:row;font-family:Biolinum,sans-serif;font-size:.85rem;line-height:1.25rem;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.ha-register .ha-register-head .ha-register-add a .ha-register-add-plusbutton{font-weight:700;line-height:1;padding-bottom:.25rem;padding-top:.25rem}.ha-register .ha-register-head .ha-register-add a .ha-register-add-text{line-height:1;padding-left:.25rem;padding-right:.5rem;padding-top:.25rem}.ha-register .ha-register-head form{-moz-column-gap:.5rem;column-gap:.5rem;display:flex;flex-direction:row;font-family:Biolinum,sans-serif;margin-bottom:.25rem;margin-top:-.25rem;padding-bottom:.25rem;padding-top:.25rem}.ha-register .ha-register-head form input{border-width:1px;flex-grow:0;min-width:0;padding-left:.25rem;padding-right:.25rem}.ha-register .ha-register-head form button{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;padding-left:.25rem;padding-right:.25rem}.ha-register .ha-register-head form button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-register .ha-register-head form button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-register .ha-register-head form button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-register .ha-register-head .ha-register-nav{font-family:Biolinum,sans-serif;margin-top:1.5rem}.ha-register .ha-register-head .ha-register-nav a{display:inline-block;margin-right:.25rem;padding-left:.25rem;padding-right:.25rem}@media (min-width:940px){.ha-register .ha-register-head .ha-register-nav a{margin-right:.75rem}}.ha-register .ha-register-head .ha-register-nav a:first{padding-left:0}.ha-register .ha-register-head .ha-register-nav .ha-register-left-nav,.ha-register .ha-register-head .ha-register-nav .ha-register-right-nav{display:inline-block}.ha-register .ha-register-body{border-bottom-left-radius:.125rem;border-bottom-right-radius:.125rem;padding-bottom:2.25rem}@media (min-width:940px){.ha-register .ha-register-body{padding-bottom:3rem;padding-right:29rem}}.ha-register .ha-register-body .ha-comment{display:block;margin-bottom:2.25rem}@media (min-width:940px){.ha-register .ha-register-body .ha-comment{margin-bottom:3rem}}.ha-register .ha-register-body .ha-comment a{-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-register .ha-register-body .ha-comment a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-register .ha-register-body .ha-comment .ha-headcomment{display:block}@media (min-width:1190px){.ha-register .ha-register-body .ha-comment .ha-headcomment{position:relative}}.ha-register .ha-register-body .ha-comment .ha-subcomment{display:block;margin-left:2rem;margin-top:.5rem}@media (min-width:1190px){.ha-register .ha-register-body .ha-comment .ha-subcomment{position:relative}}.ha-register .ha-register-body .ha-comment .ha-commenthead{display:block}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-lemma{display:inline;font-weight:700}.ha-register .ha-forschung .ha-register-body .ha-comment .ha-commenthead .ha-lemma{display:inline;font-weight:400}.ha-register .ha-forschung .ha-register-body .ha-comment{margin-bottom:1rem;padding-left:1rem;text-indent:-1rem}@media (min-width:940px){.ha-register .ha-forschung .ha-register-body .ha-comment{margin-bottom:1.5rem}}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks{display:inline-block;font-family:Biolinum,sans-serif;font-size:.7rem;font-variant-caps:all-petite-caps;font-weight:400;line-height:1rem;line-height:1.375;margin-left:.5rem;margin-top:.25rem}@media (min-width:940px){.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks{font-size:.85rem;line-height:1.25rem}}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks:before{--tw-content:"";bottom:.1rem;content:var(--tw-content);left:0;margin-top:.25rem;position:absolute;top:.1rem;width:.125rem}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{display:inline}@media (min-width:1190px){.ha-register .ha-forschung .ha-register-body .ha-headcomment .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-headcomment .ha-commenthead .ha-letlinks{left:48rem}.ha-register .ha-forschung .ha-register-body .ha-subcomment .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-subcomment .ha-commenthead .ha-letlinks{left:46rem}}.ha-register .ha-bibel .ha-register-body .ha-commenthead .ha-lemma a{padding-left:.5rem}.ha-register .ha-bibel .ha-register-body .ha-commenthead .ha-lemma svg{display:inline}.ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks{padding-left:.5rem}@media (min-width:1190px){.ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks{display:block;position:absolute;text-indent:0;top:0;width:20rem}}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.ha-register .ha-headcomment .ha-btn-collapsed-box{left:47.6rem}.ha-register .ha-subcomment .ha-btn-collapsed-box{left:45.6rem}.ha-register .ha-btn-collapsed-box{cursor:pointer;display:none;position:absolute;top:-.15rem}@media (min-width:1190px){.ha-register .ha-btn-collapsed-box{display:block}}.ha-tooltiptext{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(23 53 87/var(--tw-border-opacity));border-width:1px;color:rgb(23 53 87/var(--tw-text-opacity))}.dark .ha-tooltiptext,.ha-tooltiptext{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.dark .ha-tooltiptext{--tw-bg-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(30 41 59/var(--tw-bg-opacity));border-style:none}.ha-tooltip .ha-tooltiptext:after{--tw-border-opacity:1;border-bottom-color:transparent;border-left-color:transparent;border-right-color:transparent;border-top-color:rgb(71 85 105/var(--tw-border-opacity))}.dark .ha-tooltip .ha-tooltiptext:after{--tw-border-opacity:1;border-top-color:rgb(30 41 59/var(--tw-border-opacity))}.ha-pill{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));border-radius:.25rem;color:rgb(75 85 99/var(--tw-text-opacity))}.dark .ha-pill.ha-newpill{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);background-color:rgb(30 41 59/var(--tw-bg-opacity));border-color:rgb(148 163 184/var(--tw-border-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgb(255 255 255/var(--tw-text-opacity))}.ha-pill .ha-cross:before{--tw-border-opacity:1;border-bottom-width:2px;border-color:rgb(23 53 87/var(--tw-border-opacity))}.dark .ha-pill .ha-cross:before{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.ha-letterhead{display:flex;flex-direction:row}.ha-letterhead .ha-letternumber{display:flex;font-size:3rem;line-height:1;margin-right:1rem}@media (min-width:1190px){.ha-letterhead .ha-letternumber{font-size:3.75rem;font-weight:400;line-height:1;margin-right:1.5rem}}.ha-letterhead .ha-letternumber .ha-letternumberinline{display:inline;line-height:1;vertical-align:middle}.ha-letterhead .ha-metadata{align-self:flex-end;display:flex;flex-direction:column;flex-grow:1}.ha-letterhead .ha-metadatastrike{align-self:center;display:flex}.ha-letterhead .ha-metadata .ha-metadataupperrow{display:flex;flex-direction:row;line-height:1.375}.ha-letterhead .ha-metadata .ha-metadataupperrow .ha-metadatadate{display:flex;font-variant-caps:petite-caps;font-variant-numeric:oldstyle-nums;white-space:nowrap}.ha-tooltip{align-self:center;cursor:default;display:inline-block;position:relative}.ha-tooltiptext{border-radius:.25rem;font-size:.85rem;line-height:1.25rem;padding:.125rem .25rem;position:absolute;text-align:center;z-index:10}.ha-tooltiptext:after{left:50%;position:absolute;top:100%}.ha-pill{font-size:.7rem;letter-spacing:0;line-height:1rem;margin-left:.375rem;padding-left:.25rem;padding-right:.25rem;white-space:nowrap}.ha-pill .ha-cross{display:inline-block;position:relative}.ha-pill .ha-cross:after,.ha-pill .ha-cross:before{height:0;position:absolute;right:0;top:50%;width:100%}.ha-letterhead .ha-metadata .ha-metadatapersons a{border-radius:.25rem;-webkit-text-decoration-color:#94a3b8;text-decoration-color:#94a3b8;-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-letterhead .ha-metadata .ha-metadatapersons a:hover{-webkit-text-decoration-color:#4b5563;text-decoration-color:#4b5563;-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-letterheader{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));border-bottom-width:2px;border-color:rgb(203 213 225/var(--tw-border-opacity))}.dark .ha-letterheader{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);background-color:rgb(15 23 42/var(--tw-bg-opacity));border-color:rgb(248 250 252/var(--tw-border-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgb(248 250 252/var(--tw-text-opacity))}.ha-letterheader .ha-lettertabs a{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-letterheader .ha-lettertabs a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dark .ha-letterheader .ha-lettertabs a{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark .ha-letterheader .ha-lettertabs a:hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-letterheader .ha-lettertabs a.active{--tw-border-opacity:1;--tw-text-opacity:1;border-bottom-width:3px;border-color:rgb(203 213 225/var(--tw-border-opacity));color:rgb(216 0 0/var(--tw-text-opacity))}.dark .ha-letterheader .ha-lettertabs a.active{--tw-border-opacity:1;--tw-text-opacity:1!important;border-color:rgb(248 250 252/var(--tw-border-opacity));color:rgb(229 231 235/var(--tw-text-opacity))!important;font-weight:700}.ha-letterheader .ha-lettermetalinks{--tw-border-opacity:1;border-bottom-width:2px;border-color:rgb(203 213 225/var(--tw-border-opacity))}.ha-letterheader .ha-lettermetalinks a{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-letterheader .ha-lettermetalinks a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dark .ha-letterheader .ha-lettermetalinks a{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark .ha-letterheader .ha-lettermetalinks a:hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-letterbody{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-letterbody{--tw-bg-opacity:1;--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);background-color:rgb(15 23 42/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-text{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(226 232 240/var(--tw-border-opacity))}.dark .ha-text{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}@media (min-width:700px){.ha-appcontainer.ha-appcontainer-0 .ha-text{border-left-width:2px}.dark .ha-appcontainer.ha-appcontainer-0 .ha-text{border-style:none}}.ha-defaulttab{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-defaulttab{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-defaulttab .ha-edits .ha-editentries table tr:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.dark .ha-defaulttab .ha-edits .ha-editentries table tr:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-linecount.ha-firstline{--tw-text-opacity:1;border-radius:.5rem;color:rgb(30 41 59/var(--tw-text-opacity))}.dark .ha-linecount.ha-firstline{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}@media (min-width:700px){.ha-linecount.ha-firstline{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(71 85 105/var(--tw-border-opacity));border-width:1px}.dark .ha-linecount.ha-firstline,.ha-linecount.ha-firstline{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.dark .ha-linecount.ha-firstline{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);background-color:rgb(30 41 59/var(--tw-bg-opacity));border-color:rgb(148 163 184/var(--tw-border-opacity))}.ha-linecount .ha-zhline,.ha-linecount .ha-zhpage{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-linecount .ha-zhline,.dark .ha-linecount .ha-zhpage{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}}.ha-text .ha-marginal:before{--tw-bg-opacity:1;background-color:rgb(43 97 158/var(--tw-bg-opacity))}.dark .ha-text .ha-marginal:before{--tw-bg-opacity:1;background-color:rgb(100 116 139/var(--tw-bg-opacity))}.ha-text .ha-marginalbox{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-text .ha-marginalbox{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-text .ha-marginalbox.ha-expanded-box .ha-marginallist{--tw-bg-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);background-color:rgb(241 245 249/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);padding-bottom:.25rem}.dark .ha-text .ha-marginalbox.ha-expanded-box .ha-marginallist{--tw-bg-opacity:1;--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);background-color:rgb(71 85 105/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-text .ha-btn-collapsed-box{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-text .ha-btn-collapsed-box:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dark .ha-text .ha-btn-collapsed-box{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.dark .ha-text .ha-btn-collapsed-box:hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-letterheader{border-top-left-radius:.125rem;border-top-right-radius:.125rem;padding-left:1.5rem;padding-right:1.5rem;padding-top:2rem}@media (min-width:940px){.ha-letterheader{padding-left:4rem;padding-right:4rem;padding-top:3rem}}.ha-letterheader .ha-letterheadernav{display:flex;flex-grow:1;margin-top:2.25rem}.ha-letterheader .ha-lettertabs{display:flex;flex-grow:1}.ha-letterheader .ha-lettertabs a{cursor:pointer;display:inline-block;margin-right:.25rem;padding-left:.25rem;padding-right:.25rem}@media (min-width:940px){.ha-letterheader .ha-lettertabs a{margin-right:.75rem}.ha-letterheader .ha-lettertabs .ha-marginalsbtn{display:none}}.ha-letterheader .ha-lettertabs a.active{pointer-events:none}.ha-letterheader .ha-lettertabs a:first{padding-left:0}.ha-letterheader .ha-lettermetalinks{align-self:flex-end}.ha-letterheader .ha-lettermetalinks a{align-self:flex-end;font-variant-caps:petite-caps}.ha-letterheader .ha-lettermetalinks .ha-hkb{display:inline-block;font-variant-caps:all-petite-caps}.ha-tab{max-width:52rem}.ha-tab .ha-appcontainer{font-family:Libertine,serif;font-variant-numeric:oldstyle-nums;margin-left:1.5rem;padding-bottom:.75rem;padding-top:.75rem}@media (min-width:940px){.ha-tab .ha-appcontainer{margin-left:4rem}}.ha-appcontainer.ha-appcontainer-0{padding-bottom:0;padding-top:0}.ha-appcontainer h3{font-weight:700}.ha-appcontainer a{-webkit-text-decoration-color:#1e293b;text-decoration-color:#1e293b;-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-appcontainer a:hover{-webkit-text-decoration-color:#0f172a;text-decoration-color:#0f172a;-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-textcontainer{display:flex;margin-left:-1.5rem}@media (min-width:940px){.ha-textcontainer{margin-left:-4rem}}.ha-text{display:flow-root;font-family:Libertine,serif;font-variant-numeric:oldstyle-nums;line-height:1.48;margin-left:1rem;max-width:38rem;padding:.5rem 1rem .75rem;position:relative}@media (min-width:700px){.ha-text{flex-shrink:0;margin-left:3rem}}@media (min-width:1190px){.ha-text{max-width:52rem}}.ha-text div{display:inline}.ha-linecount.ha-firstline{border-radius:.25rem;display:none;font-variant-caps:all-petite-caps;font-variant-numeric:normal;padding-left:.375rem;padding-right:.375rem;white-space:nowrap}@media (min-width:700px){.ha-linecount.ha-firstline{display:inline-block;line-height:1;padding-bottom:.25rem;padding-top:.125rem}}.ha-linecount{font-family:Biolinum,sans-serif;font-size:.7rem;line-height:1rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}@media (min-width:700px){.ha-linecount{margin-right:.5rem;margin-top:.35rem;position:absolute;right:100%;text-align:right}}.ha-linecount .ha-zhline{display:none}@media (min-width:700px){.ha-linecount .ha-zhline{display:inline}}.ha-linecount .ha-zhpage{display:inline-block}@media (min-width:700px){.ha-linecount .ha-zhpage{display:inline}}.ha-linecount .ha-zhline,.ha-linecount .ha-zhpage{font-variant-caps:all-petite-caps;font-variant-numeric:normal;padding-left:.25rem;padding-right:.25rem}@media (min-width:700px){.ha-linecount .ha-zhline,.ha-linecount .ha-zhpage{padding-bottom:.25rem}}.ha-linecount .ha-hiddenlinecount{display:none!important}.ha-text .ha-marginal:before{--tw-content:"";bottom:.1rem;content:var(--tw-content);left:.1rem;position:absolute;top:.2rem;width:.125rem}.ha-text .ha-marginalbox{border-radius:.125rem;display:none;font-family:Biolinum,sans-serif;font-size:.85rem;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;left:100%;line-height:1.25rem;line-height:1.25;margin-left:1.5rem;margin-top:.25rem;padding-left:.25rem;position:absolute;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:16rem}.ha-text .ha-marginalbox:hover{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}@media (min-width:940px){.ha-text .ha-marginalbox{display:inline-block}}@media (min-width:1190px){.ha-text .ha-marginalbox{margin-left:2.5rem;width:28rem}}.ha-text .ha-marginalbox .ha-marginallist{-moz-column-gap:1.5rem;column-gap:1.5rem;display:flex;flex-wrap:wrap;font-size:.85rem;line-height:1.25rem;line-height:1.25;padding-right:.25rem}.ha-text .ha-marginalbox .ha-marginallist .ha-marginal{display:inline;padding-left:.5rem;position:relative}.ha-text .ha-marginalbox .ha-marginallist .ha-marginal a{-webkit-text-decoration-line:underline!important;text-decoration-line:underline!important;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-text .ha-marginalbox .ha-marginallist .ha-marginal a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-text .ha-marginalbox .ha-marginallist .ha-marginal,.ha-text .ha-marginalbox .ha-marginallist .ha-marginal *{min-height:0;min-width:0;overflow:hidden;text-overflow:ellipsis}.ha-text .ha-btn-collapsed-box{cursor:pointer;display:none;left:100%;line-height:1;margin-left:1rem;margin-top:.2rem;position:absolute}@media (min-width:940px){.ha-text .ha-btn-collapsed-box{display:inline-block}}@media (min-width:1190px){.ha-text .ha-btn-collapsed-box{margin-left:1.7rem}}.ha-defaulttab .ha-hands{margin-left:1.5rem}@media (min-width:940px){.ha-defaulttab .ha-hands{margin-left:4rem}}.ha-defaulttab .ha-hands .ha-handstitle{font-weight:700}.ha-defaulttab .ha-hands .ha-handentries .ha-handfrom,.ha-defaulttab .ha-hands .ha-handentries .ha-handto{display:inline;font-size:.85rem;font-weight:600;line-height:1.25rem;white-space:nowrap}.ha-defaulttab .ha-hands .ha-handentries .ha-handperson{display:inline;padding-left:1rem;white-space:nowrap}.ha-defaulttab .ha-edits .ha-editentries .ha-editfromto{white-space:nowrap}.ha-defaulttab .ha-edits .ha-editentries .ha-editfrom,.ha-defaulttab .ha-edits .ha-editentries .ha-editto{display:inline;font-size:.85rem;font-weight:600;line-height:1.25rem;white-space:nowrap}.ha-defaulttab .ha-edits .ha-editentries .ha-editreference{white-space:nowrap}.ha-defaulttab .ha-edits .ha-editentries .ha-editreference div{display:inline}.ha-defaulttab .ha-edits{margin-left:1.5rem;max-width:56rem}@media (min-width:940px){.ha-defaulttab .ha-edits{margin-left:4rem}.ha-defaulttab .ha-edits .ha-editentries{margin-right:-9rem}}.ha-defaulttab .ha-edits .ha-editstitle{font-weight:700}.ha-defaulttab .ha-edits .ha-editsinfo{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;padding-bottom:1rem}.ha-defaulttab .ha-edits .ha-editentries tr td{vertical-align:text-top}.ha-defaulttab .ha-edits .ha-editentries .ha-editreas div{display:inline;font-family:Biolinum,sans-serif}.ha-defaulttab .ha-edits .ha-editentries .ha-editfromto{padding-left:.25rem;padding-right:.25rem}.ha-defaulttab .ha-edits .ha-editentries .ha-editreference{border-right-width:2px;font-size:.85rem;line-height:1.25rem;padding-left:.25rem;padding-right:.75rem}.ha-defaulttab .ha-edits .ha-editentries .ha-editreference br{display:none}.ha-defaulttab .ha-edits .ha-editentries .ha-editreas{padding-left:.75rem;width:100%}.ha-defaulttab .ha-edits .ha-editentries .ha-editreas .ha-zh *{font-family:Libertine,serif!important}.ha-minwidth .ha-text{min-width:44rem}@media (min-width:1190px){.ha-minwidth .ha-text{min-width:52rem}}.ha-minwidth .ha-text .ha-alignright{float:right;margin-right:20%}.ha-minwidth .ha-aligncenter{--tw-translate-x:-50%;left:33.333333%;position:absolute;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));white-space:nowrap}.ha-minwidth .ha-marginalbox{margin-left:.25rem!important}.ha-adminuploadfields{-moz-column-gap:1rem;column-gap:1rem;display:flex;flex-direction:row;flex-wrap:wrap;row-gap:1rem}.ha-adminuploadfields .ha-uploadfield{--tw-bg-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-radius:.25rem;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);display:block;flex-basis:16rem;flex-grow:1;flex-shrink:0;max-width:20rem}.ha-adminuploadfields .ha-uploadfield:hover{--tw-brightness:brightness(1.1)}.ha-adminuploadfields .ha-uploadfield.active,.ha-adminuploadfields .ha-uploadfield:hover{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.ha-adminuploadfields .ha-uploadfield.active{--tw-text-opacity:1!important;--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);--tw-brightness:brightness(1.1);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgb(0 0 0/var(--tw-text-opacity))!important}.ha-adminuploadfields .ha-uploadfield .ha-uploadfieldname{padding:.5rem .75rem .25rem}.ha-adminuploadfields .ha-uploadusedfiles{--tw-border-opacity:1;--tw-bg-opacity:0.3;background-color:rgb(226 232 240/var(--tw-bg-opacity));border-color:rgb(203 213 225/var(--tw-border-opacity));border-top-width:1px;font-size:.85rem;line-height:1.25rem;overflow:hidden;padding:.125rem .5rem;text-overflow:ellipsis;white-space:nowrap;width:auto}.ha-adminuploadfields .ha-uploadusedfiles.ha-uploadusedfilesnotfound{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(100 116 139/var(--tw-bg-opacity));border-color:rgb(100 116 139/var(--tw-border-opacity))}.ha-adminuploadfields .ha-uploadpublishforms{-moz-column-gap:1rem;column-gap:1rem;display:flex;flex-direction:row;flex-grow:1}.ha-adminuploadfields .ha-uploadform{--tw-bg-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-radius:.25rem;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);flex-grow:1;position:relative}.ha-adminuploadfields .ha-uploadform .ha-uploadtext{text-align:center}.ha-adminuploadfields .ha-uploadform .ha-lds-ellipsis{left:50%;margin-left:-20px}.ha-adminuploadfields .ha-uploadform .ha-uploadfilelabel{cursor:pointer;display:inline-block;height:100%;padding:.5rem 1rem .25rem;width:100%}.ha-adminuploadfields .ha-uploadform .ha-uploadfilelabel:hover{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.ha-adminuploadfields .ha-uploadform .ha-uploadmessage{--tw-bg-opacity:0.3;background-color:rgb(51 65 85/var(--tw-bg-opacity));border-radius:.125rem;font-size:.85rem;line-height:1.25rem;padding-left:.25rem;padding-right:.25rem}.ha-adminuploadfields .ha-publishbutton{--tw-bg-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);cursor:pointer;display:inline-block;flex-shrink:1;height:100%;padding:.5rem .5rem .25rem;width:100%}.ha-adminuploadfields .ha-publishbutton:hover{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.ha-adminuploadfields .ha-publishbutton .ha-publishtext{text-align:center}.ha-adminuploadfields .ha-publishbutton .ha-publishmessage{--tw-bg-opacity:0.3;background-color:rgb(51 65 85/var(--tw-bg-opacity));border-radius:.125rem;font-size:.85rem;line-height:1.25rem;padding-left:.25rem;padding-right:.25rem}.ha-uploadheader{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));display:flex;flex-direction:row;margin-top:1rem;padding:3rem 4rem 2rem;width:100%}.ha-uploadheader h1{font-size:3rem;line-height:1}.ha-uploadcontainer{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));display:flex;flex-direction:column;row-gap:.5rem;width:100%}.ha-uploadcontainer .ha-publishfilelist{margin-bottom:2rem;padding-left:4rem;padding-right:4rem}.ha-uploadcontainer .ha-publishfilelist .ha-publishfilelisttitle{font-size:1.25rem;line-height:1.75rem;margin-bottom:.5rem}.ha-uploadcontainer .ha-publishfilelist td{padding-right:1.5rem;vertical-align:text-top}.ha-uploadcontainer .ha-publishfilelist .ha-publishfilelabel{--tw-border-opacity:1;border-color:rgb(37 99 235/var(--tw-border-opacity));border-radius:.375rem;border-width:2px;cursor:pointer;float:right;margin-left:1.5rem;margin-top:1rem;padding-left:.75rem;padding-right:.75rem;position:relative}.ha-uploadcontainer .ha-publishfilelist .ha-publishfilelabel:hover{--tw-border-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);border-color:rgb(30 64 175/var(--tw-border-opacity));border-width:2px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-uploadcontainer .ha-publishfilelist .ha-publishfilelabel:active{--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-uploadcontainer .ha-availablefiles{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;cursor:pointer;padding:.5rem 4rem;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ha-uploadcontainer .ha-availablefiles:hover{--tw-border-opacity:1;border-color:rgb(30 41 59/var(--tw-border-opacity))}.ha-uploadcontainer .ha-availablefiles .ha-availablefilestitle{font-size:1.5rem;line-height:2rem}.ha-filesheader{margin-bottom:1rem}.ha-availablefileslist{padding-left:4rem;padding-right:4rem;padding-top:1rem}.ha-uploadcontainer .ha-errorswarnings{-moz-column-gap:.5rem;column-gap:.5rem;display:flex;flex-direction:row}.ha-uploadcontainer .ha-errorswarnings .ha-criticalerrors,.ha-uploadcontainer .ha-errorswarnings .ha-warnings{flex-basis:50%;flex-grow:1;flex-shrink:1;min-height:400px;min-width:40%;overflow-x:hidden;overflow-y:scroll}.ha-uploadcontainer .ha-errorswarnings .ha-criticalerrors{--tw-bg-opacity:1;background-color:rgb(254 202 202/var(--tw-bg-opacity))}.ha-uploadcontainer .ha-errorswarnings .ha-warnings{--tw-bg-opacity:1;background-color:rgb(254 215 170/var(--tw-bg-opacity))}.ha-uploadcontainer .ha-crossfilechecking{--tw-bg-opacity:1;background-color:rgb(165 243 252/var(--tw-bg-opacity));flex-grow:1;flex-shrink:0;height:100%;min-height:400px;width:100%}.ha-uploadcontainer .ha-hamannfilechooser,.ha-uploadcontainer .ha-setendyearform{padding-bottom:4rem;padding-left:4rem;padding-right:4rem}.ha-uploadcontainer .ha-setendyearform{float:right}.ha-uploadcontainer .ha-setendyearform .ha-setendyearbutton{--tw-border-opacity:1;border-color:rgb(37 99 235/var(--tw-border-opacity));border-radius:.375rem;border-width:2px;cursor:pointer;margin-left:1.5rem;margin-top:1rem;padding-left:.75rem;padding-right:.75rem}.ha-uploadcontainer .ha-setendyearform .ha-setendyearbutton:hover{--tw-border-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);border-color:rgb(30 64 175/var(--tw-border-opacity));border-width:2px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-uploadcontainer .ha-setendyearform .ha-setendyearbutton:active{--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-filelistfieldset .ha-filelistlegend{font-size:1.25rem;line-height:1.75rem;margin-bottom:.5rem}.ha-selectfilesform .ha-filelistfile{align-items:center;-moz-column-gap:1rem;column-gap:1rem;display:flex;flex-direction:row;padding-left:.25rem;padding-right:.25rem}.ha-selectfilesform .ha-filelistfile:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.ha-selectfilesform .ha-filelistlist{height:24rem;overflow-x:hidden;overflow-y:scroll;padding-right:1rem}.ha-selectfilesform .ha-filelistfile .ha-filelistname{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace,mono}.ha-selectfilesform .ha-filelistfile .ha-filelistusedproduction{font-size:.85rem;line-height:1.25rem}.ha-selectfilesform .ha-filelistfile .ha-filelistusedproduction .ha-filelistproduction{--tw-border-opacity:1;--tw-text-opacity:1;border-color:rgb(13 148 136/var(--tw-border-opacity));border-radius:.375rem;border-width:1px;color:rgb(13 148 136/var(--tw-text-opacity));display:inline-block;margin-right:.5rem;padding-left:.5rem;padding-right:.5rem}.ha-selectfilesform .ha-filelistfile .ha-filelistusedproduction .ha-filelistused{--tw-border-opacity:1;--tw-text-opacity:1;border-color:rgb(79 70 229/var(--tw-border-opacity));border-radius:.375rem;border-width:1px;color:rgb(79 70 229/var(--tw-text-opacity));display:inline-block;padding-left:.5rem;padding-right:.5rem}.ha-selectfilesform .ha-filelistfile .ha-filelistmodified{flex-grow:1;text-align:right}.ha-selectfilesform .ha-filelistoutput{margin-left:1.5rem;margin-top:1rem}.ha-selectfilesform .ha-filelistbutton{--tw-border-opacity:1;border-color:rgb(37 99 235/var(--tw-border-opacity));border-radius:.375rem;border-width:2px;cursor:pointer;float:right;margin-left:1.5rem;margin-top:1rem;padding-left:.75rem;padding-right:.75rem}.ha-selectfilesform .ha-filelistbutton:hover{--tw-border-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);border-color:rgb(30 64 175/var(--tw-border-opacity));border-width:2px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-selectfilesform .ha-filelistbutton:active{--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-index{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-index{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.dark .ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity));border-bottom-width:1px;border-color:rgb(229 231 235/var(--tw-border-opacity));border-right-width:1px}.dark .ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity));border-style:none}.dark .ha-index .ha-indexhead .ha-indexnav a.active{font-weight:700}.dark .ha-index .ha-indexhead .ha-indexnav a.active,.dark .ha-index .ha-indexhead .ha-indexnav a.active:hover{--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry:hover{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:hover{--tw-bg-opacity:1!important;background-color:rgb(226 232 240/var(--tw-bg-opacity))!important}.dark .ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:hover{--tw-bg-opacity:1!important;background-color:rgb(30 41 59/var(--tw-bg-opacity))!important}.dark .ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a.active{--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important;font-weight:700}.ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.dark .ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(24 24 27/var(--tw-bg-opacity))}.ha-index .ha-indexhead{border-bottom-width:2px}.ha-index .ha-indexhead h1{display:inline-block;font-family:Libertine,serif;font-size:1.5rem;font-weight:700;line-height:2rem;margin-bottom:1.75rem;margin-top:2.25rem;padding-left:2.25rem;padding-right:2.25rem}@media (min-width:940px){.ha-index .ha-indexhead h1{margin-top:3rem;padding-left:4rem;padding-right:4rem}}@media (min-width:1190px){.ha-index .ha-indexhead h1{font-size:3rem;font-weight:400;line-height:1}}.ha-index .ha-indexhead .ha-indexnav{--tw-numeric-figure:oldstyle-nums;font-family:Biolinum,sans-serif;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);margin-top:.5rem;padding-left:2.25rem;padding-right:2.25rem}@media (min-width:940px){.ha-index .ha-indexhead .ha-indexnav{padding-left:4rem;padding-right:4rem}}.ha-index .ha-indexhead .ha-indexnav a{display:inline-block;margin-right:.75rem}.ha-index .ha-indexhead .ha-indexnav a.active{border-bottom-width:4px}.ha-index .ha-indexbody{clear:both;-moz-column-gap:1rem;column-gap:1rem;display:flex;flex-direction:row;padding-top:1.5rem}.ha-index .ha-comment{border-left-width:2px;font-family:Libertine,serif;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;padding:.75rem 2.25rem 3rem}@media (min-width:940px){.ha-index .ha-comment{padding-left:4rem;padding-right:4rem}}.ha-index .ha-comment .ha-commentmetatext{margin-top:2.25rem}@media (min-width:940px){.ha-index .ha-comment .ha-commentmetatext{margin-top:3rem}}.ha-index .ha-comment .ha-commentmetatext a{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity));border-radius:.25rem;display:inline-block;float:right;font-size:.85rem;line-height:1.25rem;padding-left:.5rem;padding-right:.5rem}.ha-index .ha-comment .ha-lemma{display:inline-block;font-family:Libertine,serif;font-size:1.5rem;font-weight:700;line-height:2rem;margin-bottom:.75rem}@media (min-width:1190px){.ha-index .ha-comment .ha-lemma{font-size:3rem;font-weight:400;line-height:1}}.ha-index .ha-comment .ha-entry{max-width:calc(780px - 4rem)}.ha-index .ha-comment a{-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-index .ha-comment a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-index .ha-comment .ha-letlinks{display:none}.ha-index .ha-comment .ha-letlinks .ha-hkb{display:inline}.ha-index .ha-indexbody .ha-letterlist{flex-basis:66.666667%;flex-grow:0;padding-bottom:1rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry:not(:first-child){margin-top:1rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry{border-radius:.125rem;display:block;padding-top:.75rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry,.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry:hover{transition-duration:.1s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterhead{padding-bottom:.75rem;padding-left:1.5rem;padding-right:.75rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));display:block;padding:.25rem 1.5rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-searchresultlocation{display:inline-block;font-size:.85rem;font-variant-numeric:oldstyle-nums;font-weight:600;line-height:1.25rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-searchresultpreview{display:inline-block;padding-left:1rem}.ha-index .ha-indexbody .ha-filterlist{display:none;flex-basis:33.333333%;flex-direction:column;flex-shrink:1;float:right;max-width:32rem;min-width:0;padding-bottom:1rem;row-gap:2.25rem}@media (min-width:940px){.ha-index .ha-indexbody .ha-filterlist{display:flex}}.ha-index .ha-indexbody .ha-filterlist .ha-filtertitle{--tw-border-opacity:1;border-bottom-width:1px;border-color:rgb(156 163 175/var(--tw-border-opacity));font-family:Libertine,serif;font-size:1.5rem;line-height:2rem;line-height:1;margin-bottom:.25rem;padding-bottom:.25rem;padding-left:.25rem;padding-right:1rem}.ha-index .ha-indexbody .ha-filterlist .ha-activefilterinfo{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity));border-radius:.25rem;font-family:Biolinum,sans-serif;font-size:.85rem;line-height:1.25rem;margin-top:.25rem;padding-left:.25rem;padding-right:.25rem}.ha-index .ha-indexbody .ha-filterlist .ha-reversefilter{display:inline-block;text-align:right;-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-index .ha-indexbody .ha-filterlist .ha-reversefilter:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form{font-family:Biolinum,sans-serif;padding:.25rem .5rem .25rem .25rem}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form .ha-gototext{display:inline-block;font-family:Biolinum,sans-serif;margin-right:.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form input{border-width:1px;padding-left:.25rem;padding-right:.25rem;width:3.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form button{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;display:inline-block;float:right;padding-left:.5rem;padding-right:.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform{padding:.25rem .5rem .25rem .25rem}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform>span{white-space:nowrap}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform input{border-width:1px;padding-left:.25rem;padding-right:.25rem;width:3.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform button{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;float:right;padding-left:.5rem;padding-right:.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform select{padding-left:.25rem;padding-right:.25rem}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform{-moz-column-gap:.5rem;column-gap:.5rem;display:flex;flex-direction:row;padding:.25rem .5rem .25rem .25rem}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform input{border-width:1px;flex-grow:1;min-width:0;padding-left:.25rem;padding-right:.25rem}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform button{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;float:right;padding-left:.5rem;padding-right:.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist{margin-right:.5rem;max-height:23rem;overflow-x:hidden;overflow-y:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.25rem}.ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a{display:block;padding-left:.75rem;padding-right:.75rem;transition-property:none!important}.ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd){display:block}.ha-search{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-search{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-search .ha-searchhead .ha-activefilterinfo{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.dark .ha-search .ha-searchhead .ha-activefilterinfo{--tw-bg-opacity:1;background-color:rgb(30 41 59/var(--tw-bg-opacity))}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.dark .ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.dark .ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity));border-bottom-width:1px;border-color:rgb(229 231 235/var(--tw-border-opacity));border-right-width:1px}.dark .ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity));border-style:none}.dark .ha-search .ha-searchhead .ha-searchnav a.active{font-weight:700}.dark .ha-search .ha-searchhead .ha-searchnav a.active,.dark .ha-search .ha-searchhead .ha-searchnav a.active:hover{--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry:hover{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a:hover{--tw-bg-opacity:1!important;background-color:rgb(226 232 240/var(--tw-bg-opacity))!important}.dark .ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a:hover{--tw-bg-opacity:1!important;background-color:rgb(30 41 59/var(--tw-bg-opacity))!important}.dark .ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a.active{--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important;font-weight:700}.ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.dark .ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(24 24 27/var(--tw-bg-opacity))}.dark .ha-search .ha-searchbody .ha-commenthead .ha-letlinks{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity));color:rgb(248 250 252/var(--tw-text-opacity))}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commenthead .ha-letlinks{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}}.ha-search .ha-searchbody .ha-commenthead .ha-letlinks:before{--tw-bg-opacity:1;background-color:rgb(43 97 158/var(--tw-bg-opacity))}.dark .ha-search .ha-searchbody .ha-commenthead .ha-letlinks:before{--tw-bg-opacity:1;background-color:rgb(100 116 139/var(--tw-bg-opacity))}.ha-search .ha-searchbody .ha-commenthead .ha-letlinks.ha-expanded-box{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.dark .ha-search .ha-searchbody .ha-commenthead .ha-letlinks.ha-expanded-box{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-search .ha-btn-collapsed-box{cursor:pointer;display:none;margin-top:.125rem;position:absolute;top:-.15rem}@media (min-width:1190px){.ha-search .ha-btn-collapsed-box{display:block}}.ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.dark .ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks a{-webkit-text-decoration-line:none;text-decoration-line:none}.ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks a:hover{--tw-text-opacity:1;color:rgb(23 53 87/var(--tw-text-opacity));-webkit-text-decoration-line:underline;text-decoration-line:underline}.dark .ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks a:hover{--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.dark .ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ha-search .ha-searchhead{border-bottom-width:2px;padding-left:2.25rem;padding-right:2.25rem;padding-top:2.25rem}@media (min-width:940px){.ha-search .ha-searchhead{padding-left:4rem;padding-right:4rem;padding-top:3rem}}.ha-search .ha-searchhead h1{display:inline-block;font-family:Libertine,serif;font-size:1.5rem;font-weight:700;line-height:2rem;margin-bottom:1.5rem}@media (min-width:1190px){.ha-search .ha-searchhead h1{font-size:3rem;font-weight:400;line-height:1}}.ha-search .ha-searchhead .ha-searchnav{--tw-numeric-figure:oldstyle-nums;font-family:Biolinum,sans-serif;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)}.ha-search .ha-searchhead .ha-searchnav a{display:inline-block;margin-right:.75rem}.ha-search .ha-searchhead .ha-searchnav a.active{border-bottom-width:4px}.ha-search .ha-searchhead .ha-searchfilter{margin-bottom:1rem}@media (min-width:940px){.ha-search .ha-searchhead .ha-searchfilter{margin-bottom:1.75rem}}.ha-search .ha-searchhead .ha-searchfilterinfo{border-width:1px;font-size:1rem;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto;line-height:1.5rem;margin-bottom:1rem;max-width:46rem;padding:.5rem}.ha-search .ha-searchhead .ha-searchfilter form{margin-bottom:.5rem;max-width:34rem}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform{-moz-column-gap:.5rem;column-gap:.5rem;display:flex;flex-direction:row;padding-bottom:.25rem;padding-top:.25rem}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform input{border-width:1px;flex-grow:1;min-width:0;padding-left:.25rem;padding-right:.25rem}.ha-search .ha-searchhead .ha-searchfilter .ha-includecomments{font-size:1rem!important;line-height:1.5rem!important;width:100%}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform button{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;float:right;padding-left:.5rem;padding-right:.5rem}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-search .ha-searchhead .ha-activefilterinfo{border-radius:.25rem;font-family:Biolinum,sans-serif;font-size:1rem;line-height:1.5rem;margin-bottom:.25rem;margin-top:.25rem;max-width:34rem;padding-left:.25rem;padding-right:.25rem}.ha-search .ha-searchhead .ha-reversefilter{display:inline-block;text-align:right;-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-search .ha-searchhead .ha-reversefilter:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-search .ha-searchhead .ha-searchfilter .ha-alternativesearches a{display:block;font-size:1rem;line-height:1.5rem;-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-search .ha-searchhead .ha-searchfilter .ha-alternativesearches a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-search .ha-searchbody{border-bottom-left-radius:.125rem;border-bottom-right-radius:.125rem;padding-bottom:2.25rem;padding-top:1.5rem}@media (min-width:940px){.ha-search .ha-searchbody{padding-bottom:3rem;padding-left:1.5rem;padding-right:24rem}}.ha-search .ha-searchbody .ha-letterlist{flex-basis:66.666667%;flex-grow:0;padding-bottom:1rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry:not(:first-child){margin-top:1rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry{border-radius:.125rem;display:block;padding-top:.75rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry,.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry:hover{transition-duration:.1s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterhead{padding-bottom:.75rem;padding-left:1.5rem;padding-right:.75rem}.dark input,.dark select{--tw-bg-opacity:1!important;border-style:none}.dark button,.dark input,.dark select{background-color:rgb(24 24 27/var(--tw-bg-opacity))!important}.dark button{--tw-border-opacity:1!important;--tw-bg-opacity:1!important;border-color:rgb(39 39 42/var(--tw-border-opacity))!important}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult{--tw-bg-opacity:1;align-items:baseline;background-color:rgb(248 250 252/var(--tw-bg-opacity));-moz-column-gap:1rem;column-gap:1rem;display:flex;flex-direction:row;padding:.25rem 1.5rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-searchresultlocation{display:inline-block;flex-shrink:0;flex-wrap:nowrap;font-size:.85rem;font-weight:600;line-height:1.25rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal{font-size:.85rem;line-height:1.25rem;margin-bottom:.25rem;margin-top:.25rem;max-width:32rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-searchresultcommentpill{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(30 69 112/var(--tw-bg-opacity));border-radius:.75rem;color:rgb(255 255 255/var(--tw-text-opacity));display:inline-block;font-size:.7rem;line-height:1rem;margin-right:.5rem;padding-left:.375rem;padding-right:.375rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-marginal a{-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-marginal a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-marginal,.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-marginal *{display:inline!important;-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.ha-search .ha-searchbody .ha-commentlist{font-family:Libertine,serif;font-variant-numeric:oldstyle-nums;padding-left:1rem;padding-right:2.25rem;padding-top:.5rem}@media (min-width:940px){.ha-search .ha-searchbody .ha-commentlist{padding-left:1.5rem;padding-right:4rem;padding-top:1rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment{display:block;margin-bottom:2.25rem}@media (min-width:940px){.ha-search .ha-searchbody .ha-commentlist .ha-comment{margin-bottom:3rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment a{-webkit-text-decoration-line:underline;text-decoration-line:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.ha-search .ha-searchbody .ha-commentlist .ha-comment a:hover{-webkit-text-decoration-style:solid;text-decoration-style:solid}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-headcomment{display:block}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-headcomment{position:relative}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-subcomment{display:block;margin-left:2rem;margin-top:.5rem}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-subcomment{position:relative}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead{display:block}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-lemma{display:inline;font-weight:700}.ha-search .ha-searchbody .ha-forschung .ha-comment .ha-commenthead .ha-lemma{display:inline;font-weight:400}.ha-search .ha-searchbody .ha-forschung .ha-comment{margin-bottom:1rem;text-indent:-1rem}@media (min-width:940px){.ha-search .ha-searchbody .ha-forschung .ha-comment{margin-bottom:1.5rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks{display:inline-block;font-family:Biolinum,sans-serif;font-size:.7rem;font-variant-caps:all-petite-caps;font-weight:400;line-height:1rem;line-height:1.375;margin-left:.5rem;margin-top:.25rem}@media (min-width:940px){.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks{font-size:.85rem;line-height:1.25rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks:before{--tw-content:"";bottom:.1rem;content:var(--tw-content);left:0;margin-top:.25rem;position:absolute;top:.1rem;width:.125rem}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{display:inline}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-headcomment .ha-commenthead .ha-letlinks{left:48rem}.ha-search .ha-searchbody .ha-commentlist .ha-subcomment .ha-commenthead .ha-letlinks{left:46rem}}.ha-search .ha-searchbody .ha-commentlist .ha-commenthead .ha-letlinks{padding-left:.5rem}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-commenthead .ha-letlinks{display:block;position:absolute;text-indent:0;top:0;width:20rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.ha-search .ha-searchbody .ha-commentlist .ha-headcomment .ha-btn-collapsed-box{left:47.6rem}.ha-search .ha-searchbody .ha-commentlist .ha-subcomment .ha-btn-collapsed-box{left:45.6rem}.ha-search .ha-searchbody .ha-commentlist .ha-btn-collapsed-box{cursor:pointer;display:none;position:absolute;top:-.15rem}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-btn-collapsed-box{display:block}}.pointer-events-none{pointer-events:none}.static{position:static}.relative{position:relative}.sticky{position:-webkit-sticky;position:sticky}.-left-5{left:-1.25rem}.-top-1\.5{top:-.375rem}.-top-1{top:-.25rem}.-left-6{left:-1.5rem}.bottom-\[0\.1rem\]{bottom:.1rem}.clear-both{clear:both}.mx-auto{margin-left:auto;margin-right:auto}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.mx-0{margin-left:0;margin-right:0}.mx-8{margin-left:2rem;margin-right:2rem}.my-8{margin-bottom:2rem;margin-top:2rem}.my-6{margin-top:1.5rem}.mb-6,.my-6{margin-bottom:1.5rem}.mr-2{margin-right:.5rem}.\!mt-0{margin-top:0!important}.\!mb-0{margin-bottom:0!important}.mb-10{margin-bottom:2.5rem}.mb-4{margin-bottom:1rem}.\!mr-0{margin-right:0!important}.mt-2{margin-top:.5rem}.mr-1{margin-right:.25rem}.mb-8{margin-bottom:2rem}.mr-4{margin-right:1rem}.mb-1{margin-bottom:.25rem}.ml-1{margin-left:.25rem}.\!mb-1{margin-bottom:.25rem!important}.\!mt-1{margin-top:.25rem!important}.mr-\[20rem\]{margin-right:20rem}.ml-8{margin-left:2rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.table{display:table}.hidden{display:none}.\!hidden{display:none!important}.h-10{height:2.5rem}.h-full{height:100%}.h-8{height:2rem}.h-4{height:1rem}.h-3{height:.75rem}.w-10{width:2.5rem}.w-full{width:100%}.w-8{width:2rem}.w-4{width:1rem}.w-auto{width:auto}.w-3{width:.75rem}.w-72{width:18rem}.w-60{width:15rem}.w-52{width:13rem}.w-1\/2{width:50%}.shrink-0{flex-shrink:0}.shrink{flex-shrink:1}.grow{flex-grow:1}.grow-0{flex-grow:0}.cursor-default{cursor:default}.resize{resize:both}.list-disc{list-style-type:disc}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.justify-center{justify-content:center}.gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.gap-y-6{row-gap:1.5rem}.gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.gap-y-4{row-gap:1rem}.self-end{align-self:flex-end}.overflow-hidden{overflow:hidden}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.rounded{border-radius:.25rem}.border{border-width:1px}.border-t-\[5px\]{border-top-width:5px}.border-l-4{border-left-width:4px}.border-r-2{border-right-width:2px}.border-l-2{border-left-width:2px}.border-b-2{border-bottom-width:2px}.border-solid{border-style:solid}.border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.border-hamannSlate-500{--tw-border-opacity:1;border-color:rgb(43 97 158/var(--tw-border-opacity))}.border-orange-600{--tw-border-opacity:1;border-color:rgb(234 88 12/var(--tw-border-opacity))}.bg-slate-50{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.bg-gray-300{--tw-bg-opacity:1;background-color:rgb(209 213 219/var(--tw-bg-opacity))}.bg-slate-100{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.bg-slate-200{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.px-4{padding-left:1rem;padding-right:1rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.px-9{padding-left:2.25rem;padding-right:2.25rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.px-8{padding-left:2rem;padding-right:2rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-1{padding-left:.25rem;padding-right:.25rem}.py-2{padding-bottom:.5rem;padding-top:.5rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.pt-4{padding-top:1rem}.pb-1{padding-bottom:.25rem}.pr-3{padding-right:.75rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pr-1\.5{padding-right:.375rem}.pr-1{padding-right:.25rem}.pl-3{padding-left:.75rem}.pl-2{padding-left:.5rem}.\!pr-14{padding-right:3.5rem!important}.text-right{text-align:right}.align-baseline{vertical-align:baseline}.align-bottom{vertical-align:bottom}.font-serif{font-family:Libertine,serif}.font-sans{font-family:Biolinum,sans-serif}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace,mono}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-sm{font-size:.85rem;line-height:1.25rem}.text-base{font-size:1rem;line-height:1.5rem}.font-bold{font-weight:700}.italic{font-style:italic}.leading-snug{line-height:1.375}.\!leading-tight{line-height:1.25!important}.text-hamannSlate-900{--tw-text-opacity:1;color:rgb(23 53 87/var(--tw-text-opacity))}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-hamannSlate-500{--tw-text-opacity:1;color:rgb(43 97 158/var(--tw-text-opacity))}.text-orange-600{--tw-text-opacity:1;color:rgb(234 88 12/var(--tw-text-opacity))}.text-slate-500{--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}.underline{-webkit-text-decoration-line:underline;text-decoration-line:underline}.\!no-underline{-webkit-text-decoration-line:none!important;text-decoration-line:none!important}.no-underline{-webkit-text-decoration-line:none;text-decoration-line:none}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color)}.shadow-lg,.shadow-sm{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.hyphenate{-webkit-hyphens:auto;-ms-hyphens:auto;hyphens:auto}.unhyphenate{-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}.numeric-mediaeval{font-variant-numeric:oldstyle-nums}.numeric-normal{font-variant-numeric:normal}.caps-allpetite{font-variant-caps:all-petite-caps}.caps-petite{font-variant-caps:petite-caps}.caps{text-transform:uppercase}.caps,.caps-normal{font-variant-caps:normal}.break-inside-avoid{-moz-column-break-inside:avoid;break-inside:avoid}@font-face{font-display:swap;font-family:Biolinum;font-style:normal;font-weight:400;src:url(../fonts/LinBiolinum_Rah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Libertine;font-style:normal;font-weight:400;src:url(../fonts/LinLibertine_Rah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Biolinum;font-style:italic;font-weight:400;src:url(../fonts/LinBiolinum_RIah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Biolinum;font-style:normal;font-weight:700;src:url(../fonts/LinBiolinum_RBah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Libertine;font-style:italic;font-weight:400;src:url(../fonts/LinLibertine_RIah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Libertine;font-style:normal;font-weight:700;src:url(../fonts/LinLibertine_RZah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Playfair;font-style:normal;font-weight:400;src:url(../fonts/PlayfairDisplay-VariableFont_wght.ttf) format("truetype")}.ha-menu-arrowsymbol:after{border-bottom:0;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid;content:"";display:inline-block;margin-left:.2em;vertical-align:.2em}.ha-menusymbol{border-radius:4px}.ha-menusymbol svg{stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;fill:none;height:24px;width:24px}.ha-tooltip .ha-tooltiptext{bottom:155%;left:50%;margin-left:-80px;min-width:160px;opacity:0;transition:opacity .3s;visibility:hidden;white-space:nowrap}.ha-tooltip .ha-tooltiptext:after{border-style:solid;border-width:5px;content:"";left:50%;margin-left:-5px;position:absolute;top:100%}.ha-tooltip:hover .ha-tooltiptext{opacity:1;visibility:visible}.ha-open-btn-collapsed-box:after{content:"\200E+"}.ha-open-btn-collapsed-box{font-weight:700;transform:rotate(0deg);transition:transform 80ms ease-in-out}.ha-open-btn-collapsed-box.ha-close-btn-collapsed-box{transform:rotate(45deg);transform-origin:53% 57%;transition:transform 80ms ease-in-out}.ha-uploadform .ha-uploadmessage{border-radius:6px;left:50%;margin-left:-180px;margin-top:.5rem;opacity:0;padding:5px 0;position:absolute;text-align:center;top:100%;transition:opacity 1s;visibility:visible;width:360px;z-index:1}.ha-uploadform .ha-uploadmessage:after{border:5px solid transparent;border-bottom-color:grey;bottom:100%;content:" ";left:50%;margin-left:-5px;position:absolute}.ha-lds-ellipsis{bottom:20px;display:none;position:absolute}.ha-lds-ellipsis-load{bottom:8px;display:none;position:relative;width:38px}.ha-lds-ellipsis-publish{bottom:16px;display:none;left:-50px;position:absolute}.ha-lds-ellipsis div,.ha-lds-ellipsis-load div,.ha-lds-ellipsis-publish div{-webkit-animation-timing-function:cubic-bezier(0,1,1,0);animation-timing-function:cubic-bezier(0,1,1,0);background:#000;border-radius:50%;height:7px;position:absolute;width:7px}.ha-lds-ellipsis div:first-child,.ha-lds-ellipsis-load div:first-child,.ha-lds-ellipsis-publish div:first-child{-webkit-animation:ha-lds-ellipsis1 .6s infinite;animation:ha-lds-ellipsis1 .6s infinite;left:6px}.ha-lds-ellipsis div:nth-child(2),.ha-lds-ellipsis-load div:nth-child(2),.ha-lds-ellipsis-publish div:nth-child(2){-webkit-animation:ha-lds-ellipsis2 .6s infinite;animation:ha-lds-ellipsis2 .6s infinite;left:4px}.ha-lds-ellipsis div:nth-child(3),.ha-lds-ellipsis-load div:nth-child(3),.ha-lds-ellipsis-publish div:nth-child(3){-webkit-animation:ha-lds-ellipsis2 .6s infinite;animation:ha-lds-ellipsis2 .6s infinite;left:16px}.ha-lds-ellipsis div:nth-child(4),.ha-lds-ellipsis-load div:nth-child(4),.ha-lds-ellipsis-publish div:nth-child(4){-webkit-animation:ha-lds-ellipsis3 .6s infinite;animation:ha-lds-ellipsis3 .6s infinite;left:30px}@-webkit-keyframes ha-lds-ellipsis1{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes ha-lds-ellipsis1{0%{transform:scale(0)}to{transform:scale(1)}}@-webkit-keyframes ha-lds-ellipsis3{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes ha-lds-ellipsis3{0%{transform:scale(1)}to{transform:scale(0)}}@-webkit-keyframes ha-lds-ellipsis2{0%{transform:translate(0)}to{transform:translate(16px)}}@keyframes ha-lds-ellipsis2{0%{transform:translate(0)}to{transform:translate(16px)}}.ha-cross:after,.ha-cross:before{content:""}.ha-cross:before{transform:skewY(-27deg)}.ha-insertion:before{content:"\2E02"}.ha-insertion:after{content:"\2E03"}.ha-nr:after,.ha-nr:before{content:" \200E\25E6"}.ha-added:after,.ha-added:before,.ha-note:after,.ha-note:before{content:""}.ha-bzg:after{content:"]"}*{scroll-behavior:smooth;-webkit-text-decoration-skip-ink:all;text-decoration-skip-ink:all}html{font-size:15.5px;overflow-y:scroll}body{background-image:url(../img/subtlenet2.png);background-repeat:repeat}.ha-diagdel{display:inline-block!important;position:relative;text-decoration:none!important;-webkit-text-decoration-line:none!important;text-decoration-line:none!important}.ha-diagdel:after,.ha-diagdel:before{bottom:1.4ex;content:"";height:0%;position:absolute;right:0;width:100%}.ha-diagdel:before{border-style:solid;border-width:1px;transform:skewY(-36deg)}.ha-del .ha-del,.ha-del .ha-del :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){-moz-text-decoration-style:double;-webkit-text-decoration-style:double!important;text-decoration-style:double;text-decoration-thickness:1px}.ha-del .ha-del .ha-ul,.ha-del .ha-ul .ha-del,.ha-ul .ha-del .ha-del{text-decoration:line-through underline;-moz-text-decoration-style:double;-webkit-text-decoration-style:double!important;text-decoration-style:double;text-decoration-thickness:1px}.ha-del .ha-ul,.ha-ul .ha-del{text-decoration:line-through underline;text-decoration-skip-ink:auto;-webkit-text-decoration-skip-ink:auto;text-decoration-thickness:1px}.ha-table{font-variant-numeric:tabular-nums!important;overflow:hidden;white-space:nowrap}.ha-hatab-0-2{display:inline;min-width:50%;position:static}.ha-hatab-1-2{display:inline-block;left:50%;min-width:50%;position:absolute}.ha-hatab-0-3{display:inline;min-width:33.333%;position:static}.ha-hatab-1-3{left:33%}.ha-hatab-1-3,.ha-hatab-2-3{display:inline-block;min-width:33.333%;position:absolute}.ha-hatab-2-3{left:66%}.ha-hatab-0-4{display:inline;min-width:25%;position:static}.ha-hatab-1-4{left:25%}.ha-hatab-1-4,.ha-hatab-2-4{display:inline-block;min-width:25%;position:absolute}.ha-hatab-2-4{left:50%}.ha-hatab-3-4{display:inline-block;left:75%;min-width:25%;position:absolute}.ha-hatab-0-5{display:inline;min-width:20%;position:static}.ha-hatab-1-5{left:20%}.ha-hatab-1-5,.ha-hatab-2-5{display:inline-block;min-width:20%;position:absolute}.ha-hatab-2-5{left:40%}.ha-hatab-3-5{left:60%}.ha-hatab-3-5,.ha-hatab-4-5{display:inline-block;min-width:20%;position:absolute}.ha-hatab-4-5{left:80%}.ha-hatab-0-6{display:inline;min-width:16.667%;position:static}.ha-hatab-1-6{left:16.667%}.ha-hatab-1-6,.ha-hatab-2-6{display:inline-block;min-width:16.667%;position:absolute}.ha-hatab-2-6{left:33.333%}.ha-hatab-3-6{left:50%}.ha-hatab-3-6,.ha-hatab-4-6{display:inline-block;min-width:16.667%;position:absolute}.ha-hatab-4-6{left:66.667%}.ha-hatab-5-6{display:inline-block;left:83.333%;min-width:16.667%;position:absolute}.ha-hatab-0-7{display:inline;min-width:14.286%;position:static}.ha-hatab-1-7{left:14.286%}.ha-hatab-1-7,.ha-hatab-2-7{display:inline-block;min-width:14.286%;position:absolute}.ha-hatab-2-7{left:28.571%}.ha-hatab-3-7{left:42.857%}.ha-hatab-3-7,.ha-hatab-4-7{display:inline-block;min-width:14.286%;position:absolute}.ha-hatab-4-7{left:57.143%}.ha-hatab-5-7{left:71.429%}.ha-hatab-5-7,.ha-hatab-6-7{display:inline-block;min-width:14.286%;position:absolute}.ha-hatab-6-7{left:85.714%}.ha-hatab-0-8{display:inline;min-width:12.5%;position:static}.ha-hatab-1-8{left:12.5%}.ha-hatab-1-8,.ha-hatab-2-8{display:inline-block;min-width:12.5%;position:absolute}.ha-hatab-2-8{left:25%}.ha-hatab-3-8{left:37.5%}.ha-hatab-3-8,.ha-hatab-4-8{display:inline-block;min-width:12.5%;position:absolute}.ha-hatab-4-8{left:50%}.ha-hatab-5-8{left:62.5%}.ha-hatab-5-8,.ha-hatab-6-8{display:inline-block;min-width:12.5%;position:absolute}.ha-hatab-6-8{left:75%}.ha-hatab-7-8{display:inline-block;left:87.5%;min-width:12.5%;position:absolute}.ha-hatab-0-9{display:inline;min-width:11.111%;position:static}.ha-hatab-1-9{left:11.111%}.ha-hatab-1-9,.ha-hatab-2-9{display:inline-block;min-width:11.111%;position:absolute}.ha-hatab-2-9{left:22.222%}.ha-hatab-3-9{left:33.333%}.ha-hatab-3-9,.ha-hatab-4-9{display:inline-block;min-width:11.111%;position:absolute}.ha-hatab-4-9{left:44.444%}.ha-hatab-5-9{left:55.555%}.ha-hatab-5-9,.ha-hatab-6-9{display:inline-block;min-width:11.111%;position:absolute}.ha-hatab-6-9{left:66.666%}.ha-hatab-7-9{left:77.777%}.ha-hatab-7-9,.ha-hatab-8-9{display:inline-block;min-width:11.111%;position:absolute}.ha-hatab-8-9{left:88.888%}.ha-hatab-0-10,.ha-hatab-1-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-1-10{left:10%}.ha-hatab-2-10{left:20%}.ha-hatab-2-10,.ha-hatab-3-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-3-10{left:30%}.ha-hatab-4-10{left:40%}.ha-hatab-4-10,.ha-hatab-5-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-5-10{left:50%}.ha-hatab-6-10{left:60%}.ha-hatab-6-10,.ha-hatab-7-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-7-10{left:70%}.ha-hatab-8-10{left:80%}.ha-hatab-8-10,.ha-hatab-9-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-9-10{left:90%}.ha-hatab-0-11,.ha-hatab-1-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-1-11{left:9.091%}.ha-hatab-2-11{left:18.182%}.ha-hatab-2-11,.ha-hatab-3-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-3-11{left:27.273%}.ha-hatab-4-11{left:36.364%}.ha-hatab-4-11,.ha-hatab-5-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-5-11{left:45.455%}.ha-hatab-6-11{left:54.545%}.ha-hatab-6-11,.ha-hatab-7-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-7-11{left:63.636%}.ha-hatab-8-11{left:72.727%}.ha-hatab-8-11,.ha-hatab-9-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-9-11{left:81.818%}.ha-hatab-10-11{display:inline-block;left:90.909%;min-width:9.091%;position:absolute}.ha-hatab-0-12,.ha-hatab-1-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-1-12{left:8.333%}.ha-hatab-2-12{left:16.666%}.ha-hatab-2-12,.ha-hatab-3-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-3-12{left:25%}.ha-hatab-4-12{left:33.333%}.ha-hatab-4-12,.ha-hatab-5-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-5-12{left:41.666%}.ha-hatab-6-12{left:50%}.ha-hatab-6-12,.ha-hatab-7-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-7-12{left:58.333%}.ha-hatab-8-12{left:66.666%}.ha-hatab-8-12,.ha-hatab-9-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-9-12{left:75%}.ha-hatab-10-12{left:83.333%}.ha-hatab-10-12,.ha-hatab-11-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-11-12{left:91.666%}.ha-static table{empty-cells:show}.ha-lettertext .ha-marginalbox .ha-marginal:after,.ha-lettertext .ha-marginalbox .ha-marginal:last-of-type:after,.ha-lettertext .ha-marginalbox:before{content:""}.ha-lettertext .ha-marginalbox.ha-collapsed-box .ha-marginallist .ha-marginal,.ha-tradzhtext .ha-marginalbox.ha-collapsed-box .ha-marginallist .ha-marginal{-webkit-box-orient:vertical;display:-webkit-inline-box}.ha-additions .ha-edits .ha-editentries tr td:nth-of-type(2):after{content:""}@media print{.ha-footer,header{display:none}.ha-letterheadernav{display:none!important}.ha-letterheader{border-style:none!important}.ha-scrollbutton{display:none!important}html{font-size:1rem;line-height:1.5rem}}.hover\:bg-slate-200:hover{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.hover\:text-black:hover{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.hover\:underline:hover{-webkit-text-decoration-line:underline;text-decoration-line:underline}.dark .dark\:border-none{border-style:none}.dark .dark\:border-gray-900{--tw-border-opacity:1;border-color:rgb(17 24 39/var(--tw-border-opacity))}.dark .dark\:bg-slate-900{--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.dark .dark\:bg-slate-800{--tw-bg-opacity:1;background-color:rgb(30 41 59/var(--tw-bg-opacity))}.dark .dark\:pt-2{padding-top:.5rem}.dark .dark\:pb-2{padding-bottom:.5rem}.dark .dark\:text-slate-50{--tw-text-opacity:1;color:rgb(248 250 252/var(--tw-text-opacity))}.dark .dark\:shadow-xl{--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}@media (min-width:700px){.sm\:inline{display:inline}.sm\:hidden{display:none}}@media (min-width:940px){.md\:mb-0{margin-bottom:0}.md\:mt-4{margin-top:1rem}.md\:\!block{display:block!important}.md\:block{display:block}.md\:inline-block{display:inline-block}.md\:inline{display:inline}.md\:flex{display:flex}.md\:hidden{display:none}.md\:\!hidden{display:none!important}.md\:h-16{height:4rem}.md\:min-h-\[4\.5rem\]{min-height:4.5rem}.md\:w-16{width:4rem}.md\:basis-1\/2{flex-basis:50%}.md\:flex-row{flex-direction:row}.md\:items-stretch{align-items:stretch}.md\:gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.md\:px-12{padding-left:3rem;padding-right:3rem}.md\:py-6{padding-bottom:1.5rem;padding-top:1.5rem}.md\:px-9{padding-left:2.25rem;padding-right:2.25rem}.md\:pt-8{padding-top:2rem}.md\:text-3xl{font-size:1.875rem;line-height:2.25rem}.md\:text-lg{font-size:1.15rem;line-height:1.75rem}}@media (min-width:1190px){.desktop\:absolute{position:absolute}.desktop\:right-0{right:0}.desktop\:right-10{right:2.5rem}.desktop\:my-0{margin-bottom:0;margin-top:0}.desktop\:mb-10{margin-bottom:2.5rem}.desktop\:mb-0{margin-bottom:0}.desktop\:mb-8{margin-bottom:2rem}.desktop\:mr-16{margin-right:4rem}.desktop\:block{display:block}.desktop\:flex{display:flex}.desktop\:hidden{display:none}.desktop\:h-16{height:4rem}.desktop\:w-16{width:4rem}.desktop\:max-w-screen-desktop{max-width:1190px}.desktop\:basis-1\/2{flex-basis:50%}.desktop\:flex-row{flex-direction:row}.desktop\:flex-col{flex-direction:column}.desktop\:items-stretch{align-items:stretch}.desktop\:gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.desktop\:whitespace-nowrap{white-space:nowrap}.desktop\:border-b{border-bottom-width:1px}.desktop\:border-slate-300{--tw-border-opacity:1;border-color:rgb(203 213 225/var(--tw-border-opacity))}.desktop\:bg-slate-200{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.desktop\:px-8{padding-left:2rem;padding-right:2rem}.desktop\:pr-72{padding-right:18rem}.desktop\:pr-8{padding-right:2rem}.desktop\:text-2xl{font-size:1.5rem;line-height:2rem}.desktop\:shadow-2xl{--tw-shadow:0 25px 50px -12px rgba(0,0,0,.25);--tw-shadow-colored:0 25px 50px -12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}}@media (min-width:1440px){.xl\:h-12{height:3rem}.xl\:w-12{width:3rem}.xl\:text-3xl{font-size:1.875rem;line-height:2.25rem}} \ No newline at end of file +/*! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com*/*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}:after,:before{--tw-content:""}html{-webkit-text-size-adjust:100%;font-feature-settings:normal;font-family:Biolinum,sans-serif;font-variation-settings:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace,mono;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{font-feature-settings:inherit;color:inherit;font-family:inherit;font-size:100%;font-variation-settings:inherit;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }body{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity));overflow-x:hidden}:is(.dark body){--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity));background-image:none;color:rgb(255 255 255/var(--tw-text-opacity))}@media (min-width:940px){body{overflow-x:auto;overflow-y:scroll}}.ha-added,.ha-added :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-bg-opacity:1;background-color:rgb(203 213 225/var(--tw-bg-opacity))}:is(.dark .ha-added :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box)),:is(.dark .ha-added){--tw-bg-opacity:1;background-color:rgb(71 85 105/var(--tw-bg-opacity))}.ha-note,.ha-note :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}:is(.dark .ha-note :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box)),:is(.dark .ha-note){--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}.ha-ful,.ha-ful :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}:is(.dark .ha-ful :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box)),:is(.dark .ha-ful){--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.ha-tul,.ha-tul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}:is(.dark .ha-tul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box)),:is(.dark .ha-tul){--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.ha-diagdel:before{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}:is(.dark .ha-diagdel):before{--tw-border-opacity:1;border-color:rgb(255 255 255/var(--tw-border-opacity))}.active{--tw-text-opacity:1!important;color:rgb(216 0 0/var(--tw-text-opacity))!important}:is(.dark .active){--tw-text-opacity:1!important;color:rgb(0 0 0/var(--tw-text-opacity))!important}.active:hover{--tw-text-opacity:1!important;color:rgb(216 0 0/var(--tw-text-opacity))!important}:is(.dark .active:hover){--tw-text-opacity:1!important;color:rgb(31 41 55/var(--tw-text-opacity))!important}*{transition-duration:.1s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}body{font-size:1rem;height:100%;line-height:1.5rem;width:100%}@media (min-width:1190px){body{font-size:1.15rem;line-height:1.75rem}}.ha-found,.ha-location{--tw-text-opacity:1!important;color:rgb(50 112 184/var(--tw-text-opacity))!important}.ha-location{display:none;font-size:1.25rem;line-height:1.75rem;position:absolute}@media (min-width:700px){.ha-location{display:inline-block}}.ha-zhbreak{display:none}@media (min-width:700px){.ha-zhbreak{display:inline}}.ha-up{position:relative;top:-.75rem}.ha-bzg{font-family:Libertine,serif!important;font-size:.7rem!important;font-weight:600!important;line-height:1rem!important}.ha-literal,.ha-title{display:inline}.ha-title{font-style:italic}.ha-insertedlemma{display:inline}.ha-serif{font-family:Libertine,serif}.ha-aq,.ha-aq :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){font-family:Biolinum,sans-serif}.ha-ul,.ha-ul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){text-decoration-line:underline}.ha-del,.ha-del :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-diagdel,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){display:inline;text-decoration-line:line-through}.ha-hand,.ha-hand :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){font-family:Playfair,serif;font-size:.9rem}.ha-added,.ha-added :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){border-radius:.125rem;padding-left:.125rem;padding-right:.125rem}.ha-emph :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box),.ha-note,.ha-note :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){font-style:italic}.ha-sup:not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){font-size:80%;position:relative;top:-.3em}.ha-super:not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){display:inline-block;font-size:.7rem;font-variant-numeric:normal;line-height:1rem;line-height:1;position:relative;top:-.3em;vertical-align:baseline}.ha-sub:not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal,.ha-marginal *,.ha-btn-collapsed-box){bottom:-.25em;font-size:.7rem;line-height:1rem;line-height:1;position:relative;vertical-align:baseline}.ha-ful,.ha-ful :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){border-bottom-width:1px;display:inline;padding-bottom:2px}.ha-dul,.ha-dul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){text-decoration-line:underline;text-decoration-style:double}.ha-tul,.ha-tul :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){border-bottom-width:3px;border-style:double;text-decoration-line:underline}.up{position:relative;top:-.5em}.ha-alignright:not(.reference *,.reference,.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){float:right}.ha-aligncenter:not(.reference *,.reference,.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){--tw-translate-x:-50%;left:45%;position:absolute;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));white-space:nowrap}.ha-sal{display:inline-block;margin-left:1.5rem}.ha-letlink{font-variant-caps:all-petite-caps}.ha-indent-1{padding-left:.5rem}@media (min-width:700px){.ha-indent-1{padding-left:1rem}}.ha-indent-2{padding-left:1rem}@media (min-width:700px){.ha-indent-2{padding-left:2rem}}.ha-indent-3{padding-left:1.5rem}@media (min-width:700px){.ha-indent-3{padding-left:3rem}}.ha-indent-4{padding-left:2rem}@media (min-width:700px){.ha-indent-4{padding-left:4rem}}.ha-indent-5{padding-left:2.5rem}@media (min-width:700px){.ha-indent-5{padding-left:5rem}}.ha-indent-6{padding-left:5rem}@media (min-width:700px){.ha-indent-6{padding-left:11rem}}.ha-indent-7{padding-left:8rem}@media (min-width:700px){.ha-indent-7{padding-left:16rem}}.ha-collapsed-box,.ha-collapsed-box *{cursor:default;min-height:0;min-width:0;overflow:hidden;text-overflow:ellipsis;z-index:0}.ha-expanded-box{height:auto!important;max-height:100vh!important;padding-bottom:.25rem;z-index:1000}.ha-topnav-dropdown .ha-topnav-dropdown-content{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-bottom-width:1px;border-color:rgb(148 163 184/var(--tw-border-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-topnav-dropdown .ha-topnav-dropdown-content a:hover{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.ha-topnav a{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-topnav a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}@media (min-width:1190px){.ha-topnav a{border-bottom-width:4px;border-color:transparent}}:is(.dark .ha-topnav a.active){--tw-border-opacity:1;border-color:rgb(51 65 85/var(--tw-border-opacity));font-weight:700}@media (min-width:1190px){.ha-topnav a.active{--tw-border-opacity:1;border-bottom-width:4px;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);border-bottom-width:1px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}}.ha-menusymbol svg{stroke:#000;--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.ha-topnav{display:flex}@media (min-width:940px){.ha-topnav{font-size:1.15rem;line-height:1.75rem}}@media (min-width:1190px){.ha-topnav{flex-grow:0;flex-shrink:0;place-self:end}}@media (min-width:1440px){.ha-topnav{margin-bottom:.25rem}}@media (min-width:1680px){.ha-topnav{font-size:1.25rem;line-height:1.75rem}}.ha-topnav a{display:none;margin-right:1.5rem}@media (min-width:1190px){.ha-topnav a{display:inline-block}}@media (min-width:1680px){.ha-topnav a{margin-right:1.75rem}}.ha-topnav a:last-child{margin-right:0}.ha-topnav-dropdown{display:none}@media (min-width:1190px){.ha-topnav-dropdown{display:inline-block;position:relative}.ha-topnav-dropdown:hover .ha-topnav-dropdown-content{display:block}}.ha-topnav-dropdown .ha-topnav-dropdown-content{display:none;margin-right:1.5rem;min-width:130px;padding-top:.25rem;right:0;white-space:nowrap;z-index:50}@media (min-width:1190px){.ha-topnav-dropdown .ha-topnav-dropdown-content{position:absolute}}.ha-topnav-dropdown .ha-topnav-dropdown-content a{display:block;margin-right:0;padding:.5rem .75rem .5rem .5rem;white-space:nowrap}.ha-topnav-dropdown .ha-topnav-dropdown-content .active{border-style:none}.ha-topnav a.active{text-decoration-line:underline;text-underline-offset:2px}@media (min-width:1190px){.ha-topnav a.active{text-decoration-line:none}}.ha-topnav.ha-topnav-collapsed{display:block;font-size:1rem;height:100%;line-height:1.5rem;margin-top:1rem;width:100%}@media (min-width:940px){.ha-topnav.ha-topnav-collapsed{font-size:1.15rem;line-height:1.75rem}}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed{display:flex;margin-top:0;width:-moz-fit-content;width:fit-content}}@media (min-width:1680px){.ha-topnav.ha-topnav-collapsed{font-size:1.25rem;line-height:1.75rem}}.ha-topnav.ha-topnav-collapsed a{clear:both;display:block;padding-bottom:.25rem;padding-top:.25rem;text-align:left;width:100%}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed a{display:inline-block;padding-bottom:0;padding-top:0;width:-moz-fit-content;width:fit-content}}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown{display:block}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown{display:inline-block}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown:hover .ha-topnav-dropdown-content{display:block}}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;border-style:none;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);display:block;padding-top:0}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content{display:none;padding-top:.5rem}}.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content a{padding-bottom:.25rem;padding-top:.25rem}@media (min-width:1190px){.ha-topnav.ha-topnav-collapsed .ha-topnav-dropdown .ha-topnav-dropdown-content a{padding-bottom:.5rem;padding-top:.5rem}}header .switchsites{bottom:-2.75rem;display:none;position:absolute;right:0}@media (min-width:940px){header .switchsites{display:block}}header .switchsites .switchsitesbtn{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;--tw-drop-shadow:drop-shadow(0 1px 1px rgba(0,0,0,.05));background-color:rgb(249 250 251/var(--tw-bg-opacity));border-bottom-width:1px;border-color:rgb(148 163 184/var(--tw-border-opacity));box-sizing:border-box;color:rgb(30 41 59/var(--tw-text-opacity));display:flex;filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);font-size:1rem;line-height:1.5rem;width:auto}:is(.dark header .switchsites .switchsitesbtn){--tw-bg-opacity:1;--tw-text-opacity:1;--tw-drop-shadow:drop-shadow(0 4px 3px rgba(0,0,0,.07)) drop-shadow(0 2px 2px rgba(0,0,0,.06));background-color:rgb(15 23 42/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity));filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}header .switchsites .switchsitesbtn:hover{--tw-text-opacity:1;--tw-drop-shadow:drop-shadow(0 1px 2px rgba(0,0,0,.1)) drop-shadow(0 1px 1px rgba(0,0,0,.06));color:rgb(0 0 0/var(--tw-text-opacity));filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}:is(.dark header .switchsites .switchsitesbtn:hover){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}header .switchsites .switchsitesbtn img{align-self:center;display:block;height:1.25rem;margin-left:.5rem;margin-right:.5rem}header .switchsites .switchsitesbtn .switchsitestext{display:block;margin:.25rem .5rem .125rem .25rem;white-space:nowrap}header .switchsites .switchsitesbtn .switchsitesarrow{display:block;height:2rem;padding:.25rem .5rem .125rem .25rem}.ha-footer .ha-footertext{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));color:rgb(23 53 87/var(--tw-text-opacity))}:is(.dark .ha-footer .ha-footertext){--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.ha-footer .ha-themetoggles{--tw-bg-opacity:1;--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);background-color:rgb(226 232 240/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);transition-duration:.3s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}:is(.dark .ha-footer .ha-themetoggles){--tw-bg-opacity:1;background-color:rgb(30 41 59/var(--tw-bg-opacity))}.ha-footer .ha-themetoggles #ha-toggledark:checked~.ha-themetoggleslider{background-color:rgb(226 232 240/var(--tw-bg-opacity))}.ha-footer .ha-themetoggles #ha-togglebright:checked~.ha-themetoggleslider,.ha-footer .ha-themetoggles #ha-toggledark:checked~.ha-themetoggleslider{--tw-bg-opacity:1;transition-duration:.3s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-footer .ha-themetoggles #ha-togglebright:checked~.ha-themetoggleslider{background-color:rgb(248 250 252/var(--tw-bg-opacity))}.ha-footer{font-family:Libertine,serif}.ha-footer .ha-footertext{font-size:.85rem;line-height:1.25rem;margin-left:auto;margin-right:auto;max-width:1190px;padding:.5rem 1rem;text-align:right}.ha-footer a{text-decoration-line:underline;text-decoration-style:dotted}.ha-footer a:hover{text-decoration-style:solid}.ha-footer .ha-themetoggles{border-radius:1.5rem;height:1rem;padding-left:.125rem;padding-right:.125rem;position:relative;white-space:nowrap;width:34px}.ha-footer .ha-themetoggles *{float:left}.ha-footer .ha-themetoggles input[type=radio]{display:none}.ha-footer .ha-themetoggles label{border-radius:1.5rem;cursor:pointer;display:block;height:11px;margin:3px 2px;text-align:center;width:11px;z-index:10}.ha-footer .ha-themetoggles .ha-themetoggleslider{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);border-radius:1.5rem;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);height:11px;position:absolute;top:3px;transition-duration:.1s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);width:11px}.ha-footer .ha-themetoggles #ha-toggledark:checked~.ha-themetoggleslider{left:.25rem}.ha-footer .ha-themetoggles #ha-togglebright:checked~.ha-themetoggleslider{left:19px}.ha-scrollbutton{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-bottom-left-radius:.75rem;border-top-left-radius:.75rem;bottom:12rem;color:rgb(30 69 112/var(--tw-text-opacity));cursor:pointer;opacity:0;padding:.5rem 1.5rem .5rem .5rem;position:fixed;right:0;text-align:center;transition-duration:.5s;transition-property:opacity;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-scrollbutton,.ha-scrollbutton:hover{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-scrollbutton:hover{--tw-text-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);color:rgb(43 97 158/var(--tw-text-opacity))}:is(.dark .ha-scrollbutton){--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity));color:rgb(255 255 255/var(--tw-text-opacity))}.ha-scrollbuttonarrow{height:2rem;width:2rem}@media (min-width:1190px){.ha-scrollbuttonarrow{height:2.5rem;width:2.5rem}}.ha-static{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}:is(.dark .ha-static){--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.ha-static h3{--tw-text-opacity:1;color:rgb(23 53 87/var(--tw-text-opacity))}:is(.dark .ha-static h3){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity));font-weight:700}.ha-static table th{--tw-text-opacity:1;color:rgb(23 53 87/var(--tw-text-opacity))}:is(.dark .ha-static table th){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity));font-weight:700}.ha-static table tr:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}:is(.dark .ha-static table tr:nth-child(2n)){--tw-bg-opacity:1;background-color:rgb(51 65 85/var(--tw-bg-opacity))}.ha-static{font-family:Libertine,serif;-webkit-hyphens:auto;hyphens:auto;padding:1rem;width:100%}@media (min-width:940px){.ha-static{padding:3rem 4rem}.ha-static .ha-static-right-margin{padding-right:15rem}}@media (min-width:1190px){.ha-static .ha-static-right-margin{padding-right:20rem}}.ha-static h1{font-size:1.5rem;font-weight:700;-webkit-hyphens:none;hyphens:none;line-height:2rem;margin-bottom:2.25rem}@media (min-width:1190px){.ha-static h1{font-size:3rem;font-weight:400;line-height:1}}.ha-static h2{font-size:1.15rem;line-height:1.75rem;margin-bottom:.75rem;margin-top:1rem}@media (min-width:1190px){.ha-static h2{font-size:1.5rem;line-height:2rem}}.ha-static h3{font-weight:700;margin-bottom:.5rem;margin-top:1rem}.ha-static table{margin-bottom:.75rem;margin-top:.75rem;width:100%}.ha-static table tr td p{margin-bottom:.5rem!important;margin-top:.5rem!important}.ha-static table th{font-weight:700;padding-left:.5rem;padding-right:.5rem;text-align:left}@media (min-width:1190px){.ha-static table th{padding-right:1rem}}.ha-static table tr td{padding-left:.5rem;padding-right:.5rem;vertical-align:top}@media (min-width:1190px){.ha-static table tr td{padding-right:1rem}.ha-static table tr td:last-child{white-space:normal}}.ha-static p{margin-bottom:1rem;margin-top:1rem}.ha-static a{text-decoration-line:underline;text-decoration-style:dotted}.ha-static a:hover{text-decoration-line:underline;text-decoration-style:solid}.ha-static .ha-footnote{font-size:.85rem;line-height:1.25rem;position:relative}@media (min-width:1190px){.ha-static .ha-footnote{font-size:1rem;line-height:1.5rem}}.ha-static .ha-footnote .ha-footnote-ref{display:inline-block;left:-2.5rem;position:absolute;text-align:right;width:2rem}.ha-register .ha-register-body,.ha-register .ha-register-head{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}:is(.dark .ha-register .ha-register-body),:is(.dark .ha-register .ha-register-head){--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);background-color:rgb(15 23 42/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgb(248 250 252/var(--tw-text-opacity))}.ha-register .ha-register-head{--tw-border-opacity:1;border-bottom-width:2px;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-register .ha-register-head .ha-register-nav a{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-register .ha-register-head .ha-register-nav a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}:is(.dark .ha-register .ha-register-head .ha-register-nav a){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(.dark .ha-register .ha-register-head .ha-register-nav a:hover){--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.ha-register .ha-register-head .ha-register-nav a.active{--tw-border-opacity:1;border-bottom-width:2px;border-color:rgb(226 232 240/var(--tw-border-opacity))}:is(.dark .ha-register .ha-register-head .ha-register-nav a.active){--tw-text-opacity:1!important;color:rgb(229 231 235/var(--tw-text-opacity))!important;font-weight:700}:is(.dark .ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks),:is(.dark .ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks){--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity));color:rgb(248 250 252/var(--tw-text-opacity))}@media (min-width:1190px){.ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}}.ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks:before,.ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks:before{--tw-bg-opacity:1;background-color:rgb(43 97 158/var(--tw-bg-opacity))}:is(.dark .ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks):before,:is(.dark .ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks):before{--tw-bg-opacity:1;background-color:rgb(100 116 139/var(--tw-bg-opacity))}.ha-register .ha-register-body .ha-commenthead .ha-letlinks.ha-expanded-box{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}:is(.dark .ha-register .ha-register-body .ha-commenthead .ha-letlinks.ha-expanded-box){--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-register .ha-btn-collapsed-box{margin-top:.125rem}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}:is(.dark .ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks .ha-hkb){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks a{text-decoration-line:none}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks a:hover{color:rgb(23 53 87/var(--tw-text-opacity));text-decoration-line:underline}:is(.dark .ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks a:hover){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}:is(.dark .ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ha-register{font-family:Libertine,serif;font-variant-numeric:oldstyle-nums;width:100%}.ha-register .ha-register-body,.ha-register .ha-register-head{padding-left:2.25rem;padding-right:2.25rem;padding-top:2.25rem}@media (min-width:940px){.ha-register .ha-register-body,.ha-register .ha-register-head{padding-left:4rem;padding-right:4rem;padding-top:3rem}}.ha-register .ha-register-head{border-top-left-radius:.125rem;border-top-right-radius:.125rem}.ha-register .ha-register-head h1{display:inline-block;font-size:1.5rem;font-weight:700;line-height:2rem;margin-bottom:1.5rem}@media (min-width:1190px){.ha-register .ha-register-head h1{font-size:3rem;font-weight:400;line-height:1}}.ha-register .ha-register-head .ha-register-add a .ha-register-add-text{text-decoration-line:underline;text-decoration-style:dotted}.ha-register .ha-register-head .ha-register-add a .ha-register-add-text:hover{text-decoration-style:solid}.ha-register .ha-register-head .ha-register-add a{display:flex;flex-direction:row;font-family:Biolinum,sans-serif;font-size:.85rem;line-height:1.25rem;width:-moz-fit-content;width:fit-content}.ha-register .ha-register-head .ha-register-add a .ha-register-add-plusbutton{font-weight:700;line-height:1;padding-bottom:.25rem;padding-top:.25rem}.ha-register .ha-register-head .ha-register-add a .ha-register-add-text{line-height:1;padding-left:.25rem;padding-right:.5rem;padding-top:.25rem}.ha-register .ha-register-head form{-moz-column-gap:.5rem;column-gap:.5rem;display:flex;flex-direction:row;font-family:Biolinum,sans-serif;margin-bottom:.25rem;margin-top:-.25rem;padding-bottom:.25rem;padding-top:.25rem}.ha-register .ha-register-head form input{border-width:1px;flex-grow:0;min-width:0;padding-left:.25rem;padding-right:.25rem}.ha-register .ha-register-head form button{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;padding-left:.25rem;padding-right:.25rem}.ha-register .ha-register-head form button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-register .ha-register-head form button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-register .ha-register-head form button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-register .ha-register-head .ha-register-nav{font-family:Biolinum,sans-serif;margin-top:1.5rem}.ha-register .ha-register-head .ha-register-nav a{display:inline-block;margin-right:.25rem;padding-left:.25rem;padding-right:.25rem}@media (min-width:940px){.ha-register .ha-register-head .ha-register-nav a{margin-right:.75rem}}.ha-register .ha-register-head .ha-register-nav a:first{padding-left:0}.ha-register .ha-register-head .ha-register-nav .ha-register-left-nav,.ha-register .ha-register-head .ha-register-nav .ha-register-right-nav{display:inline-block}.ha-register .ha-register-body{border-bottom-left-radius:.125rem;border-bottom-right-radius:.125rem;padding-bottom:2.25rem}@media (min-width:940px){.ha-register .ha-register-body{padding-bottom:3rem;padding-right:29rem}}.ha-register .ha-register-body .ha-comment{display:block;margin-bottom:2.25rem}@media (min-width:940px){.ha-register .ha-register-body .ha-comment{margin-bottom:3rem}}.ha-register .ha-register-body .ha-comment a{text-decoration-line:underline;text-decoration-style:dotted}.ha-register .ha-register-body .ha-comment a:hover{text-decoration-style:solid}.ha-register .ha-register-body .ha-comment .ha-headcomment{display:block}@media (min-width:1190px){.ha-register .ha-register-body .ha-comment .ha-headcomment{position:relative}}.ha-register .ha-register-body .ha-comment .ha-subcomment{display:block;margin-left:2rem;margin-top:.5rem}@media (min-width:1190px){.ha-register .ha-register-body .ha-comment .ha-subcomment{position:relative}}.ha-register .ha-register-body .ha-comment .ha-commenthead{display:block}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-lemma{display:inline;font-weight:700}.ha-register .ha-forschung .ha-register-body .ha-comment .ha-commenthead .ha-lemma{display:inline;font-weight:400}.ha-register .ha-forschung .ha-register-body .ha-comment{margin-bottom:1rem;padding-left:1rem;text-indent:-1rem}@media (min-width:940px){.ha-register .ha-forschung .ha-register-body .ha-comment{margin-bottom:1.5rem}}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks{display:inline-block;font-family:Biolinum,sans-serif;font-size:.7rem;font-variant-caps:all-petite-caps;font-weight:400;line-height:1rem;line-height:1.375;margin-left:.5rem;margin-top:.25rem}@media (min-width:940px){.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks{font-size:.85rem;line-height:1.25rem}}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks:before{--tw-content:"";bottom:.1rem;content:var(--tw-content);left:0;margin-top:.25rem;position:absolute;top:.1rem;width:.125rem}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{display:inline}@media (min-width:1190px){.ha-register .ha-forschung .ha-register-body .ha-headcomment .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-headcomment .ha-commenthead .ha-letlinks{left:48rem}.ha-register .ha-forschung .ha-register-body .ha-subcomment .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-subcomment .ha-commenthead .ha-letlinks{left:46rem}}.ha-register .ha-bibel .ha-register-body .ha-commenthead .ha-lemma a{padding-left:.5rem}.ha-register .ha-bibel .ha-register-body .ha-commenthead .ha-lemma svg{display:inline}.ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks{padding-left:.5rem}@media (min-width:1190px){.ha-register .ha-forschung .ha-register-body .ha-commenthead .ha-letlinks,.ha-register .ha-neuzeit .ha-register-body .ha-commenthead .ha-letlinks{display:block;position:absolute;text-indent:0;top:0;width:20rem}}.ha-register .ha-register-body .ha-comment .ha-commenthead .ha-letlinks a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.ha-register .ha-headcomment .ha-btn-collapsed-box{left:47.6rem}.ha-register .ha-subcomment .ha-btn-collapsed-box{left:45.6rem}.ha-register .ha-btn-collapsed-box{cursor:pointer;display:none;position:absolute;top:-.15rem}@media (min-width:1190px){.ha-register .ha-btn-collapsed-box{display:block}}.ha-tooltiptext{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(23 53 87/var(--tw-border-opacity));border-width:1px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgb(23 53 87/var(--tw-text-opacity))}:is(.dark .ha-tooltiptext){--tw-bg-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(30 41 59/var(--tw-bg-opacity));border-style:none;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-tooltip .ha-tooltiptext:after{--tw-border-opacity:1;border-bottom-color:transparent;border-left-color:transparent;border-right-color:transparent;border-top-color:rgb(71 85 105/var(--tw-border-opacity))}:is(.dark .ha-tooltip .ha-tooltiptext):after{--tw-border-opacity:1;border-top-color:rgb(30 41 59/var(--tw-border-opacity))}.ha-pill{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));border-radius:.25rem;color:rgb(75 85 99/var(--tw-text-opacity))}:is(.dark .ha-pill.ha-newpill){--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);background-color:rgb(30 41 59/var(--tw-bg-opacity));border-color:rgb(148 163 184/var(--tw-border-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgb(255 255 255/var(--tw-text-opacity))}.ha-pill .ha-cross:before{--tw-border-opacity:1;border-bottom-width:2px;border-color:rgb(23 53 87/var(--tw-border-opacity))}:is(.dark .ha-pill .ha-cross):before{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity))}.ha-letterhead{display:flex;flex-direction:row}.ha-letterhead .ha-letternumber{display:flex;font-size:3rem;line-height:1;margin-right:1rem}@media (min-width:1190px){.ha-letterhead .ha-letternumber{font-size:3.75rem;font-weight:400;line-height:1;margin-right:1.5rem}}.ha-letterhead .ha-letternumber .ha-letternumberinline{display:inline;line-height:1;vertical-align:middle}.ha-letterhead .ha-metadata{align-self:flex-end;display:flex;flex-direction:column;flex-grow:1}.ha-letterhead .ha-metadatastrike{align-self:center;display:flex}.ha-letterhead .ha-metadata .ha-metadataupperrow{display:flex;flex-direction:row;line-height:1.375}.ha-letterhead .ha-metadata .ha-metadataupperrow .ha-metadatadate{display:flex;font-variant-caps:petite-caps;font-variant-numeric:oldstyle-nums;white-space:nowrap}.ha-tooltip{align-self:center;cursor:default;display:inline-block;position:relative}.ha-tooltiptext{border-radius:.25rem;font-size:.85rem;line-height:1.25rem;padding:.125rem .25rem;position:absolute;text-align:center;z-index:10}.ha-tooltiptext:after{left:50%;position:absolute;top:100%}.ha-pill{font-size:.7rem;letter-spacing:0;line-height:1rem;margin-left:.375rem;padding-left:.25rem;padding-right:.25rem;white-space:nowrap}.ha-pill .ha-cross{display:inline-block;position:relative}.ha-pill .ha-cross:after,.ha-pill .ha-cross:before{height:0;position:absolute;right:0;top:50%;width:100%}.ha-letterhead .ha-metadata .ha-metadatapersons a{border-radius:.25rem;text-decoration-color:#94a3b8;text-decoration-line:underline;text-decoration-style:dotted}.ha-letterhead .ha-metadata .ha-metadatapersons a:hover{text-decoration-color:#4b5563;text-decoration-style:solid}.ha-letterheader{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));border-bottom-width:2px;border-color:rgb(203 213 225/var(--tw-border-opacity))}:is(.dark .ha-letterheader){--tw-border-opacity:1;--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);background-color:rgb(15 23 42/var(--tw-bg-opacity));border-color:rgb(248 250 252/var(--tw-border-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgb(248 250 252/var(--tw-text-opacity))}.ha-letterheader .ha-lettertabs a{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-letterheader .ha-lettertabs a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}:is(.dark .ha-letterheader .ha-lettertabs a){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(.dark .ha-letterheader .ha-lettertabs a:hover){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-letterheader .ha-lettertabs a.active{--tw-border-opacity:1;--tw-text-opacity:1;border-bottom-width:3px;border-color:rgb(203 213 225/var(--tw-border-opacity));color:rgb(216 0 0/var(--tw-text-opacity))}:is(.dark .ha-letterheader .ha-lettertabs a.active){--tw-border-opacity:1;--tw-text-opacity:1!important;border-color:rgb(248 250 252/var(--tw-border-opacity));color:rgb(229 231 235/var(--tw-text-opacity))!important;font-weight:700}.ha-letterheader .ha-lettermetalinks{--tw-border-opacity:1;border-bottom-width:2px;border-color:rgb(203 213 225/var(--tw-border-opacity))}.ha-letterheader .ha-lettermetalinks a{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-letterheader .ha-lettermetalinks a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}:is(.dark .ha-letterheader .ha-lettermetalinks a){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(.dark .ha-letterheader .ha-lettermetalinks a:hover){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-letterbody{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}:is(.dark .ha-letterbody){--tw-bg-opacity:1;--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);background-color:rgb(15 23 42/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-text{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(226 232 240/var(--tw-border-opacity))}:is(.dark .ha-text){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}@media (min-width:700px){.ha-appcontainer.ha-appcontainer-0 .ha-text{border-left-width:2px}:is(.dark .ha-appcontainer.ha-appcontainer-0 .ha-text){border-style:none}}.ha-defaulttab{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}:is(.dark .ha-defaulttab){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-defaulttab .ha-edits .ha-editentries table tr:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}:is(.dark .ha-defaulttab .ha-edits .ha-editentries table tr:nth-child(2n)){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-linecount.ha-firstline{--tw-text-opacity:1;border-radius:.5rem;color:rgb(30 41 59/var(--tw-text-opacity))}:is(.dark .ha-linecount.ha-firstline){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}@media (min-width:700px){.ha-linecount.ha-firstline{--tw-border-opacity:1;--tw-bg-opacity:1;--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(71 85 105/var(--tw-border-opacity));border-width:1px;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}:is(.dark .ha-linecount.ha-firstline){--tw-border-opacity:1;--tw-bg-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);background-color:rgb(30 41 59/var(--tw-bg-opacity));border-color:rgb(148 163 184/var(--tw-border-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-linecount .ha-zhline,.ha-linecount .ha-zhpage{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}:is(.dark .ha-linecount .ha-zhline),:is(.dark .ha-linecount .ha-zhpage){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}}.ha-text .ha-marginal:before{--tw-bg-opacity:1;background-color:rgb(43 97 158/var(--tw-bg-opacity))}:is(.dark .ha-text .ha-marginal):before{--tw-bg-opacity:1;background-color:rgb(100 116 139/var(--tw-bg-opacity))}.ha-text .ha-marginalbox{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}:is(.dark .ha-text .ha-marginalbox){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-text .ha-marginalbox.ha-expanded-box .ha-marginallist{--tw-bg-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);background-color:rgb(241 245 249/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);padding-bottom:.25rem}:is(.dark .ha-text .ha-marginalbox.ha-expanded-box .ha-marginallist){--tw-bg-opacity:1;--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);background-color:rgb(71 85 105/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-text .ha-btn-collapsed-box{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}.ha-text .ha-btn-collapsed-box:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}:is(.dark .ha-text .ha-btn-collapsed-box){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}:is(.dark .ha-text .ha-btn-collapsed-box:hover){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-letterheader{border-top-left-radius:.125rem;border-top-right-radius:.125rem;padding-left:1.5rem;padding-right:1.5rem;padding-top:2rem}@media (min-width:940px){.ha-letterheader{padding-left:4rem;padding-right:4rem;padding-top:3rem}}.ha-letterheader .ha-letterheadernav{display:flex;flex-grow:1;margin-top:2.25rem}.ha-letterheader .ha-lettertabs{display:flex;flex-grow:1}.ha-letterheader .ha-lettertabs a{cursor:pointer;display:inline-block;margin-right:.25rem;padding-left:.25rem;padding-right:.25rem}@media (min-width:940px){.ha-letterheader .ha-lettertabs a{margin-right:.75rem}.ha-letterheader .ha-lettertabs .ha-marginalsbtn{display:none}}.ha-letterheader .ha-lettertabs a.active{pointer-events:none}.ha-letterheader .ha-lettertabs a:first{padding-left:0}.ha-letterheader .ha-lettermetalinks{align-self:flex-end}.ha-letterheader .ha-lettermetalinks a{align-self:flex-end;font-variant-caps:petite-caps}.ha-letterheader .ha-lettermetalinks .ha-hkb{display:inline-block;font-variant-caps:all-petite-caps}.ha-tab{max-width:52rem}.ha-tab .ha-appcontainer{font-family:Libertine,serif;font-variant-numeric:oldstyle-nums;margin-left:1.5rem;padding-bottom:.75rem;padding-top:.75rem}@media (min-width:940px){.ha-tab .ha-appcontainer{margin-left:4rem}}.ha-appcontainer.ha-appcontainer-0{padding-bottom:0;padding-top:0}.ha-appcontainer h3{font-weight:700}.ha-appcontainer a{text-decoration-color:#1e293b;text-decoration-line:underline;text-decoration-style:dotted}.ha-appcontainer a:hover{text-decoration-color:#0f172a;text-decoration-style:solid}.ha-textcontainer{display:flex;margin-left:-1.5rem}@media (min-width:940px){.ha-textcontainer{margin-left:-4rem}}.ha-text{display:flow-root;font-family:Libertine,serif;font-variant-numeric:oldstyle-nums;line-height:1.48;margin-left:1rem;max-width:38rem;padding:.5rem 1rem .75rem;position:relative}@media (min-width:700px){.ha-text{flex-shrink:0;margin-left:3rem}}@media (min-width:1190px){.ha-text{max-width:52rem}}.ha-text div{display:inline}.ha-linecount.ha-firstline{border-radius:.25rem;display:none;font-variant-caps:all-petite-caps;font-variant-numeric:normal;padding-left:.375rem;padding-right:.375rem;white-space:nowrap}@media (min-width:700px){.ha-linecount.ha-firstline{display:inline-block;line-height:1;padding-bottom:.25rem;padding-top:.125rem}}.ha-linecount{font-family:Biolinum,sans-serif;font-size:.7rem;line-height:1rem;-webkit-user-select:none;-moz-user-select:none;user-select:none;white-space:nowrap}@media (min-width:700px){.ha-linecount{margin-right:.5rem;margin-top:.35rem;position:absolute;right:100%;text-align:right}}.ha-linecount .ha-zhline{display:none}@media (min-width:700px){.ha-linecount .ha-zhline{display:inline}}.ha-linecount .ha-zhpage{display:inline-block}@media (min-width:700px){.ha-linecount .ha-zhpage{display:inline}}.ha-linecount .ha-zhline,.ha-linecount .ha-zhpage{font-variant-caps:all-petite-caps;font-variant-numeric:normal;padding-left:.25rem;padding-right:.25rem}@media (min-width:700px){.ha-linecount .ha-zhline,.ha-linecount .ha-zhpage{padding-bottom:.25rem}}.ha-linecount .ha-hiddenlinecount{display:none!important}.ha-text .ha-marginal:before{--tw-content:"";bottom:.1rem;content:var(--tw-content);left:.1rem;position:absolute;top:.2rem;width:.125rem}.ha-text .ha-marginalbox{border-radius:.125rem;display:none;font-family:Biolinum,sans-serif;font-size:.85rem;-webkit-hyphens:auto;hyphens:auto;left:100%;line-height:1.25rem;line-height:1.25;margin-left:1.5rem;margin-top:.25rem;padding-left:.25rem;position:absolute;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:16rem}.ha-text .ha-marginalbox:hover{-webkit-user-select:auto;-moz-user-select:auto;user-select:auto}@media (min-width:940px){.ha-text .ha-marginalbox{display:inline-block}}@media (min-width:1190px){.ha-text .ha-marginalbox{margin-left:2.5rem;width:28rem}}.ha-text .ha-marginalbox .ha-marginallist{-moz-column-gap:1.5rem;column-gap:1.5rem;display:flex;flex-wrap:wrap;font-size:.85rem;line-height:1.25rem;line-height:1.25;padding-right:.25rem}.ha-text .ha-marginalbox .ha-marginallist .ha-marginal{display:inline;padding-left:.5rem;position:relative}.ha-text .ha-marginalbox .ha-marginallist .ha-marginal a{text-decoration-line:underline!important;text-decoration-style:dotted}.ha-text .ha-marginalbox .ha-marginallist .ha-marginal a:hover{text-decoration-style:solid}.ha-text .ha-marginalbox .ha-marginallist .ha-marginal,.ha-text .ha-marginalbox .ha-marginallist .ha-marginal *{min-height:0;min-width:0;overflow:hidden;text-overflow:ellipsis}.ha-text .ha-btn-collapsed-box{cursor:pointer;display:none;left:100%;line-height:1;margin-left:1rem;margin-top:.2rem;position:absolute}@media (min-width:940px){.ha-text .ha-btn-collapsed-box{display:inline-block}}@media (min-width:1190px){.ha-text .ha-btn-collapsed-box{margin-left:1.7rem}}.ha-defaulttab .ha-hands{margin-left:1.5rem}@media (min-width:940px){.ha-defaulttab .ha-hands{margin-left:4rem}}.ha-defaulttab .ha-hands .ha-handstitle{font-weight:700}.ha-defaulttab .ha-hands .ha-handentries .ha-handfrom,.ha-defaulttab .ha-hands .ha-handentries .ha-handto{display:inline;font-size:.85rem;font-weight:600;line-height:1.25rem;white-space:nowrap}.ha-defaulttab .ha-hands .ha-handentries .ha-handperson{display:inline;padding-left:1rem;white-space:nowrap}.ha-defaulttab .ha-edits .ha-editentries .ha-editfromto{white-space:nowrap}.ha-defaulttab .ha-edits .ha-editentries .ha-editfrom,.ha-defaulttab .ha-edits .ha-editentries .ha-editto{display:inline;font-size:.85rem;font-weight:600;line-height:1.25rem;white-space:nowrap}.ha-defaulttab .ha-edits .ha-editentries .ha-editreference{white-space:nowrap}.ha-defaulttab .ha-edits .ha-editentries .ha-editreference div{display:inline}.ha-defaulttab .ha-edits{margin-left:1.5rem;max-width:56rem}@media (min-width:940px){.ha-defaulttab .ha-edits{margin-left:4rem}.ha-defaulttab .ha-edits .ha-editentries{margin-right:-9rem}}.ha-defaulttab .ha-edits .ha-editstitle{font-weight:700}.ha-defaulttab .ha-edits .ha-editsinfo{-webkit-hyphens:auto;hyphens:auto;padding-bottom:1rem}.ha-defaulttab .ha-edits .ha-editentries tr td{vertical-align:text-top}.ha-defaulttab .ha-edits .ha-editentries .ha-editreas div{display:inline;font-family:Biolinum,sans-serif}.ha-defaulttab .ha-edits .ha-editentries .ha-editfromto{padding-left:.25rem;padding-right:.25rem}.ha-defaulttab .ha-edits .ha-editentries .ha-editreference{border-right-width:2px;font-size:.85rem;line-height:1.25rem;padding-left:.25rem;padding-right:.75rem}.ha-defaulttab .ha-edits .ha-editentries .ha-editreference br{display:none}.ha-defaulttab .ha-edits .ha-editentries .ha-editreas{padding-left:.75rem;width:100%}.ha-defaulttab .ha-edits .ha-editentries .ha-editreas .ha-zh *{font-family:Libertine,serif!important}.ha-minwidth .ha-text{min-width:44rem}@media (min-width:1190px){.ha-minwidth .ha-text{min-width:52rem}}.ha-minwidth .ha-text .ha-alignright{float:right;margin-right:20%}.ha-minwidth .ha-aligncenter{--tw-translate-x:-50%;left:33.333333%;position:absolute;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));white-space:nowrap}.ha-minwidth .ha-marginalbox{margin-left:.25rem!important}.ha-xmlstateheader{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));display:flex;flex-direction:row;margin-top:1rem;padding:3rem 4rem 2rem;width:100%}.ha-xmlstateheader h1{font-size:3rem;line-height:1}.ha-managedfiles{--tw-border-opacity:1;border-color:rgb(203 213 225/var(--tw-border-opacity));border-width:1px;margin-top:1rem;padding:.75rem 1rem}.ha-repo{position:relative}.ha-repodata{--tw-bg-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);padding:.25rem .875rem;width:-moz-max-content;width:max-content}.ha-repodata a{text-decoration-line:underline;text-decoration-style:dotted}.ha-repofilecount{--tw-bg-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));bottom:0;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);padding:.25rem .75rem;position:absolute;right:0}.ha-managedfileslist{display:flex;flex-direction:column;gap:.75rem;margin-top:.75rem}.ha-managedfileheader{--tw-bg-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));border-bottom-width:1px;border-radius:.375rem;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);display:flex;flex-direction:row;gap:.5rem;padding:.25rem .625rem .25rem .875rem;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%}.ha-managedfileheader.expandable{border-bottom-width:1px;border-radius:0;border-top-left-radius:.375rem!important;border-top-right-radius:.375rem!important;cursor:pointer}.ha-managedfileheader.orange{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(255 247 237/var(--tw-bg-opacity));border-bottom-width:1px;border-color:rgb(253 186 116/var(--tw-border-opacity))}.ha-managedfileheader.orange .ha-filestatusicon svg{--tw-text-opacity:1;color:rgb(194 65 12/var(--tw-text-opacity));padding-top:0!important}.ha-managedfileheader.red{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(254 242 242/var(--tw-bg-opacity));border-bottom-width:1px;border-color:rgb(248 113 113/var(--tw-border-opacity))}.ha-managedfileheader.red .ha-filestatusicon svg{--tw-text-opacity:1;color:rgb(185 28 28/var(--tw-text-opacity));padding-top:0!important}.ha-managedfileheader.green{--tw-bg-opacity:1;background-color:rgb(240 253 250/var(--tw-bg-opacity))}.ha-managedfileheader.green .ha-filestatusicon svg{--tw-text-opacity:1;color:rgb(21 128 61/var(--tw-text-opacity))}.ha-managedfileheader.expandable.red+.ha-managedfileannotations{--tw-bg-opacity:1;background-color:rgb(254 226 226/var(--tw-bg-opacity))}.ha-managedfileannotations{--tw-bg-opacity:1;--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color);background-color:rgb(255 237 213/var(--tw-bg-opacity));border-bottom-left-radius:.375rem;border-bottom-right-radius:.375rem;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);display:none;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace,mono;font-size:1rem;line-height:1.5rem;max-height:18rem;overflow-x:hidden;overflow-y:auto;padding:.375rem 1rem .25rem;width:100%}.ha-managedfileannotations table{text-align:left;width:100%}.ha-managedfileannotations table td,.ha-managedfileannotations table th{padding-right:1rem}.ha-managedfileannotations table th{--tw-border-opacity:1;border-bottom-width:1px;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-managedfileheader.expandable.expanded+.ha-managedfileannotations{display:block}.ha-managedfile div:first-child{flex-grow:1}.ha-managedfile .ha-filestatusicon{padding-top:.14rem;width:1.25rem}.ha-scbutton{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);--tw-shadow-color:#dbeafe;--tw-shadow:var(--tw-shadow-colored);background-color:rgb(37 99 235/var(--tw-bg-opacity));border-radius:.375rem;border-width:2px;bottom:1rem;color:rgb(248 250 252/var(--tw-text-opacity));cursor:pointer;margin-top:1rem;padding:.25rem 1rem;position:absolute;right:1.5rem;transition-duration:.5s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-scbutton,.ha-scbutton:hover{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-scbutton:hover{--tw-border-opacity:1;--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);--tw-shadow-color:#bfdbfe;--tw-shadow:var(--tw-shadow-colored);border-color:rgb(37 99 235/var(--tw-border-opacity));transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-scbutton:active{--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color)}.ha-scbutton.loading,.ha-scbutton:active{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-scbutton.loading{--tw-border-opacity:1;--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);--tw-shadow-color:#dbeafe;--tw-shadow:var(--tw-shadow-colored);--tw-saturate:saturate(.8);border-color:rgb(37 99 235/var(--tw-border-opacity));filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-filelistfieldset{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));margin-top:1rem;padding:.5rem .75rem}.ha-filelistfieldset .ha-filelistlegend{font-size:1.25rem;line-height:1.75rem;padding-bottom:.5rem}.ha-selectfilesform{position:relative}.ha-selectfilesform .ha-filelistfile{align-items:center;-moz-column-gap:1rem;column-gap:1rem;display:flex;flex-direction:row;padding-left:.25rem;padding-right:.25rem}.ha-selectfilesform .ha-filelistfile:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.ha-selectfilesform .ha-filelistlist{height:24rem;overflow-x:hidden;overflow-y:scroll}.ha-selectfilesform .ha-filelistfile .ha-filelistname{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace,mono}.ha-selectfilesform .ha-filelistfile .ha-filelistusedproduction{font-size:.85rem;line-height:1.25rem}.ha-selectfilesform .ha-filelistfile .ha-filelistusedproduction .ha-filelistproduction{--tw-border-opacity:1;--tw-text-opacity:1;border-color:rgb(13 148 136/var(--tw-border-opacity));border-radius:.375rem;border-width:1px;color:rgb(13 148 136/var(--tw-text-opacity));display:inline-block;margin-right:.5rem;padding-left:.5rem;padding-right:.5rem}.ha-selectfilesform .ha-filelistfile .ha-filelistmodified{flex-grow:1;text-align:right}.ha-selectfilesform .ha-filelistoutput{margin-left:1.5rem;margin-top:1rem}.ha-selectfilesform .ha-filelistbutton{--tw-bg-opacity:1;--tw-text-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);--tw-shadow-color:#dbeafe;--tw-shadow:var(--tw-shadow-colored);background-color:rgb(37 99 235/var(--tw-bg-opacity));border-radius:.375rem;border-width:2px;bottom:1rem;box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);color:rgb(248 250 252/var(--tw-text-opacity));cursor:pointer;margin-top:1rem;padding:.25rem 1rem;position:absolute;right:1.5rem;transition-duration:.5s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-selectfilesform .ha-filelistbutton:hover{--tw-border-opacity:1;--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);--tw-shadow-color:#bfdbfe;--tw-shadow:var(--tw-shadow-colored);border-color:rgb(37 99 235/var(--tw-border-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-selectfilesform .ha-filelistbutton:active{--tw-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);--tw-shadow-colored:inset 0 2px 4px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-selectfilesform .ha-filelistbutton.loading{--tw-border-opacity:1;--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);--tw-shadow-color:#dbeafe;--tw-shadow:var(--tw-shadow-colored);--tw-saturate:saturate(.8);border-color:rgb(37 99 235/var(--tw-border-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-index{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}:is(.dark .ha-index){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}:is(.dark .ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(2n)){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}:is(.dark .ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(odd)){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity));border-bottom-width:1px;border-color:rgb(229 231 235/var(--tw-border-opacity));border-right-width:1px}:is(.dark .ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity));border-style:none}:is(.dark .ha-index .ha-indexhead .ha-indexnav a.active){--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important;font-weight:700}:is(.dark .ha-index .ha-indexhead .ha-indexnav a.active):hover{--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry:hover{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:hover{--tw-bg-opacity:1!important;background-color:rgb(226 232 240/var(--tw-bg-opacity))!important}:is(.dark .ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:hover){--tw-bg-opacity:1!important;background-color:rgb(30 41 59/var(--tw-bg-opacity))!important}:is(.dark .ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a.active){--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important;font-weight:700}.ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}:is(.dark .ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd)){--tw-bg-opacity:1;background-color:rgb(24 24 27/var(--tw-bg-opacity))}.ha-index .ha-indexhead{border-bottom-width:2px}.ha-index .ha-indexhead h1{display:inline-block;font-family:Libertine,serif;font-size:1.5rem;font-weight:700;line-height:2rem;margin-bottom:1.75rem;margin-top:2.25rem;padding-left:2.25rem;padding-right:2.25rem}@media (min-width:940px){.ha-index .ha-indexhead h1{margin-top:3rem;padding-left:4rem;padding-right:4rem}}@media (min-width:1190px){.ha-index .ha-indexhead h1{font-size:3rem;font-weight:400;line-height:1}}.ha-index .ha-indexhead .ha-indexnav{--tw-numeric-figure:oldstyle-nums;font-family:Biolinum,sans-serif;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);margin-top:.5rem;padding-left:2.25rem;padding-right:2.25rem}@media (min-width:940px){.ha-index .ha-indexhead .ha-indexnav{padding-left:4rem;padding-right:4rem}}.ha-index .ha-indexhead .ha-indexnav a{display:inline-block;margin-right:.75rem}.ha-index .ha-indexhead .ha-indexnav a.active{border-bottom-width:4px}.ha-index .ha-indexbody{clear:both;-moz-column-gap:1rem;column-gap:1rem;display:flex;flex-direction:row;padding-top:1.5rem}.ha-index .ha-comment{border-left-width:2px;font-family:Libertine,serif;-webkit-hyphens:auto;hyphens:auto;padding:.75rem 2.25rem 3rem}@media (min-width:940px){.ha-index .ha-comment{padding-left:4rem;padding-right:4rem}}.ha-index .ha-comment .ha-commentmetatext{margin-top:2.25rem}@media (min-width:940px){.ha-index .ha-comment .ha-commentmetatext{margin-top:3rem}}.ha-index .ha-comment .ha-commentmetatext a{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity));border-radius:.25rem;display:inline-block;float:right;font-size:.85rem;line-height:1.25rem;padding-left:.5rem;padding-right:.5rem}.ha-index .ha-comment .ha-lemma{display:inline-block;font-family:Libertine,serif;font-size:1.5rem;font-weight:700;line-height:2rem;margin-bottom:.75rem}@media (min-width:1190px){.ha-index .ha-comment .ha-lemma{font-size:3rem;font-weight:400;line-height:1}}.ha-index .ha-comment .ha-entry{max-width:calc(780px - 4rem)}.ha-index .ha-comment a{text-decoration-line:underline;text-decoration-style:dotted}.ha-index .ha-comment a:hover{text-decoration-style:solid}.ha-index .ha-comment .ha-letlinks{display:none}.ha-index .ha-comment .ha-letlinks .ha-hkb{display:inline}.ha-index .ha-indexbody .ha-letterlist{flex-basis:66.666667%;flex-grow:0;padding-bottom:1rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry:not(:first-child){margin-top:1rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry{border-radius:.125rem;display:block;padding-top:.75rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry,.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry:hover{transition-duration:.1s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterhead{padding-bottom:.75rem;padding-left:1.5rem;padding-right:.75rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));display:block;padding:.25rem 1.5rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-searchresultlocation{display:inline-block;font-size:.85rem;font-variant-numeric:oldstyle-nums;font-weight:600;line-height:1.25rem}.ha-index .ha-indexbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-searchresultpreview{display:inline-block;padding-left:1rem}.ha-index .ha-indexbody .ha-filterlist{display:none;flex-basis:33.333333%;flex-direction:column;flex-shrink:1;float:right;max-width:32rem;min-width:0;padding-bottom:1rem;row-gap:2.25rem}@media (min-width:940px){.ha-index .ha-indexbody .ha-filterlist{display:flex}}.ha-index .ha-indexbody .ha-filterlist .ha-filtertitle{--tw-border-opacity:1;border-bottom-width:1px;border-color:rgb(156 163 175/var(--tw-border-opacity));font-family:Libertine,serif;font-size:1.5rem;line-height:2rem;line-height:1;margin-bottom:.25rem;padding-bottom:.25rem;padding-left:.25rem;padding-right:1rem}.ha-index .ha-indexbody .ha-filterlist .ha-activefilterinfo{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity));border-radius:.25rem;font-family:Biolinum,sans-serif;font-size:.85rem;line-height:1.25rem;margin-top:.25rem;padding-left:.25rem;padding-right:.25rem}.ha-index .ha-indexbody .ha-filterlist .ha-reversefilter{display:inline-block;text-align:right;text-decoration-line:underline;text-decoration-style:dotted}.ha-index .ha-indexbody .ha-filterlist .ha-reversefilter:hover{text-decoration-style:solid}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form{font-family:Biolinum,sans-serif;padding:.25rem .5rem .25rem .25rem}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form .ha-gototext{display:inline-block;font-family:Biolinum,sans-serif;margin-right:.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form input{border-width:1px;padding-left:.25rem;padding-right:.25rem;width:3.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form button{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;display:inline-block;float:right;padding-left:.5rem;padding-right:.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-gotofilter form button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform{padding:.25rem .5rem .25rem .25rem}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform>span{white-space:nowrap}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform input{border-width:1px;padding-left:.25rem;padding-right:.25rem;width:3.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform button{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity));border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;float:right;padding-left:.5rem;padding-right:.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-zhsearchfilter .ha-zhform select{padding-left:.25rem;padding-right:.25rem}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform{-moz-column-gap:.5rem;column-gap:.5rem;display:flex;flex-direction:row;padding:.25rem .5rem .25rem .25rem}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform input{border-width:1px;flex-grow:1;min-width:0;padding-left:.25rem;padding-right:.25rem}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform button{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;float:right;padding-left:.5rem;padding-right:.5rem}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-searchfilter .ha-searchform button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist{margin-right:.5rem;max-height:23rem;overflow-x:hidden;overflow-y:auto;padding-bottom:.25rem;padding-left:.25rem;padding-top:.25rem;transition-duration:.15s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-index .ha-indexbody .ha-filterlist .ha-personfilter .ha-personlist a{display:block;padding-left:.75rem;padding-right:.75rem;transition-property:none!important}.ha-search{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}:is(.dark .ha-search){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-search .ha-searchhead .ha-activefilterinfo{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}:is(.dark .ha-search .ha-searchhead .ha-activefilterinfo){--tw-bg-opacity:1;background-color:rgb(30 41 59/var(--tw-bg-opacity))}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(2n){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}:is(.dark .ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(2n)){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}:is(.dark .ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult:nth-child(odd)){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry{--tw-border-opacity:1;--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity));border-bottom-width:1px;border-color:rgb(229 231 235/var(--tw-border-opacity));border-right-width:1px}:is(.dark .ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity));border-style:none}:is(.dark .ha-search .ha-searchhead .ha-searchnav a.active){--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important;font-weight:700}:is(.dark .ha-search .ha-searchhead .ha-searchnav a.active):hover{--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry:hover{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a:hover{--tw-bg-opacity:1!important;background-color:rgb(226 232 240/var(--tw-bg-opacity))!important}:is(.dark .ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a:hover){--tw-bg-opacity:1!important;background-color:rgb(30 41 59/var(--tw-bg-opacity))!important}:is(.dark .ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a.active){--tw-text-opacity:1!important;color:rgb(255 255 255/var(--tw-text-opacity))!important;font-weight:700}.ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd){--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}:is(.dark .ha-search .ha-searchbody .ha-filterlist .ha-personfilter .ha-personlist a:nth-child(odd)){--tw-bg-opacity:1;background-color:rgb(24 24 27/var(--tw-bg-opacity))}:is(.dark .ha-search .ha-searchbody .ha-commenthead .ha-letlinks){--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity));color:rgb(248 250 252/var(--tw-text-opacity))}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commenthead .ha-letlinks{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}}.ha-search .ha-searchbody .ha-commenthead .ha-letlinks:before{--tw-bg-opacity:1;background-color:rgb(43 97 158/var(--tw-bg-opacity))}:is(.dark .ha-search .ha-searchbody .ha-commenthead .ha-letlinks):before{--tw-bg-opacity:1;background-color:rgb(100 116 139/var(--tw-bg-opacity))}.ha-search .ha-searchbody .ha-commenthead .ha-letlinks.ha-expanded-box{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}:is(.dark .ha-search .ha-searchbody .ha-commenthead .ha-letlinks.ha-expanded-box){--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ha-search .ha-btn-collapsed-box{cursor:pointer;display:none;margin-top:.125rem;position:absolute;top:-.15rem}@media (min-width:1190px){.ha-search .ha-btn-collapsed-box{display:block}}.ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}:is(.dark .ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks .ha-hkb){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks a{text-decoration-line:none}.ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks a:hover{--tw-text-opacity:1;color:rgb(23 53 87/var(--tw-text-opacity));text-decoration-line:underline}:is(.dark .ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks a:hover){--tw-text-opacity:1;color:rgb(229 231 235/var(--tw-text-opacity))}.ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks{--tw-text-opacity:1;color:rgb(51 65 85/var(--tw-text-opacity))}:is(.dark .ha-search .ha-searchbody .ha-comment .ha-commenthead .ha-letlinks){--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.ha-search .ha-searchhead{border-bottom-width:2px;padding-left:2.25rem;padding-right:2.25rem;padding-top:2.25rem}@media (min-width:940px){.ha-search .ha-searchhead{padding-left:4rem;padding-right:4rem;padding-top:3rem}}.ha-search .ha-searchhead h1{display:inline-block;font-family:Libertine,serif;font-size:1.5rem;font-weight:700;line-height:2rem;margin-bottom:1.5rem}@media (min-width:1190px){.ha-search .ha-searchhead h1{font-size:3rem;font-weight:400;line-height:1}}.ha-search .ha-searchhead .ha-searchnav{--tw-numeric-figure:oldstyle-nums;font-family:Biolinum,sans-serif;font-variant-numeric:var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction)}.ha-search .ha-searchhead .ha-searchnav a{display:inline-block;margin-right:.75rem}.ha-search .ha-searchhead .ha-searchnav a.active{border-bottom-width:4px}.ha-search .ha-searchhead .ha-searchfilter{margin-bottom:1rem}@media (min-width:940px){.ha-search .ha-searchhead .ha-searchfilter{margin-bottom:1.75rem}}.ha-search .ha-searchhead .ha-searchfilterinfo{border-width:1px;font-size:1rem;-webkit-hyphens:auto;hyphens:auto;line-height:1.5rem;margin-bottom:1rem;max-width:46rem;padding:.5rem}.ha-search .ha-searchhead .ha-searchfilter form{margin-bottom:.5rem;max-width:34rem}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform{-moz-column-gap:.5rem;column-gap:.5rem;display:flex;flex-direction:row;padding-bottom:.25rem;padding-top:.25rem}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform input{border-width:1px;flex-grow:1;min-width:0;padding-left:.25rem;padding-right:.25rem}.ha-search .ha-searchhead .ha-searchfilter .ha-includecomments{font-size:1rem!important;line-height:1.5rem!important;width:100%}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform button{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity));border-width:1px;float:right;padding-left:.5rem;padding-right:.5rem}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform button:hover{--tw-border-opacity:1;border-color:rgb(0 0 0/var(--tw-border-opacity))}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform button:disabled{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity));color:rgb(75 85 99/var(--tw-text-opacity))}.ha-search .ha-searchhead .ha-searchfilter .ha-searchform button:hover:disabled{--tw-border-opacity:1;border-color:rgb(226 232 240/var(--tw-border-opacity))}.ha-search .ha-searchhead .ha-activefilterinfo{border-radius:.25rem;font-family:Biolinum,sans-serif;font-size:1rem;line-height:1.5rem;margin-bottom:.25rem;margin-top:.25rem;max-width:34rem;padding-left:.25rem;padding-right:.25rem}.ha-search .ha-searchhead .ha-reversefilter{display:inline-block;text-align:right;text-decoration-line:underline;text-decoration-style:dotted}.ha-search .ha-searchhead .ha-reversefilter:hover{text-decoration-style:solid}.ha-search .ha-searchhead .ha-searchfilter .ha-alternativesearches a{display:block;font-size:1rem;line-height:1.5rem;text-decoration-line:underline;text-decoration-style:dotted}.ha-search .ha-searchhead .ha-searchfilter .ha-alternativesearches a:hover{text-decoration-style:solid}.ha-search .ha-searchbody{border-bottom-left-radius:.125rem;border-bottom-right-radius:.125rem;padding-bottom:2.25rem;padding-top:1.5rem}@media (min-width:940px){.ha-search .ha-searchbody{padding-bottom:3rem;padding-left:1.5rem;padding-right:24rem}}.ha-search .ha-searchbody .ha-letterlist{flex-basis:66.666667%;flex-grow:0;padding-bottom:1rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry:not(:first-child){margin-top:1rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry{border-radius:.125rem;display:block;padding-top:.75rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry,.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry:hover{transition-duration:.1s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterhead{padding-bottom:.75rem;padding-left:1.5rem;padding-right:.75rem}:is(.dark input),:is(.dark select){--tw-bg-opacity:1!important;background-color:rgb(24 24 27/var(--tw-bg-opacity))!important;border-style:none}:is(.dark button){--tw-border-opacity:1!important;--tw-bg-opacity:1!important;background-color:rgb(24 24 27/var(--tw-bg-opacity))!important;border-color:rgb(39 39 42/var(--tw-border-opacity))!important}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult{--tw-bg-opacity:1;align-items:baseline;background-color:rgb(248 250 252/var(--tw-bg-opacity));-moz-column-gap:1rem;column-gap:1rem;display:flex;flex-direction:row;padding:.25rem 1.5rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-searchresultlocation{display:inline-block;flex-shrink:0;flex-wrap:nowrap;font-size:.85rem;font-weight:600;line-height:1.25rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal{font-size:.85rem;line-height:1.25rem;margin-bottom:.25rem;margin-top:.25rem;max-width:32rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-searchresultcommentpill{--tw-bg-opacity:1;--tw-text-opacity:1;background-color:rgb(30 69 112/var(--tw-bg-opacity));border-radius:.75rem;color:rgb(255 255 255/var(--tw-text-opacity));display:inline-block;font-size:.7rem;line-height:1rem;margin-right:.5rem;padding-left:.375rem;padding-right:.375rem}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-marginal a{text-decoration-line:underline;text-decoration-style:dotted}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-marginal a:hover{text-decoration-style:solid}.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-marginal,.ha-search .ha-searchbody .ha-letterlist .ha-letterlistentry .ha-letterlistsearchresults .ha-letterlistsearchresult .ha-seachresultmarginal .ha-marginal *{display:inline!important;-webkit-hyphens:auto;hyphens:auto}.ha-search .ha-searchbody .ha-commentlist{font-family:Libertine,serif;font-variant-numeric:oldstyle-nums;padding-left:1rem;padding-right:2.25rem;padding-top:.5rem}@media (min-width:940px){.ha-search .ha-searchbody .ha-commentlist{padding-left:1.5rem;padding-right:4rem;padding-top:1rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment{display:block;margin-bottom:2.25rem}@media (min-width:940px){.ha-search .ha-searchbody .ha-commentlist .ha-comment{margin-bottom:3rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment a{text-decoration-line:underline;text-decoration-style:dotted}.ha-search .ha-searchbody .ha-commentlist .ha-comment a:hover{text-decoration-style:solid}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-headcomment{display:block}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-headcomment{position:relative}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-subcomment{display:block;margin-left:2rem;margin-top:.5rem}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-subcomment{position:relative}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead{display:block}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-lemma{display:inline;font-weight:700}.ha-search .ha-searchbody .ha-forschung .ha-comment .ha-commenthead .ha-lemma{display:inline;font-weight:400}.ha-search .ha-searchbody .ha-forschung .ha-comment{margin-bottom:1rem;text-indent:-1rem}@media (min-width:940px){.ha-search .ha-searchbody .ha-forschung .ha-comment{margin-bottom:1.5rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks{display:inline-block;font-family:Biolinum,sans-serif;font-size:.7rem;font-variant-caps:all-petite-caps;font-weight:400;line-height:1rem;line-height:1.375;margin-left:.5rem;margin-top:.25rem}@media (min-width:940px){.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks{font-size:.85rem;line-height:1.25rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks:before{--tw-content:"";bottom:.1rem;content:var(--tw-content);left:0;margin-top:.25rem;position:absolute;top:.1rem;width:.125rem}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks .ha-hkb{display:inline}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-headcomment .ha-commenthead .ha-letlinks{left:48rem}.ha-search .ha-searchbody .ha-commentlist .ha-subcomment .ha-commenthead .ha-letlinks{left:46rem}}.ha-search .ha-searchbody .ha-commentlist .ha-commenthead .ha-letlinks{padding-left:.5rem}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-commenthead .ha-letlinks{display:block;position:absolute;text-indent:0;top:0;width:20rem}}.ha-search .ha-searchbody .ha-commentlist .ha-comment .ha-commenthead .ha-letlinks a:hover{--tw-text-opacity:1;color:rgb(15 23 42/var(--tw-text-opacity))}.ha-search .ha-searchbody .ha-commentlist .ha-headcomment .ha-btn-collapsed-box{left:47.6rem}.ha-search .ha-searchbody .ha-commentlist .ha-subcomment .ha-btn-collapsed-box{left:45.6rem}.ha-search .ha-searchbody .ha-commentlist .ha-btn-collapsed-box{cursor:pointer;display:none;position:absolute;top:-.15rem}@media (min-width:1190px){.ha-search .ha-searchbody .ha-commentlist .ha-btn-collapsed-box{display:block}}.ha-notifications{bottom:1rem;min-width:100%;padding-left:.75rem;padding-right:.75rem;position:fixed;right:1.25rem}.ha-notifications a{text-decoration-line:underline;text-decoration-style:dotted}.ha-notifications a:hover{text-decoration-style:solid}.ha-notifications .ha-notcontent{bottom:0;display:flex;flex-direction:row;position:absolute;right:0}.ha-notifications.green .ha-noticon{--tw-text-opacity:1;color:rgb(4 120 87/var(--tw-text-opacity))}.ha-notifications.orange .ha-noticon{--tw-text-opacity:1;color:rgb(234 179 8/var(--tw-text-opacity))}.ha-notifications.red .ha-noticon{--tw-text-opacity:1;color:rgb(225 29 72/var(--tw-text-opacity))}.ha-noticon{--tw-text-opacity:1;color:rgb(148 163 184/var(--tw-text-opacity));display:inline-block;padding-top:.25rem;position:relative;top:2px;transition-duration:.5s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);width:1.25rem}.ha-noticon svg{--tw-shadow-color:#991b1b;--tw-shadow:var(--tw-shadow-colored);--tw-drop-shadow:drop-shadow(0 4px 3px rgba(0,0,0,.07)) drop-shadow(0 2px 2px rgba(0,0,0,.06));filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.ha-commslog{--tw-bg-opacity:1;--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color);background-color:rgb(248 250 252/var(--tw-bg-opacity));box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);display:inline-block;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace,mono;font-size:.85rem;line-height:1.25rem;margin-right:.5rem;opacity:0;padding:.125rem .5rem;transition-duration:.3s;transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1)}.ha-notifications:hover .ha-commslog{opacity:1!important}.ha-notifications:hover .ha-noticon svg{--tw-drop-shadow:drop-shadow(0 20px 13px rgba(0,0,0,.03)) drop-shadow(0 8px 5px rgba(0,0,0,.08));filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);opacity:1!important}.pointer-events-none{pointer-events:none}.static{position:static}.relative{position:relative}.sticky{position:sticky}.-left-5{left:-1.25rem}.-left-6{left:-1.5rem}.-top-1{top:-.25rem}.-top-1\.5{top:-.375rem}.bottom-\[0\.1rem\]{bottom:.1rem}.clear-both{clear:both}.mx-0{margin-left:0;margin-right:0}.mx-0\.5{margin-left:.125rem;margin-right:.125rem}.mx-8{margin-left:2rem;margin-right:2rem}.mx-auto{margin-left:auto;margin-right:auto}.my-6{margin-bottom:1.5rem;margin-top:1.5rem}.my-8{margin-bottom:2rem;margin-top:2rem}.\!mb-0{margin-bottom:0!important}.\!mb-1{margin-bottom:.25rem!important}.\!mr-0{margin-right:0!important}.\!mt-0{margin-top:0!important}.\!mt-1{margin-top:.25rem!important}.mb-1{margin-bottom:.25rem}.mb-10{margin-bottom:2.5rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.ml-1{margin-left:.25rem}.ml-8{margin-left:2rem}.mr-1{margin-right:.25rem}.mr-2{margin-right:.5rem}.mr-4{margin-right:1rem}.mr-\[20rem\]{margin-right:20rem}.mt-2{margin-top:.5rem}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:flex}.table{display:table}.\!hidden{display:none!important}.hidden{display:none}.h-10{height:2.5rem}.h-3{height:.75rem}.h-4{height:1rem}.h-8{height:2rem}.h-full{height:100%}.w-1\/2{width:50%}.w-10{width:2.5rem}.w-3{width:.75rem}.w-4{width:1rem}.w-52{width:13rem}.w-60{width:15rem}.w-72{width:18rem}.w-8{width:2rem}.w-auto{width:auto}.w-full{width:100%}.shrink{flex-shrink:1}.shrink-0{flex-shrink:0}.grow{flex-grow:1}.grow-0{flex-grow:0}.cursor-default{cursor:default}.resize{resize:both}.list-disc{list-style-type:disc}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.justify-center{justify-content:center}.gap-x-3{-moz-column-gap:.75rem;column-gap:.75rem}.gap-x-6{-moz-column-gap:1.5rem;column-gap:1.5rem}.gap-y-4{row-gap:1rem}.gap-y-6{row-gap:1.5rem}.self-end{align-self:flex-end}.overflow-hidden{overflow:hidden}.text-ellipsis{text-overflow:ellipsis}.whitespace-nowrap{white-space:nowrap}.rounded{border-radius:.25rem}.border{border-width:1px}.border-b-2{border-bottom-width:2px}.border-l-2{border-left-width:2px}.border-l-4{border-left-width:4px}.border-r-2{border-right-width:2px}.border-t-\[5px\]{border-top-width:5px}.border-solid{border-style:solid}.border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity))}.border-hamannSlate-500{--tw-border-opacity:1;border-color:rgb(43 97 158/var(--tw-border-opacity))}.border-orange-600{--tw-border-opacity:1;border-color:rgb(234 88 12/var(--tw-border-opacity))}.bg-gray-300{--tw-bg-opacity:1;background-color:rgb(209 213 219/var(--tw-bg-opacity))}.bg-slate-100{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity))}.bg-slate-200{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.bg-slate-50{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity))}.px-1{padding-left:.25rem;padding-right:.25rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.px-8{padding-left:2rem;padding-right:2rem}.px-9{padding-left:2.25rem;padding-right:2.25rem}.py-1{padding-bottom:.25rem;padding-top:.25rem}.py-3{padding-bottom:.75rem;padding-top:.75rem}.py-6{padding-bottom:1.5rem;padding-top:1.5rem}.\!pr-14{padding-right:3.5rem!important}.pb-1{padding-bottom:.25rem}.pb-3{padding-bottom:.75rem}.pb-4{padding-bottom:1rem}.pl-2{padding-left:.5rem}.pl-3{padding-left:.75rem}.pr-1{padding-right:.25rem}.pr-1\.5{padding-right:.375rem}.pr-3{padding-right:.75rem}.pt-4{padding-top:1rem}.text-right{text-align:right}.align-baseline{vertical-align:baseline}.align-bottom{vertical-align:bottom}.font-sans{font-family:Biolinum,sans-serif}.font-serif{font-family:Libertine,serif}.text-base{font-size:1rem;line-height:1.5rem}.text-sm{font-size:.85rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.font-bold{font-weight:700}.italic{font-style:italic}.\!leading-tight{line-height:1.25!important}.leading-snug{line-height:1.375}.text-black{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.text-hamannSlate-500{--tw-text-opacity:1;color:rgb(43 97 158/var(--tw-text-opacity))}.text-hamannSlate-900{--tw-text-opacity:1;color:rgb(23 53 87/var(--tw-text-opacity))}.text-orange-600{--tw-text-opacity:1;color:rgb(234 88 12/var(--tw-text-opacity))}.text-slate-500{--tw-text-opacity:1;color:rgb(100 116 139/var(--tw-text-opacity))}.underline{text-decoration-line:underline}.\!no-underline{text-decoration-line:none!important}.no-underline{text-decoration-line:none}.shadow-sm{--tw-shadow:0 1px 2px 0 rgba(0,0,0,.05);--tw-shadow-colored:0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.hue-rotate-180{--tw-hue-rotate:hue-rotate(180deg)}.filter,.hue-rotate-180{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.hyphenate{-webkit-hyphens:auto;hyphens:auto}.unhyphenate{-webkit-hyphens:none;hyphens:none}.numeric-mediaeval{font-variant-numeric:oldstyle-nums}.numeric-normal{font-variant-numeric:normal}.caps-allpetite{font-variant-caps:all-petite-caps}.caps-petite{font-variant-caps:petite-caps}.caps{text-transform:uppercase}.caps,.caps-normal{font-variant-caps:normal}.break-inside-avoid{-moz-column-break-inside:avoid;break-inside:avoid}@font-face{font-display:swap;font-family:Biolinum;font-style:normal;font-weight:400;src:url(../fonts/LinBiolinum_Rah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Libertine;font-style:normal;font-weight:400;src:url(../fonts/LinLibertine_Rah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Biolinum;font-style:italic;font-weight:400;src:url(../fonts/LinBiolinum_RIah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Biolinum;font-style:normal;font-weight:700;src:url(../fonts/LinBiolinum_RBah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Libertine;font-style:italic;font-weight:400;src:url(../fonts/LinLibertine_RIah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Libertine;font-style:normal;font-weight:700;src:url(../fonts/LinLibertine_RZah.ttf) format("truetype")}@font-face{font-display:swap;font-family:Playfair;font-style:normal;font-weight:400;src:url(../fonts/PlayfairDisplay-VariableFont_wght.ttf) format("truetype")}.ha-menu-arrowsymbol:after{border-bottom:0;border-left:.3em solid transparent;border-right:.3em solid transparent;border-top:.3em solid;content:"";display:inline-block;margin-left:.2em;vertical-align:.2em}.ha-menusymbol{border-radius:4px}.ha-menusymbol svg{stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;fill:none;height:24px;width:24px}.ha-tooltip .ha-tooltiptext{bottom:155%;left:50%;margin-left:-80px;min-width:160px;opacity:0;transition:opacity .3s;visibility:hidden;white-space:nowrap}.ha-tooltip .ha-tooltiptext:after{border-style:solid;border-width:5px;content:"";left:50%;margin-left:-5px;position:absolute;top:100%}.ha-tooltip:hover .ha-tooltiptext{opacity:1;visibility:visible}.ha-open-btn-collapsed-box:after{content:"\200E+"}.ha-open-btn-collapsed-box{font-weight:700;transform:rotate(0deg);transition:transform 80ms ease-in-out}.ha-open-btn-collapsed-box.ha-close-btn-collapsed-box{transform:rotate(45deg);transform-origin:53% 57%;transition:transform 80ms ease-in-out}.ha-uploadform .ha-uploadmessage{border-radius:6px;left:50%;margin-left:-180px;margin-top:.5rem;opacity:0;padding:5px 0;position:absolute;text-align:center;top:100%;transition:opacity 1s;visibility:visible;width:360px;z-index:1}.ha-uploadform .ha-uploadmessage:after{border:5px solid transparent;border-bottom-color:grey;bottom:100%;content:" ";left:50%;margin-left:-5px;position:absolute}.ha-lds-ellipsis{bottom:20px;display:none;position:absolute}.ha-lds-ellipsis-load{bottom:8px;display:none;position:relative;width:38px}.ha-lds-ellipsis-publish{bottom:16px;display:none;left:-50px;position:absolute}.ha-lds-ellipsis div,.ha-lds-ellipsis-load div,.ha-lds-ellipsis-publish div{animation-timing-function:cubic-bezier(0,1,1,0);background:#000;border-radius:50%;height:7px;position:absolute;width:7px}.ha-lds-ellipsis div:first-child,.ha-lds-ellipsis-load div:first-child,.ha-lds-ellipsis-publish div:first-child{animation:ha-lds-ellipsis1 .6s infinite;left:6px}.ha-lds-ellipsis div:nth-child(2),.ha-lds-ellipsis-load div:nth-child(2),.ha-lds-ellipsis-publish div:nth-child(2){animation:ha-lds-ellipsis2 .6s infinite;left:4px}.ha-lds-ellipsis div:nth-child(3),.ha-lds-ellipsis-load div:nth-child(3),.ha-lds-ellipsis-publish div:nth-child(3){animation:ha-lds-ellipsis2 .6s infinite;left:16px}.ha-lds-ellipsis div:nth-child(4),.ha-lds-ellipsis-load div:nth-child(4),.ha-lds-ellipsis-publish div:nth-child(4){animation:ha-lds-ellipsis3 .6s infinite;left:30px}@keyframes ha-lds-ellipsis1{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes ha-lds-ellipsis3{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes ha-lds-ellipsis2{0%{transform:translate(0)}to{transform:translate(16px)}}.ha-cross:after,.ha-cross:before{content:""}.ha-cross:before{transform:skewY(-27deg)}.ha-insertion:before{content:"\2E02"}.ha-insertion:after{content:"\2E03"}.ha-nr:after,.ha-nr:before{content:" \200E\25E6"}.ha-added:after,.ha-added:before,.ha-note:after,.ha-note:before{content:""}.ha-bzg:after{content:"]"}*{scroll-behavior:smooth;-webkit-text-decoration-skip-ink:all;text-decoration-skip-ink:all}html{font-size:15.5px;overflow-y:scroll}body{background-image:url(../img/subtlenet2.png);background-repeat:repeat}.ha-diagdel{display:inline-block!important;position:relative;text-decoration:none!important;text-decoration-line:none!important}.ha-diagdel:after,.ha-diagdel:before{bottom:1.4ex;content:"";height:0;position:absolute;right:0;width:100%}.ha-diagdel:before{border-style:solid;border-width:1px;transform:skewY(-36deg)}.ha-del .ha-del,.ha-del .ha-del :not(.ha-linecount *,.ha-linecount,.ha-marginalbox *,.ha-marginalbox,.ha-marginal *,.ha-marginal,.ha-btn-collapsed-box){-moz-text-decoration-style:double;-webkit-text-decoration-style:double!important;text-decoration-style:double;text-decoration-thickness:1px}.ha-del .ha-del .ha-ul,.ha-del .ha-ul .ha-del,.ha-ul .ha-del .ha-del{text-decoration:line-through underline;-moz-text-decoration-style:double;-webkit-text-decoration-style:double!important;text-decoration-style:double;text-decoration-thickness:1px}.ha-del .ha-ul,.ha-ul .ha-del{text-decoration:line-through underline;text-decoration-skip-ink:auto;-webkit-text-decoration-skip-ink:auto;text-decoration-thickness:1px}.ha-table{font-variant-numeric:tabular-nums!important;overflow:hidden;white-space:nowrap}.ha-hatab-0-2{display:inline;min-width:50%;position:static}.ha-hatab-1-2{display:inline-block;left:50%;min-width:50%;position:absolute}.ha-hatab-0-3{display:inline;min-width:33.333%;position:static}.ha-hatab-1-3{left:33%}.ha-hatab-1-3,.ha-hatab-2-3{display:inline-block;min-width:33.333%;position:absolute}.ha-hatab-2-3{left:66%}.ha-hatab-0-4{display:inline;min-width:25%;position:static}.ha-hatab-1-4{left:25%}.ha-hatab-1-4,.ha-hatab-2-4{display:inline-block;min-width:25%;position:absolute}.ha-hatab-2-4{left:50%}.ha-hatab-3-4{display:inline-block;left:75%;min-width:25%;position:absolute}.ha-hatab-0-5{display:inline;min-width:20%;position:static}.ha-hatab-1-5{left:20%}.ha-hatab-1-5,.ha-hatab-2-5{display:inline-block;min-width:20%;position:absolute}.ha-hatab-2-5{left:40%}.ha-hatab-3-5{left:60%}.ha-hatab-3-5,.ha-hatab-4-5{display:inline-block;min-width:20%;position:absolute}.ha-hatab-4-5{left:80%}.ha-hatab-0-6{display:inline;min-width:16.667%;position:static}.ha-hatab-1-6{left:16.667%}.ha-hatab-1-6,.ha-hatab-2-6{display:inline-block;min-width:16.667%;position:absolute}.ha-hatab-2-6{left:33.333%}.ha-hatab-3-6{left:50%}.ha-hatab-3-6,.ha-hatab-4-6{display:inline-block;min-width:16.667%;position:absolute}.ha-hatab-4-6{left:66.667%}.ha-hatab-5-6{display:inline-block;left:83.333%;min-width:16.667%;position:absolute}.ha-hatab-0-7{display:inline;min-width:14.286%;position:static}.ha-hatab-1-7{left:14.286%}.ha-hatab-1-7,.ha-hatab-2-7{display:inline-block;min-width:14.286%;position:absolute}.ha-hatab-2-7{left:28.571%}.ha-hatab-3-7{left:42.857%}.ha-hatab-3-7,.ha-hatab-4-7{display:inline-block;min-width:14.286%;position:absolute}.ha-hatab-4-7{left:57.143%}.ha-hatab-5-7{left:71.429%}.ha-hatab-5-7,.ha-hatab-6-7{display:inline-block;min-width:14.286%;position:absolute}.ha-hatab-6-7{left:85.714%}.ha-hatab-0-8{display:inline;min-width:12.5%;position:static}.ha-hatab-1-8{left:12.5%}.ha-hatab-1-8,.ha-hatab-2-8{display:inline-block;min-width:12.5%;position:absolute}.ha-hatab-2-8{left:25%}.ha-hatab-3-8{left:37.5%}.ha-hatab-3-8,.ha-hatab-4-8{display:inline-block;min-width:12.5%;position:absolute}.ha-hatab-4-8{left:50%}.ha-hatab-5-8{left:62.5%}.ha-hatab-5-8,.ha-hatab-6-8{display:inline-block;min-width:12.5%;position:absolute}.ha-hatab-6-8{left:75%}.ha-hatab-7-8{display:inline-block;left:87.5%;min-width:12.5%;position:absolute}.ha-hatab-0-9{display:inline;min-width:11.111%;position:static}.ha-hatab-1-9{left:11.111%}.ha-hatab-1-9,.ha-hatab-2-9{display:inline-block;min-width:11.111%;position:absolute}.ha-hatab-2-9{left:22.222%}.ha-hatab-3-9{left:33.333%}.ha-hatab-3-9,.ha-hatab-4-9{display:inline-block;min-width:11.111%;position:absolute}.ha-hatab-4-9{left:44.444%}.ha-hatab-5-9{left:55.555%}.ha-hatab-5-9,.ha-hatab-6-9{display:inline-block;min-width:11.111%;position:absolute}.ha-hatab-6-9{left:66.666%}.ha-hatab-7-9{left:77.777%}.ha-hatab-7-9,.ha-hatab-8-9{display:inline-block;min-width:11.111%;position:absolute}.ha-hatab-8-9{left:88.888%}.ha-hatab-0-10,.ha-hatab-1-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-1-10{left:10%}.ha-hatab-2-10{left:20%}.ha-hatab-2-10,.ha-hatab-3-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-3-10{left:30%}.ha-hatab-4-10{left:40%}.ha-hatab-4-10,.ha-hatab-5-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-5-10{left:50%}.ha-hatab-6-10{left:60%}.ha-hatab-6-10,.ha-hatab-7-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-7-10{left:70%}.ha-hatab-8-10{left:80%}.ha-hatab-8-10,.ha-hatab-9-10{display:inline-block;min-width:10%;position:absolute}.ha-hatab-9-10{left:90%}.ha-hatab-0-11,.ha-hatab-1-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-1-11{left:9.091%}.ha-hatab-2-11{left:18.182%}.ha-hatab-2-11,.ha-hatab-3-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-3-11{left:27.273%}.ha-hatab-4-11{left:36.364%}.ha-hatab-4-11,.ha-hatab-5-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-5-11{left:45.455%}.ha-hatab-6-11{left:54.545%}.ha-hatab-6-11,.ha-hatab-7-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-7-11{left:63.636%}.ha-hatab-8-11{left:72.727%}.ha-hatab-8-11,.ha-hatab-9-11{display:inline-block;min-width:9.091%;position:absolute}.ha-hatab-9-11{left:81.818%}.ha-hatab-10-11{display:inline-block;left:90.909%;min-width:9.091%;position:absolute}.ha-hatab-0-12,.ha-hatab-1-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-1-12{left:8.333%}.ha-hatab-2-12{left:16.666%}.ha-hatab-2-12,.ha-hatab-3-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-3-12{left:25%}.ha-hatab-4-12{left:33.333%}.ha-hatab-4-12,.ha-hatab-5-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-5-12{left:41.666%}.ha-hatab-6-12{left:50%}.ha-hatab-6-12,.ha-hatab-7-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-7-12{left:58.333%}.ha-hatab-8-12{left:66.666%}.ha-hatab-8-12,.ha-hatab-9-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-9-12{left:75%}.ha-hatab-10-12{left:83.333%}.ha-hatab-10-12,.ha-hatab-11-12{display:inline-block;min-width:8.333%;position:absolute}.ha-hatab-11-12{left:91.666%}.ha-static table{empty-cells:show}.ha-lettertext .ha-marginalbox .ha-marginal:after,.ha-lettertext .ha-marginalbox .ha-marginal:last-of-type:after,.ha-lettertext .ha-marginalbox:before{content:""}.ha-lettertext .ha-marginalbox.ha-collapsed-box .ha-marginallist .ha-marginal,.ha-tradzhtext .ha-marginalbox.ha-collapsed-box .ha-marginallist .ha-marginal{-webkit-box-orient:vertical;display:-webkit-inline-box}.ha-additions .ha-edits .ha-editentries tr td:nth-of-type(2):after{content:""}.ha-scbutton.loading,.ha-selectfilesform .ha-filelistbutton.loading{animation:ha-pulse .7s cubic-bezier(.4,0,.6,1) infinite}.ha-notifications.loading .ha-noticon{animation:ha-pulse 1.1s cubic-bezier(.4,0,.6,1) infinite}@keyframes ha-pulse{0%,to{opacity:.8}50%{opacity:.6}}.ha-notifications.imp .ha-commslog{animation:ha-pulse 5s cubic-bezier(.4,0,.6,1);animation-iteration-count:1}@media print{.ha-footer,header{display:none}.ha-letterheadernav{display:none!important}.ha-letterheader{border-style:none!important}.ha-scrollbutton{display:none!important}html{font-size:1rem;line-height:1.5rem}}.hover\:bg-slate-200:hover{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.hover\:text-black:hover{--tw-text-opacity:1;color:rgb(0 0 0/var(--tw-text-opacity))}.hover\:underline:hover{text-decoration-line:underline}:is(.dark .dark\:border-none){border-style:none}:is(.dark .dark\:border-gray-900){--tw-border-opacity:1;border-color:rgb(17 24 39/var(--tw-border-opacity))}:is(.dark .dark\:bg-slate-800){--tw-bg-opacity:1;background-color:rgb(30 41 59/var(--tw-bg-opacity))}:is(.dark .dark\:bg-slate-900){--tw-bg-opacity:1;background-color:rgb(15 23 42/var(--tw-bg-opacity))}:is(.dark .dark\:pb-2){padding-bottom:.5rem}:is(.dark .dark\:pt-2){padding-top:.5rem}:is(.dark .dark\:text-slate-50){--tw-text-opacity:1;color:rgb(248 250 252/var(--tw-text-opacity))}:is(.dark .dark\:shadow-xl){--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}@media (min-width:700px){.sm\:inline{display:inline}.sm\:hidden{display:none}}@media (min-width:940px){.md\:mb-0{margin-bottom:0}.md\:mt-4{margin-top:1rem}.md\:\!block{display:block!important}.md\:block{display:block}.md\:inline-block{display:inline-block}.md\:inline{display:inline}.md\:flex{display:flex}.md\:\!hidden{display:none!important}.md\:hidden{display:none}.md\:h-16{height:4rem}.md\:min-h-\[4\.5rem\]{min-height:4.5rem}.md\:w-16{width:4rem}.md\:basis-1\/2{flex-basis:50%}.md\:flex-row{flex-direction:row}.md\:items-stretch{align-items:stretch}.md\:gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.md\:px-12{padding-left:3rem;padding-right:3rem}.md\:px-9{padding-left:2.25rem;padding-right:2.25rem}.md\:py-6{padding-bottom:1.5rem;padding-top:1.5rem}.md\:pt-8{padding-top:2rem}.md\:text-3xl{font-size:1.875rem;line-height:2.25rem}.md\:text-lg{font-size:1.15rem;line-height:1.75rem}}@media (min-width:1190px){.desktop\:absolute{position:absolute}.desktop\:right-0{right:0}.desktop\:right-10{right:2.5rem}.desktop\:my-0{margin-top:0}.desktop\:mb-0,.desktop\:my-0{margin-bottom:0}.desktop\:mb-10{margin-bottom:2.5rem}.desktop\:mb-8{margin-bottom:2rem}.desktop\:mr-16{margin-right:4rem}.desktop\:block{display:block}.desktop\:flex{display:flex}.desktop\:hidden{display:none}.desktop\:h-16{height:4rem}.desktop\:w-16{width:4rem}.desktop\:max-w-screen-desktop{max-width:1190px}.desktop\:basis-1\/2{flex-basis:50%}.desktop\:flex-row{flex-direction:row}.desktop\:flex-col{flex-direction:column}.desktop\:items-stretch{align-items:stretch}.desktop\:gap-x-10{-moz-column-gap:2.5rem;column-gap:2.5rem}.desktop\:whitespace-nowrap{white-space:nowrap}.desktop\:border-b{border-bottom-width:1px}.desktop\:border-slate-300{--tw-border-opacity:1;border-color:rgb(203 213 225/var(--tw-border-opacity))}.desktop\:bg-slate-200{--tw-bg-opacity:1;background-color:rgb(226 232 240/var(--tw-bg-opacity))}.desktop\:px-8{padding-left:2rem;padding-right:2rem}.desktop\:pr-72{padding-right:18rem}.desktop\:pr-8{padding-right:2rem}.desktop\:text-2xl{font-size:1.5rem;line-height:2rem}.desktop\:shadow-2xl{--tw-shadow:0 25px 50px -12px rgba(0,0,0,.25);--tw-shadow-colored:0 25px 50px -12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}}@media (min-width:1440px){.xl\:h-12{height:3rem}.xl\:w-12{width:3rem}.xl\:text-3xl{font-size:1.875rem;line-height:2.25rem}} \ No newline at end of file diff --git a/HaWeb/wwwroot/css/scrollbutton.css b/HaWeb/wwwroot/css/scrollbutton.css index 67caf7c..3c697d8 100644 --- a/HaWeb/wwwroot/css/scrollbutton.css +++ b/HaWeb/wwwroot/css/scrollbutton.css @@ -4,7 +4,7 @@ /* STYLES */ .ha-scrollbutton { - @apply opacity-0 transition-opacity duration-500 cursor-pointer fixed right-0 bottom-6 text-center py-2 pr-6 bg-slate-50 dark:bg-slate-700 dark:text-white px-2 shadow rounded-l-xl transition-all hover:shadow-md text-hamannSlate-700 hover:text-hamannSlate-500 + @apply opacity-0 transition-opacity duration-500 cursor-pointer fixed right-0 bottom-48 text-center py-2 pr-6 bg-slate-50 dark:bg-slate-700 dark:text-white px-2 shadow rounded-l-xl transition-all hover:shadow-md text-hamannSlate-700 hover:text-hamannSlate-500 } .ha-scrollbuttonarrow { diff --git a/HaWeb/wwwroot/css/shared.css b/HaWeb/wwwroot/css/shared.css index 973d1e9..834515d 100644 --- a/HaWeb/wwwroot/css/shared.css +++ b/HaWeb/wwwroot/css/shared.css @@ -62,7 +62,7 @@ } .ha-location { - @apply !text-hamannHighlight absolute text-xl hidden sm:inline-block + @apply !text-hamannSlate-300 absolute text-xl hidden sm:inline-block } diff --git a/HaWeb/wwwroot/css/site.css b/HaWeb/wwwroot/css/site.css index c993f4d..3b00a29 100644 --- a/HaWeb/wwwroot/css/site.css +++ b/HaWeb/wwwroot/css/site.css @@ -11,9 +11,10 @@ @import "./register.css"; @import "./letterhead.css"; @import "./letter.css"; -@import "./upload.css"; +@import "./xmlstate.css"; @import "./index.css"; @import "./search.css"; +@import "./notifications.css"; @import "./print.css"; @layer components { diff --git a/HaWeb/wwwroot/css/upload.css b/HaWeb/wwwroot/css/upload.css deleted file mode 100644 index fbe6cd7..0000000 --- a/HaWeb/wwwroot/css/upload.css +++ /dev/null @@ -1,203 +0,0 @@ -@layer components { -/* COLORS */ - - -/* STYLES */ - .ha-adminuploadfields { - @apply flex flex-row flex-wrap gap-x-4 gap-y-4 - } - - .ha-adminuploadfields .ha-uploadfield { - @apply block shrink-0 grow bg-slate-50 rounded shadow basis-64 max-w-xs - } - - .ha-adminuploadfields .ha-uploadfield:hover { - @apply brightness-110 - } - - .ha-adminuploadfields .ha-uploadfield.active { - @apply !text-black brightness-110 shadow-inner - } - - .ha-adminuploadfields .ha-uploadfield .ha-uploadfieldname { - @apply px-3 pt-2 pb-1 - } - - .ha-adminuploadfields .ha-uploadusedfiles { - @apply text-sm whitespace-nowrap overflow-hidden text-ellipsis w-auto bg-slate-200 border-t border-slate-300 bg-opacity-30 px-2 py-0.5 - } - - .ha-adminuploadfields .ha-uploadusedfiles.ha-uploadusedfilesnotfound { - @apply bg-slate-500 border-slate-500 - } - - .ha-adminuploadfields .ha-uploadpublishforms { - @apply flex flex-row gap-x-4 grow - } - - .ha-adminuploadfields .ha-uploadform { - @apply bg-slate-50 rounded shadow grow relative - } - - .ha-adminuploadfields .ha-uploadform .ha-uploadtext { - @apply text-center - } - - .ha-adminuploadfields .ha-uploadform .ha-lds-ellipsis { - @apply left-1/2 -ml-[20px] - } - - .ha-adminuploadfields .ha-uploadform .ha-uploadfilelabel { - @apply inline-block px-4 py-1 pt-2 cursor-pointer w-full h-full hover:bg-slate-100 - } - - .ha-adminuploadfields .ha-uploadform .ha-uploadmessage { - @apply text-sm bg-slate-700 bg-opacity-30 px-1 rounded-sm - } - - .ha-adminuploadfields .ha-publishbutton { - @apply inline-block px-2 py-1 pt-2 cursor-pointer w-full h-full bg-slate-50 shadow shrink hover:bg-slate-100 - } - - .ha-adminuploadfields .ha-publishbutton .ha-publishtext { - @apply text-center - } - - .ha-adminuploadfields .ha-publishbutton .ha-publishmessage { - @apply text-sm bg-slate-700 bg-opacity-30 px-1 rounded-sm - } - - .ha-uploadheader { - @apply bg-slate-50 w-full mt-4 px-16 pt-12 pb-8 flex flex-row - } - - .ha-uploadheader h1 { - @apply text-5xl - } - - .ha-uploadcontainer { - @apply w-full bg-slate-50 flex flex-col gap-y-2 - } - - .ha-uploadcontainer .ha-publishfilelist { - @apply px-16 mb-8 - } - - .ha-uploadcontainer .ha-publishfilelist .ha-publishfilelisttitle { - @apply text-xl mb-2 - } - - .ha-uploadcontainer .ha-publishfilelist td { - @apply align-text-top pr-6 - } - - .ha-uploadcontainer .ha-publishfilelist .ha-publishfilelabel { - @apply relative mt-4 ml-6 rounded-md px-3 border-2 border-blue-600 hover:border-2 hover:shadow active:shadow-inner hover:border-blue-800 cursor-pointer float-right; - } - - .ha-uploadcontainer .ha-availablefiles { - @apply px-16 border border-slate-200 hover:border-slate-800 py-2 cursor-pointer select-none - } - - .ha-uploadcontainer .ha-availablefiles .ha-availablefilestitle { - @apply text-2xl - } - - .ha-uploadcontainer .ha-availablefiles .ha-usedfilelist { - - } - - .ha-filesheader { - @apply mb-4 - } - - .ha-availablefileslist { - @apply px-16 pt-4 - } - - .ha-uploadcontainer .ha-errorswarnings { - @apply flex flex-row gap-x-2 - } - - .ha-uploadcontainer .ha-errorswarnings .ha-criticalerrors, - .ha-uploadcontainer .ha-errorswarnings .ha-warnings { - @apply basis-1/2 min-w-[40%] min-h-[400px] overflow-x-hidden overflow-y-scroll grow shrink - } - - .ha-uploadcontainer .ha-errorswarnings .ha-criticalerrors { - @apply bg-red-200 - } - - .ha-uploadcontainer .ha-errorswarnings .ha-warnings { - @apply bg-orange-200 - } - - .ha-uploadcontainer .ha-crossfilechecking { - @apply w-full bg-cyan-200 grow shrink-0 h-full min-h-[400px] - } - - .ha-uploadcontainer .ha-hamannfilechooser { - @apply px-16 pb-16 - } - - .ha-uploadcontainer .ha-setendyearform { - @apply px-16 pb-16 float-right - } - - .ha-uploadcontainer .ha-setendyearform .ha-setendyearbutton { - @apply mt-4 ml-6 rounded-md px-3 border-2 border-blue-600 hover:border-2 hover:shadow active:shadow-inner hover:border-blue-800 cursor-pointer - } - - /* Classes for FileList Component */ - .ha-filelistfieldset { - - } - - .ha-filelistfieldset .ha-filelistlegend { - @apply mb-2 text-xl - } - - .ha-selectfilesform { - - } - - .ha-selectfilesform .ha-filelistfile { - @apply flex flex-row gap-x-4 px-1 items-center - } - - .ha-selectfilesform .ha-filelistfile:nth-child(even) { - @apply bg-slate-100 - } - - .ha-selectfilesform .ha-filelistlist { - @apply h-96 overflow-x-hidden overflow-y-scroll pr-4 - } - - .ha-selectfilesform .ha-filelistfile .ha-filelistname { - @apply font-mono - } - - .ha-selectfilesform .ha-filelistfile .ha-filelistusedproduction { - @apply text-sm - } - - .ha-selectfilesform .ha-filelistfile .ha-filelistusedproduction .ha-filelistproduction { - @apply inline-block border rounded-md text-teal-600 border-teal-600 px-2 mr-2 - } - - .ha-selectfilesform .ha-filelistfile .ha-filelistusedproduction .ha-filelistused { - @apply inline-block border rounded-md text-indigo-600 border-indigo-600 px-2 - } - - .ha-selectfilesform .ha-filelistfile .ha-filelistmodified { - @apply grow text-right - } - - .ha-selectfilesform .ha-filelistoutput { - @apply mt-4 ml-6 - } - - .ha-selectfilesform .ha-filelistbutton { - @apply mt-4 ml-6 rounded-md px-3 border-2 border-blue-600 hover:border-2 hover:shadow active:shadow-inner hover:border-blue-800 cursor-pointer float-right; - } -} \ No newline at end of file diff --git a/HaWeb/wwwroot/css/xmlstate.css b/HaWeb/wwwroot/css/xmlstate.css new file mode 100644 index 0000000..3dbe053 --- /dev/null +++ b/HaWeb/wwwroot/css/xmlstate.css @@ -0,0 +1,180 @@ +@layer components { + .ha-xmlstateheader { + @apply bg-slate-50 w-full mt-4 px-16 pt-12 pb-8 flex flex-row + } + + .ha-xmlstateheader h1 { + @apply text-5xl + } + + .ha-managedfiles { + @apply mt-4 border border-slate-300 px-4 py-3 + } + + .ha-repo { + @apply relative + } + + .ha-repodata { + @apply bg-slate-50 px-3.5 py-1 w-max shadow + } + + .ha-repodata div { + + } + + .ha-repodata a { + @apply underline decoration-dotted + } + + .ha-repofilecount { + @apply absolute right-0 bottom-0 bg-slate-50 px-3 py-1 shadow + } + + .ha-managedfileslist { + @apply flex flex-col gap-3 mt-3 + } + + .ha-managedfileheader { + @apply flex flex-row gap-2 bg-slate-50 pl-3.5 pr-2.5 rounded-md py-1 w-full shadow-md select-none border-b + } + + .ha-managedfileheader.expandable { + @apply cursor-pointer rounded-none !rounded-t-md border-b + } + + .ha-managedfileheader.orange { + @apply border-b border-orange-300 bg-orange-50 + } + + .ha-managedfileheader.orange .ha-filestatusicon svg { + @apply text-orange-700 !pt-0 + } + + .ha-managedfileheader.red { + @apply border-b border-red-400 bg-red-50 + } + + .ha-managedfileheader.red .ha-filestatusicon svg { + @apply text-red-700 !pt-[0rem] + } + + .ha-managedfileheader.green { + @apply bg-teal-50 + } + + .ha-managedfileheader.green .ha-filestatusicon svg { + @apply text-green-700 + } + + .ha-managedfileheader.expandable.red+.ha-managedfileannotations { + @apply bg-red-100 + } + + .ha-managedfileannotations { + @apply hidden font-mono w-full text-base px-4 pt-1.5 pb-1 rounded-b-md shadow bg-orange-100 overflow-x-hidden overflow-y-auto max-h-72 + } + + .ha-managedfileannotations table { + @apply text-left w-full + } + + .ha-managedfileannotations table td, + .ha-managedfileannotations table th { + @apply pr-4 + } + + .ha-managedfileannotations table th { + @apply border-b border-black + } + + + .ha-managedfileheader.expandable.expanded+.ha-managedfileannotations { + @apply block + } + + .ha-managedfile div:first-child { + @apply grow + } + .ha-managedfile .ha-filestatusicon { + @apply w-5 pt-[.14rem] + } + + .ha-scbutton { + @apply mt-4 rounded-md px-4 py-1 border-2 bg-blue-600 shadow-blue-100 hover:shadow-blue-200 duration-500 text-slate-50 shadow-md hover:shadow-xl active:shadow-inner hover:border-blue-600 cursor-pointer absolute bottom-4 right-6 transition-all hover:ease-in-out; + } + + .ha-scbutton.loading { + @apply shadow-blue-100 saturate-[.8] shadow-xl transition-all ease-in-out border-blue-600; + } + + /* Classes for FileList Component */ + .ha-filelistfieldset { + @apply bg-slate-50 px-3 py-2 mt-4 + } + + .ha-filelistfieldset .ha-filelistlegend { + @apply pb-2 text-xl + } + + .ha-selectfilesform { + @apply relative + } + + .ha-selectfilesform .ha-filelistfile { + @apply flex flex-row gap-x-4 px-1 items-center + } + + .ha-selectfilesform .ha-filelistfile:nth-child(even) { + @apply bg-slate-100 + } + + .ha-selectfilesform .ha-filelistlist { + @apply h-96 overflow-x-hidden overflow-y-scroll + } + + .ha-selectfilesform .ha-filelistfile .ha-filelistname { + @apply font-mono + } + + .ha-selectfilesform .ha-filelistfile .ha-filelistusedproduction { + @apply text-sm + } + + .ha-selectfilesform .ha-filelistfile .ha-filelistusedproduction .ha-filelistproduction { + @apply inline-block border rounded-md text-teal-600 border-teal-600 px-2 mr-2 + } + + .ha-selectfilesform .ha-filelistfile .ha-filelistmodified { + @apply grow text-right + } + + .ha-selectfilesform .ha-filelistoutput { + @apply mt-4 ml-6 + } + + .ha-selectfilesform .ha-filelistbutton { + @apply mt-4 rounded-md px-4 py-1 border-2 bg-blue-600 shadow-blue-100 hover:shadow-blue-200 duration-500 text-slate-50 shadow-md hover:shadow-xl active:shadow-inner hover:border-blue-600 cursor-pointer absolute bottom-4 right-6 transition-all hover:ease-in-out; + } + + .ha-selectfilesform .ha-filelistbutton.loading { + @apply shadow-blue-100 saturate-[.8] shadow-xl transition-all ease-in-out border-blue-600; + } +} + +.ha-scbutton.loading { + animation: ha-pulse .7s cubic-bezier(0.4, 0, 0.6, 1) infinite; +} + +.ha-selectfilesform .ha-filelistbutton.loading { + animation: ha-pulse .7s cubic-bezier(0.4, 0, 0.6, 1) infinite; +} + +@keyframes ha-pulse { + 0%, 100% { + opacity: .8; + } + 50% { + opacity: .6; + } +} \ No newline at end of file diff --git a/HaWeb/wwwroot/js/filelistform.js b/HaWeb/wwwroot/js/filelistform.js index 7e87943..f2a8c5c 100644 --- a/HaWeb/wwwroot/js/filelistform.js +++ b/HaWeb/wwwroot/js/filelistform.js @@ -7,7 +7,7 @@ function getCookie(name) { const USESubmit = async function (oFormElement, file = null) { let fd = new FormData(oFormElement); document.getElementById("ha-filelistbutton").style.pointerEvents = "none"; - document.getElementById("ha-lds-ellipsis-load").style.display = "inline-block"; + document.getElementById("ha-filelistbutton").classList.add("loading"); await fetch(oFormElement.action, { method: 'POST', headers: { @@ -17,40 +17,97 @@ const USESubmit = async function (oFormElement, file = null) { }) .then(response => response.json()) .then(json => { + document.getElementById("ha-filelistbutton").classList.remove("loading"); + document.getElementById("ha-filelistbutton").style.pointerEvents = "auto"; if ("Error" in json) { - document.getElementById("ha-filelistbutton").style.pointerEvents = "auto"; - document.getElementById("ha-lds-ellipsis-load").style.display = "none"; - document.getElementById("ha-filelistoutput").textContent = json.Error; + document.getElementById("ha-filelistoutput").textContent = json.Error; } else { - document.getElementById("ha-filelistbutton").style.pointerEvents = "auto"; - document.getElementById("ha-lds-ellipsis-load").style.display = "none"; - location.reload(); + location.reload(); } }) .catch ((e) => { + document.getElementById("ha-filelistbutton").classList.remove("loading"); document.getElementById("ha-filelistbutton").style.pointerEvents = "auto"; - document.getElementById("ha-lds-ellipsis-load").style.display = "none"; document.getElementById("ha-filelistoutput").textContent = e; }) } -const YEARSUBMIT = async function (oFormElement, file = null) { - let fd = new FormData(oFormElement); - document.getElementById("ha-setendyearbutton").style.pointerEvents = "none"; - await fetch(oFormElement.action, { - method: 'POST', - headers: { - 'RequestVerificationToken': getCookie('RequestVerificationToken') - }, - body: fd - }) - .then(response => response.json()) - .then(json => { - document.getElementById("ha-setendyearbutton").style.pointerEvents = "auto"; - location.reload(); - }) - .catch ((e) => { - document.getElementById("ha-setendyearbutton").style.pointerEvents = "auto"; - }) +const GETSyntaxCheck = async function (oFormElement, file = null) { + document.getElementById("ha-scbutton").style.pointerEvents = "none"; + document.getElementById("ha-scbutton").classList.toggle("loading"); + await fetch(oFormElement.action) + .then(response => response.json()) + .then(j => { + Object.entries(j).forEach(([key, value]) => { + var e = document.getElementById(key); + if (e !== null && !e.classList.contains("red")) { + var h = e.querySelector(".ha-managedfileheader"); + var i = e.querySelector(".ha-filestatusicon"); + var a = e.querySelector(".ha-managedfileannotations"); + if (value.errors === null) { + h.classList.add("green"); + } else { + var icon = i.querySelector("svg"); + icon.remove(); + i.insertAdjacentHTML("afterbegin", 'alert-decagram-outline'); + h.classList.add("expandable"); + h.classList.add("orange"); + h.addEventListener("click", () => { + h.classList.toggle("expanded"); + }); + var t = document.createElement("table"); + var thr = document.createElement("tr"); + var thl = document.createElement("th"); + var thc = document.createElement("th"); + var thm = document.createElement("th"); + thl.append("Zeile"); + thc.append("Spalte"); + thm.append("Fehler"); + thr.append(thl, thc, thm); + t.append(thr); + value.errors.forEach((error) => { + var tr = document.createElement("tr"); + var tdl = document.createElement("td"); + var tdc = document.createElement("td"); + var tdm = document.createElement("td"); + tdl.append(error.line); + tdc.append(error.column); + tdm.append(error.message); + tr.append(tdl, tdc, tdm); + t.append(tr); + }) + a.append(t); + } + } + console.log(e, h, i, a); + }); + // let coll = document.getElementsByClassName("ha-managedfile"); + // for (i = 0; i < coll.length; i++) { + // let e = coll[i]; + // if (j[e.id] !== null) { + // if(j[e.id].errors === null) { + // console.log(e.id + " hat keine errors"); + // } else { + // console.log(e.id + " hat errors"); + // } + // } + // } + document.getElementById("ha-scbutton").classList.toggle("hidden"); + + }) + .catch ((e) => { + console.log(e); + document.getElementById("ha-scbutton").classList.toggle("loading"); + document.getElementById("ha-scbutton").style.pointerEvents = "auto"; + }) +} + +var coll = document.getElementsByClassName("expandable"); + +for (i = 0; i < coll.length; i++) { + let element = coll[i] + coll[i].addEventListener("click", () => { + element.classList.toggle("expanded"); + }); } \ No newline at end of file diff --git a/HaWeb/wwwroot/js/scrollbutton.js b/HaWeb/wwwroot/js/scrollbutton.js index 9aac5a9..fc9715d 100644 --- a/HaWeb/wwwroot/js/scrollbutton.js +++ b/HaWeb/wwwroot/js/scrollbutton.js @@ -21,5 +21,6 @@ if (document.getElementById("ha-scrollbutton") !== null) { document.body.scrollTop = 0; // For Safari document.documentElement.scrollTop = 0; // For Chrome, Firefox, IE and Opera }) - window.addEventListener("scroll", scrollFunction); + // TODO: workaround, bc window does not recieve scroll events anymore + setInterval(() => scrollFunction(), 1000); } diff --git a/HaWeb/wwwroot/js/websocket.js b/HaWeb/wwwroot/js/websocket.js new file mode 100644 index 0000000..b2cdb6b --- /dev/null +++ b/HaWeb/wwwroot/js/websocket.js @@ -0,0 +1,157 @@ +var stateSC = null; +var stateValidation = null; +var stateReload = null; +var stateCommit = null; +var firstMessage = true; +var commsLog = document.getElementById("commsLog"); +var commsNot = document.getElementById("comm-notifications"); +var socket; + +var scheme = document.location.protocol === "https:" ? "wss" : "ws"; +var port = document.location.port ? (":" + document.location.port) : ""; + +var connectionUrl = scheme + "://" + document.location.hostname + port + "/WS" ; + +function htmlEscape(str) { + return str.toString() + .replace(/&/g, '&') + .replace(/"/g, '"') + .replace(/'/g, ''') + .replace(//g, '>'); +} + + +socket = new WebSocket(connectionUrl); +socket.onopen = function (event) { + socket.send("Hello"); + updateMessage(); +}; +socket.onclose = function (event) { + updateMessage(); +}; +socket.onerror = updateMessage; +socket.onmessage = function (event) { + var msg = JSON.parse(event.data); + if (msg.ValidationState != null) { + stateValidation = msg.ValidationState; + console.log(msg.ValidationState); + switch (msg.ValidationState) { + case 0: + commsNot.classList.remove("loading"); + commsNot.classList.remove("green"); + if (!commsNot.classList.contains("red")) { + commsNot.classList.add("red"); + } + updateMessage(); + break; + case 1: + if (!commsNot.classList.contains("loading")) { + commsNot.classList.add("loading"); + } + updateMessage(); + break; + case 2: + commsNot.classList.remove("red"); + commsNot.classList.remove("loading"); + if (!commsNot.classList.contains("green")) { + commsNot.classList.add("green"); + } + updateMessage(); + break; + } + } else if (msg.Commit != null) { + stateCommit = msg; + updateMessage(); + } else if (msg.reload != null) { + stateReload = msg.reload; + if (msg.reload) { + setTimeout(() => { + commsNot.remove(); + socket.close(1000, "bye"); + location.reload(); + }, 1500); + + } + } else if (msg.SC != null) { + stateSC = msg.SC; + } else { + commsLog.innerHTML = htmlEscape(event.data); + } + +}; + +function updateMessage() { + function disable() { + commsNot.classList.remove("red"); + commsNot.classList.remove("loading"); + commsNot.classList.remove("green"); + } + function enable() { + + } + + if (!socket) { + disable(); + } else { + switch (socket.readyState) { + case WebSocket.CLOSED: + commsLog.innerHTML = "Keine Verbindung"; + disable(); + break; + case WebSocket.CLOSING: + commsLog.innerHTML = "Verbindung wird geschlossen..."; + disable(); + break; + case WebSocket.CONNECTING: + commsLog.innerHTML = "Verbinden..."; + disable(); + break; + case WebSocket.OPEN: + commsLog.innerHTML = ""; + // TODO: decide on state what the message is + if (stateValidation == 0 ) { + commsLog.innerHTML = 'Der angezeigte Stand ist nicht aktuell. ' + + 'Fehler beheben'; + if (!firstMessage) commsNot.classList.add("imp"); + } else if (stateValidation == 1) { + commsLog.innerHTML = "Der Server arbeitet..."; + } else { + if (stateCommit != null) { + commsLog.innerHTML = "commit " + + stateCommit.Commit.substring(0, 7) + + " geladen" + } else { + commsLog.innerHTML = "OK."; + } + } + firstMessage = false; + enable(); + break; + default: + commsLog.innerHTML = "Unknown WebSocket State: " + htmlEscape(socket.readyState); + disable(); + break; + } + } +} + + // closeButton.onclick = function () { + // if (!socket || socket.readyState !== WebSocket.OPEN) { + // alert("socket not connected"); + // } + // socket.close(1000, "Closing from client"); + // }; + + // sendButton.onclick = function () { + // if (!socket || socket.readyState !== WebSocket.OPEN) { + // alert("socket not connected"); + // } + // var data = sendMessage.value; + // socket.send(data); + // commsLog.innerHTML += '' + + // 'Client' + + // 'Server' + + // '' + htmlEscape(data) + ''; + // }; +